ci: specify bash shell for background jobs

GitHub Actions defaults to PowerShell on some runners, which swallows
background job output and can behave differently with `&`.
This commit is contained in:
xtqqczze
2026-05-20 18:53:25 +02:00
committed by Sylvestre Ledru
parent acd51ef18d
commit 5547962978
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -394,6 +394,7 @@ jobs:
with:
persist-credentials: false
- name: Avoid no space left on device
shell: bash
run: sudo rm -rf /usr/share/dotnet /usr/local/lib/android &
- uses: dtolnay/rust-toolchain@master
with:
+1
View File
@@ -125,6 +125,7 @@ jobs:
with:
persist-credentials: false
- name: Avoid no space left on device (Ubuntu runner)
shell: bash
run: sudo rm -rf /usr/share/dotnet /usr/local/lib/android &
- name: Prepare, build and test
uses: vmactions/freebsd-vm@v1.3.9