update rapidjson to 858451e5b7d1c56cf8f6d58f88cf958351837e53 #687
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
name: macOS Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-12, macos-14] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/cmake | |
with: | |
source-dir: '${{github.workspace}}' | |
build-dir: '${{github.workspace}}/build' | |
build-type: 'Debug' | |
build-vstgui-standalone: ON | |
- uses: ./.github/actions/cmake | |
with: | |
source-dir: '${{github.workspace}}' | |
build-dir: '${{github.workspace}}/build-non-deprecated' | |
build-type: 'Debug' | |
build-vstgui-standalone: ON | |
enable-deprecated-methods: OFF |