From 204661e286f61e8dc2f145678d1b5d61e59ad152 Mon Sep 17 00:00:00 2001 From: Jordan Carlin Date: Mon, 14 Oct 2024 23:23:40 -0700 Subject: [PATCH] Fix github action syntax --- .github/workflows/install.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 359868b3a..e23e35d0a 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -41,7 +41,7 @@ jobs: options: --privileged --mount type=bind,source=/,target=/host --pid=host --entrypoint /bin/bash steps: - name: Install Dependencies for Red Hat - if: ${{ matrix.image }} != null + if: ${{ matrix.image != null }} run: | dnf install -y sudo git dnf install curl -y --allowerasing || true @@ -51,13 +51,13 @@ jobs: git config --global --add safe.directory '*' git submodule update --init addins/riscv-arch-test addins/verilog-ethernet - name: Free Up Storage for Ubuntu - if: ${{ matrix.image }} == null + if: ${{ matrix.image == null }} run: | df -h ./.github/cli-space-cleanup.sh df -h - name: Free Up Storage for Red Hat - if: ${{ matrix.image }} != null + if: ${{ matrix.image != null }} run: | df -h nsenter -t 1 -m -u -n -i bash -c "$(cat .github/cli-space-cleanup.sh)"