-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23e5b33
commit 2b0250b
Showing
1 changed file
with
4 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
strategy: | ||
matrix: | ||
include: | ||
- { name: ubuntu-22.04, os: ubuntu-22.04, cross-target: '' } | ||
- { name: ubuntu-24.04, os: ubuntu-24.04, cross-target: '' } | ||
- { name: macos-universal, os: macos-13, cross-target: aarch64-apple-darwin } | ||
- { name: windows, os: windows-latest, cross-target: '' } | ||
name: Package plugin binaries | ||
|
@@ -41,7 +41,7 @@ jobs: | |
if: startsWith(matrix.os, 'ubuntu') | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libasound2-dev libgl-dev libjack-dev libx11-xcb-dev libxcb1-dev libxcb-dri2-0-dev libxcb-icccm4-dev libxcursor-dev libxkbcommon-dev libxcb-shape0-dev libxcb-xfixes0-dev libwayland-egl++0 libwayland-client++0 libwayland-cursor0 libwayland-dev libwayland-egl-backend-dev fontconfig libdisplay-info libliftoff | ||
sudo apt-get install -y libasound2-dev libgl-dev libjack-dev libx11-xcb-dev libxcb1-dev libxcb-dri2-0-dev libxcb-icccm4-dev libxcursor-dev libxkbcommon-dev libxcb-shape0-dev libxcb-xfixes0-dev libwayland-egl++1 libwayland-client++1 libwayland-cursor++1 libwayland-dev libwayland-egl-backend-dev fontconfig libdisplay-info-dev libliftoff-dev | ||
- uses: actions/[email protected] | ||
# FIXME: Caching `target/` causes the Windows runner to blow up after some time | ||
|
@@ -97,7 +97,7 @@ jobs: | |
runner_name=${{ matrix.name }} | ||
if [[ $runner_name = 'macos-universal' ]]; then | ||
curl -L "https://github.com/Tracktion/pluginval/releases/latest/download/pluginval_macOS.zip" -o pluginval.zip; unzip pluginval | ||
elif [[ $runner_name = 'ubuntu-22.04' ]]; then | ||
elif [[ $runner_name = 'ubuntu-24.04' ]]; then | ||
curl -L "https://github.com/Tracktion/pluginval/releases/latest/download/pluginval_Linux.zip" -o pluginval.zip; unzip pluginval | ||
elif [[ $runner_name = 'windows' ]]; then | ||
powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest https://github.com/Tracktion/pluginval/releases/latest/download/pluginval_Windows.zip -OutFile pluginval.zip" | ||
|
@@ -110,7 +110,7 @@ jobs: | |
runner_name=${{ matrix.name }} | ||
if [[ $runner_name = 'macos-universal' ]]; then | ||
pluginval.app/Contents/MacOS/pluginval --verbose --strictness-level 1 target/bundled/DEL2.vst3 || exit 1 | ||
elif [[ $runner_name = 'ubuntu-22.04' ]]; then | ||
elif [[ $runner_name = 'ubuntu-24.04' ]]; then | ||
./pluginval --verbose --strictness-level 1 target/bundled/DEL2.vst3 || exit 1 | ||
elif [[ $runner_name = 'windows' ]]; then | ||
powershell -Command "& { .\pluginval.exe --verbose --strictness-level 10 target/bundled/DEL2.vst3; if ($LASTEXITCODE -ne 0) { exit 1 } }" | ||
|