Skip to content

Commit

Permalink
ubuntu-22.04 -> ubuntu-24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetophon committed Dec 11, 2024
1 parent 23e5b33 commit 2b0250b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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"
Expand All @@ -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 } }"
Expand Down

0 comments on commit 2b0250b

Please sign in to comment.