Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: build

on:
push:
branches: [ main ]
branches: [ main, dev ]
pull_request:
branches:
- '*'
Expand All @@ -24,7 +24,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6.0.3
with:
submodules: recursive

Expand All @@ -37,7 +37,7 @@ jobs:
if: runner.os == 'Linux'
run: |
sudo apt update
sudo apt install libasound2-dev libxinerama-dev libx11-dev libxext-dev libfreetype6-dev libwebkit2gtk-4.1-dev libglu1-mesa-dev xvfb ninja-build
sudo apt install libasound2-dev libxinerama-dev libx11-dev libxext-dev libfreetype-dev libwebkit2gtk-4.1-dev libglu1-mesa-dev xvfb ninja-build

- name: configure
run: cmake --preset default
Expand Down
2 changes: 1 addition & 1 deletion cmake/pluginval.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function(add_pluginval target)
COMMAND ${PLUGINVAL_WRAPPER} "${PLUGINVAL_EXE}"
--validate "$<GENEX_EVAL:$<TARGET_PROPERTY:${target}_VST3,JUCE_PLUGIN_ARTEFACT_FILE>>"
--strictness-level 5
--timeout-ms 120000
--timeout-ms 180000
DEPENDS "${PLUGINVAL_EXE}" ${target}_VST3
COMMENT "Running pluginval on ${target} VST3"
)
Expand Down
Loading