Skip to content

Commit a662f52

Browse files
committed
parameterize more commands
1 parent e0c35b5 commit a662f52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/bevy_mod_scripting.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
{label: Ubuntu Aarch64, os: ubuntu-latest, cross: aarch64-unknown-linux-gnu }
3434
]
3535
steps:
36-
- name: Clear space
37-
run: sudo rm -rf /usr/share/dotnet; sudo rm -rf /opt/ghc; sudo rm -rf "/usr/local/share/boost"; sudo rm -rf "$AGENT_TOOLSDIRECTORY"
3836
- name: Checkout
3937
uses: actions/checkout@v3
4038
- name: Install alsa and udev
4139
if: runner.os == 'linux'
42-
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
40+
run: |
41+
sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
42+
sudo rm -rf /usr/share/dotnet; sudo rm -rf /opt/ghc; sudo rm -rf "/usr/local/share/boost"; sudo rm -rf "$AGENT_TOOLSDIRECTORY"
4343
- uses: actions-rs/toolchain@v1
4444
with:
4545
toolchain: stable

0 commit comments

Comments
 (0)