-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from ImJimmi/plugin-demo
Add plugin target for demo runner
- Loading branch information
Showing
29 changed files
with
783 additions
and
200 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
curl -L "https://github.com/Tracktion/pluginval/releases/latest/download/pluginval_macOS.zip" -o pluginval.zip | ||
unzip pluginval | ||
pluginval.app/Contents/MacOS/pluginval --validate-in-process --strictness-level 10 --verbose --output-dir "./bin" "./build/runners/demo-runner/jive-demo-plugin_artefacts/Release/VST3/JIVE Demo.vst3" || exit 1 |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest https://github.com/Tracktion/pluginval/releases/latest/download/pluginval_Windows.zip -OutFile pluginval.zip | ||
Expand-Archive pluginval.zip -DestinationPath . | ||
.\pluginval.exe --validate-in-process --strictness-level 10 --verbose --output-dir "./bin" "./build/runners/demo-runner/jive-demo-plugin_artefacts/Release/VST3/JIVE Demo.vst3" | ||
Exit $LASTEXITCODE |
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
Oops, something went wrong.