Skip to content

Commit

Permalink
ubuntu 20.04 -> 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetophon committed Dec 5, 2024
1 parent cd69263 commit b67c9fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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-20.04, os: ubuntu-20.04, cross-target: '' }
- { name: ubuntu-22.04, os: ubuntu-22.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 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-20.04' ]]; then
elif [[ $runner_name = 'ubuntu-22.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 5 target/bundled/DEL2.vst3 || exit 1
elif [[ $runner_name = 'ubuntu-20.04' ]]; then
elif [[ $runner_name = 'ubuntu-22.04' ]]; then
./pluginval --verbose --strictness-level 5 target/bundled/DEL2.vst3 || exit 1
elif [[ $runner_name = 'windows' ]]; then
powershell -Command "& { .\pluginval.exe --verbose --strictness-level 5 target/bundled/DEL2.vst3; if ($LASTEXITCODE -ne 0) { exit 1 } }"
Expand Down

0 comments on commit b67c9fa

Please sign in to comment.