Skip to content

Commit

Permalink
Try to fix Linux and Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLorenz committed Sep 20, 2024
1 parent 0d33935 commit 7eef01d
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/run-help.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Display help
run: |
cd squashfs-root/
usr/bin/lmms.real --help | grep "Usage: lmms"
./AppRun --help | grep "Usage: lmms"
help-macos:
strategy:
fail-fast: false
Expand All @@ -48,9 +48,19 @@ jobs:
check-name: macos-${{ matrix.arch }}
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 30
- name: Download workflow artifact
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yml
name: macos-${{ matrix.arch }}
- name: Mount the DMG
run: |
mkdir -p /Volumes/lmms
hdiutil attach lmms.dmg -mountpoint /Volumes/lmms
cp -R "/Volumes/lmms/LMMS.app" /tmp/
- name: Display help
run: >
build/LMMS.app/Contents/MacOS/lmms --help | grep "Usage: lmms"
run: |
/tmp/LMMS.app/Contents/MacOS/lmms --help | grep "Usage: lmms"
help-mingw:
strategy:
fail-fast: false
Expand Down

0 comments on commit 7eef01d

Please sign in to comment.