diff --git a/.github/workflows/build_dependencies.yml b/.github/workflows/build_dependencies.yml index 6ffc6455e..b8eee0df5 100644 --- a/.github/workflows/build_dependencies.yml +++ b/.github/workflows/build_dependencies.yml @@ -185,6 +185,12 @@ jobs: gcov: true if: ${{ inputs.testing == 'True' && inputs.platform == 'ubuntu-22.04' && inputs.build-type == 'Debug' && inputs.malloc-impl == 'libc' && inputs.prerelease == 'False' }} + - name: Check disk space + run: | + df -h /tmp + sudo mount --bind /mnt /tmp + df -h /tmp + - name: Create and Test Package run: | sanitize=$([[ "${{ inputs.build-type }}" == "Debug" && \ @@ -201,3 +207,9 @@ jobs: --build missing \ . if: ${{ inputs.testing == 'True' && ( inputs.platform != 'ubuntu-22.04' || inputs.build-type != 'Debug' || inputs.malloc-impl != 'libc' || inputs.prerelease != 'False' ) }} + + - name: Check disk space at end + run: | + df -h /tmp + sudo mount --bind /mnt /tmp + df -h /tmp