From 3559a824b0e602fe44d43dccc7eea23a4de7cd83 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Thu, 5 Dec 2024 13:27:00 +0100 Subject: [PATCH] adjust strictness --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b2e0096..392cdae 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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