Skip to content

Commit

Permalink
adjust strictness
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetophon committed Dec 5, 2024
1 parent 692efca commit 3559a82
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 @@ -109,11 +109,11 @@ jobs:
run: |
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
pluginval.app/Contents/MacOS/pluginval --verbose --strictness-level 1 target/bundled/DEL2.vst3 || exit 1
elif [[ $runner_name = 'ubuntu-22.04' ]]; then
./pluginval --verbose --strictness-level 1 target/bundled/DEL2.vst3 || exit 1
./pluginval --verbose --strictness-level 2 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 } }"
powershell -Command "& { .\pluginval.exe --verbose --strictness-level 10 target/bundled/DEL2.vst3; if ($LASTEXITCODE -ne 0) { exit 1 } }"
fi
- name: Determine build archive name
Expand Down

0 comments on commit 3559a82

Please sign in to comment.