Skip to content

Commit

Permalink
Adding auval to MacOS CI (#352)
Browse files Browse the repository at this point in the history
* Adding auval to MacoS CI

* Fixes
  • Loading branch information
jatinchowdhury18 committed Mar 2, 2024
1 parent bed2e3d commit 9bbc29f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,20 @@ jobs:
run: cmake --build build --config Release --parallel 4 --target BYOD_Standalone BYOD_VST3 BYOD_CLAP

- name: Unit Tests
if: runner.os == 'Linux' || runner.os == 'MacOS'
if: runner.os == 'Linux' || runner.os == 'Windows'
run: |
cmake --build build --config Release --parallel 4 --target BYOD_headless
build/BYOD --unit-tests --all
- name: Run auval
if: runner.os == 'MacOS'
run: |
cmake --build build --config Release --parallel 4 --target BYOD_AU
sudo cp -R -f "build/BYOD_artefacts/Release/AU/BYOD.component" "/Library/Audio/Plug-Ins/Components/BYOD.component"
killall -9 AudioComponentRegistrar
auval -a
auval -strict -v aufx Dqu0 Chow
- name: Validate
if: runner.os == 'Windows' # || runner.os == 'MacOS'
run: bash scripts/validate.sh
Expand Down

0 comments on commit 9bbc29f

Please sign in to comment.