From d389bb547fd795136a9d9b5e8f97f7ace8693431 Mon Sep 17 00:00:00 2001 From: Jordan Carlin Date: Fri, 11 Oct 2024 21:54:28 -0700 Subject: [PATCH] Add storage checks --- .github/workflows/install.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 25762b4e1..5f58eef31 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -29,10 +29,18 @@ jobs: with: name: installation-logs-${{ matrix.os }} path: /opt/riscv/logs/ + - name: check storage + run: | + df -h + du -h --max-depth=1 - name: make tests run: | source setup.sh make riscof + - name: check storage + run: | + df -h + du -h --max-depth=1 - name: regression run: | source setup.sh @@ -82,10 +90,18 @@ jobs: with: name: installation-logs-${{ env.ARTIFACT_NAME }} path: /opt/riscv/logs/ + - name: check storage + run: | + df -h + du -h --max-depth=1 - name: make tests run: | source setup.sh make riscof --jobs $(nproc --ignore 1) + - name: check storage + run: | + df -h + du -h --max-depth=1 - name: regression run: | source setup.sh