From a647d078de454298e42f9da738e6073e3ed3f35c Mon Sep 17 00:00:00 2001 From: shosseinimotlagh Date: Sun, 22 Dec 2024 12:45:53 -0800 Subject: [PATCH] reduce test files --- .github/workflows/build_dependencies.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/build_dependencies.yml b/.github/workflows/build_dependencies.yml index 6ffc6455e..a29c90c19 100644 --- a/.github/workflows/build_dependencies.yml +++ b/.github/workflows/build_dependencies.yml @@ -185,6 +185,16 @@ 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 mkdir -p /mnt/tmp + sudo chmod 1777 /mnt/tmp + sudo mount --bind /mnt/tmp /tmp + ls -l /tmp + df -h /tmp + + - name: Create and Test Package run: | sanitize=$([[ "${{ inputs.build-type }}" == "Debug" && \ @@ -201,3 +211,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 + df -h + ls -l /tmp