Skip to content

Commit

Permalink
add loop device fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton committed May 12, 2024
1 parent 42553b2 commit 1678377
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-katsu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ jobs:
uses: actions/checkout@v4
- name: ${{ env.KATSU_BUILD_TASK_NAME }}
run: |
# loop device fix
if [ "$(df -T /dev | tail -1 |cut -f 1 -d ' ')" = "tmpfs" ]; then
mount -t devtmpfs none /dev
fi
pushd katsu
KATSU_LOG=trace katsu -v --output=iso "modules/${{ matrix.variant }}.yaml"
# get the ISO name, and then append the arch
Expand Down

0 comments on commit 1678377

Please sign in to comment.