From 8b7fa770ac19ebe51267ce24cd8525e84971fc79 Mon Sep 17 00:00:00 2001 From: kminoda Date: Thu, 1 Feb 2024 16:25:26 +0900 Subject: [PATCH 1/2] ci(build-and-test-differential): add df -h Signed-off-by: kminoda --- .github/workflows/build-and-test-differential.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build-and-test-differential.yaml b/.github/workflows/build-and-test-differential.yaml index f25c2fe07aab5..dab1b8b56bf9d 100644 --- a/.github/workflows/build-and-test-differential.yaml +++ b/.github/workflows/build-and-test-differential.yaml @@ -36,6 +36,10 @@ jobs: with: fetch-depth: 0 + - name: Check disk space before build + run: + df -h + - name: Remove exec_depend uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1 @@ -69,6 +73,10 @@ jobs: verbose: true flags: differential + - name: Check disk space after build + run: + df -h + clang-tidy-differential: runs-on: ubuntu-latest container: ghcr.io/autowarefoundation/autoware-universe:humble-latest-cuda From e5c5fb5d0099d76ef266789f6d83c9fde8afae88 Mon Sep 17 00:00:00 2001 From: kminoda Date: Thu, 1 Feb 2024 16:56:39 +0900 Subject: [PATCH 2/2] ci: update yaml format Signed-off-by: kminoda --- .github/workflows/build-and-test-differential.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-test-differential.yaml b/.github/workflows/build-and-test-differential.yaml index dab1b8b56bf9d..e3711d413cb68 100644 --- a/.github/workflows/build-and-test-differential.yaml +++ b/.github/workflows/build-and-test-differential.yaml @@ -37,8 +37,7 @@ jobs: fetch-depth: 0 - name: Check disk space before build - run: - df -h + run: df -h - name: Remove exec_depend uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1 @@ -74,8 +73,7 @@ jobs: flags: differential - name: Check disk space after build - run: - df -h + run: df -h clang-tidy-differential: runs-on: ubuntu-latest