-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This runs `lmms --version` and `lmms --help` in the github CI. Further checks, like importing an LMMS project to WAV via CLI, are conceivable.
- Loading branch information
1 parent
1825208
commit 1786b43
Showing
2 changed files
with
130 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
--- | ||
name: run-help | ||
'on': [push, pull_request] | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
help-linux: | ||
name: help-linux | ||
runs-on: ubuntu-latest | ||
#container: ghcr.io/lmms/linux.gcc:20.04 | ||
steps: | ||
- name: wait for build | ||
uses: lewagon/[email protected] | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha || github.sha }} | ||
check-name: 'linux' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
wait-interval: 30 | ||
- name: Download workflow artifact | ||
uses: dawidd6/action-download-artifact@v6 | ||
with: | ||
workflow: build.yml | ||
name: linux | ||
- name: Extract artifact | ||
run: | | ||
chmod +x lmms-*.AppImage | ||
./lmms-*.AppImage --appimage-extract | ||
- name: Display help | ||
run: | | ||
cd squashfs-root/ | ||
./AppRun --help | grep "Usage: lmms" | ||
help-macos: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
config: | ||
- arch: 'x86_64' | ||
runner: 'macos-latest' | ||
- arch: 'arm64' | ||
runner: 'macos-latest-arm64' | ||
name: help-macos-${{ matrix.config.arch }} | ||
runs-on: ${{ matrix.config.runner }} | ||
steps: | ||
- name: wait for build | ||
uses: lewagon/[email protected] | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha || github.sha }} | ||
check-name: macos-${{ matrix.config.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.config.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: | | ||
/tmp/LMMS.app/Contents/MacOS/lmms --help | grep "Usage: lmms" | ||
help-mingw: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
arch: ['32', '64'] | ||
name: help-mingw${{ matrix.arch }} | ||
runs-on: windows-latest | ||
steps: | ||
- name: wait for build | ||
uses: lewagon/[email protected] | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha || github.sha }} | ||
check-name: mingw${{ 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: mingw${{ matrix.arch }} | ||
- name: Display help | ||
run: > | ||
$result = & lmms-*.exe "--help" | | ||
Select-String "Usage: lmms"; | ||
if($result.Matches.Count -eq 0) { exit 1 } | ||
help-msvc: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
arch: ['x86', 'x64'] | ||
name: help-msvc-${{ matrix.arch }} | ||
runs-on: windows-latest | ||
steps: | ||
- name: wait for build | ||
uses: lewagon/[email protected] | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha || github.sha }} | ||
check-name: msvc-${{ 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: msvc-${{ matrix.arch }} | ||
- name: Display help | ||
run: > | ||
$result = & lmms-*.exe "--help" | | ||
Select-String "Usage: lmms"; | ||
if($result.Matches.Count -eq 0) { exit 1 } |