From 7fc32c6f31007707ef340f6b6b623cb567efd310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Fatih=20C=C4=B1r=C4=B1t?= Date: Mon, 26 Feb 2024 15:34:44 +0300 Subject: [PATCH] show disk space MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: M. Fatih Cırıt --- .github/workflows/build-and-test-differential.yaml | 4 ++-- .github/workflows/build-and-test.yaml | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test-differential.yaml b/.github/workflows/build-and-test-differential.yaml index 9fe5a345eca0a..6e9c2c0c58655 100644 --- a/.github/workflows/build-and-test-differential.yaml +++ b/.github/workflows/build-and-test-differential.yaml @@ -36,7 +36,7 @@ jobs: with: fetch-depth: 0 - - name: Check disk space before build + - name: Show disk space before the tasks run: df -h - name: Remove exec_depend @@ -72,7 +72,7 @@ jobs: verbose: true flags: differential - - name: Check disk space after build + - name: Show disk space after the tasks run: df -h clang-tidy-differential: diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 8638988737db1..49e1c979928ad 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -27,6 +27,9 @@ jobs: - name: Check out repository uses: actions/checkout@v3 + - name: Show disk space before the tasks + run: df -h + - name: Remove exec_depend uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1 @@ -59,3 +62,6 @@ jobs: fail_ci_if_error: false verbose: true flags: total + + - name: Show disk space after the tasks + run: df -h