Skip to content

Commit

Permalink
fix loopdev?
Browse files Browse the repository at this point in the history
  • Loading branch information
korewaChino committed Sep 23, 2023
1 parent 51bb185 commit 9b6865f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/arm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ jobs:
- name: Build and install katsu
run: |
cargo install --path .
- name: Prepare loop devices
run: |
for i in $(seq 0 23);
do
sudo mknod -m 0660 /dev/loop$i b 7 0 2> /dev/null || true
done
- name: Run test
run: |
export PATH=$HOME/.cargo/bin:$PATH
Expand Down

0 comments on commit 9b6865f

Please sign in to comment.