diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4d36030..2bb49d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: Build on: - workflow_dispatch + [workflow_dispatch, pull_request] env: BUILD_TYPE: Release diff --git a/deps/NeuralAmpModelerCore b/deps/NeuralAmpModelerCore index aa777b5..1481c71 160000 --- a/deps/NeuralAmpModelerCore +++ b/deps/NeuralAmpModelerCore @@ -1 +1 @@ -Subproject commit aa777b5f14548178982bdc1b6eb09c6137fdb134 +Subproject commit 1481c71a209cf35d1e99bc788defad7379bd6546 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e956264..e1d0788 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -45,9 +45,7 @@ if (MSVC) ) else() target_compile_options(neural_amp_modeler PRIVATE - -Wall -Wextra -Wpedantic -Wshadow -Wstrict-aliasing - -Wunreachable-code -Wdouble-promotion -Weffc++ -Wconversion - -Wsign-conversion + -Wall -Wextra -Wpedantic -Wstrict-aliasing -Wunreachable-code -Weffc++ -Wno-unused-parameter "$<$:-Og;-ggdb;-Werror>" "$<$:-Ofast>" )