mirror of
https://github.com/openhwgroup/cvw
synced 2025-02-11 06:05:49 +00:00
Fix github action syntax
This commit is contained in:
parent
f6d6537c7b
commit
204661e286
6
.github/workflows/install.yml
vendored
6
.github/workflows/install.yml
vendored
@ -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)"
|
||||
|
Loading…
Reference in New Issue
Block a user