Skip to content

Commit

Permalink
add disk space log
Browse files Browse the repository at this point in the history
  • Loading branch information
troopa81 committed Mar 25, 2021
1 parent b4638cf commit 3ed52c5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .docker/docker-qgis-test.sh
Expand Up @@ -184,4 +184,7 @@ else
fi
echo "List of skipped tests: $EXCLUDE_TESTS"

echo "Print disk space"
df -h

python3 /root/QGIS/.ci/ctest2ci.py xvfb-run ctest -V $CTEST_OPTIONS -E "${EXCLUDE_TESTS}" -S /root/QGIS/.ci/config_test.ctest --output-on-failure
17 changes: 17 additions & 0 deletions .github/workflows/run-tests.yml
Expand Up @@ -257,6 +257,11 @@ jobs:

steps:

- name: Print disk space
run: |
echo "DF -H"
sudo df -h
- name: Checkout
uses: actions/checkout@v2

Expand Down Expand Up @@ -290,6 +295,13 @@ jobs:
docker build --target binary-only --build-arg UBUNTU_BASE=${UBUNTU_BASE} --cache-from qgis/qgis3-build-deps:${DOCKER_TAG} -t qgis/qgis3-build-deps-bin-only:${DOCKER_TAG} -f qgis3-build-deps.dockerfile .
popd
- name: Print disk space
run: |
echo "DOCKER IMAGES"
docker images
echo "DF -H"
sudo df -h
- name: Download build artifact
uses: actions/download-artifact@v2
with:
Expand All @@ -301,6 +313,11 @@ jobs:
tar xvzf build.tgz
rm -Rf build.tgz
- name: Print disk space
run: |
echo "DF -H"
sudo df -h
- name: Run tests
id: tests
env:
Expand Down

0 comments on commit 3ed52c5

Please sign in to comment.