Add DAW tempo follow and downbeat-aligned playback (plugin-only). #16
This file contains hidden or 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
| name: Build | |
| on: | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - "**/*.md" | |
| - "LICENSE" | |
| - ".gitignore" | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - "**/*.md" | |
| - "LICENSE" | |
| - ".gitignore" | |
| concurrency: | |
| group: build-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-auv3: | |
| runs-on: macos-14 | |
| timeout-minutes: 180 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - uses: ./.github/actions/setup-build | |
| - name: Configure | |
| shell: bash | |
| run: | | |
| source .venv/bin/activate | |
| cmake . -B build -DCMAKE_POLICY_VERSION_MINIMUM=3.5 | |
| - name: Build AUv3 targets | |
| shell: bash | |
| run: | | |
| source .venv/bin/activate | |
| cmake --build build --target finalize_mrt2_au -j"$(sysctl -n hw.ncpu)" | |
| - name: Print ccache stats | |
| shell: bash | |
| run: ccache -s |