Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork345
Added more tests for matrix 2#504
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:MacOS-build | |
| on: | |
| push: | |
| branches: | |
| -'*' | |
| pull_request: | |
| branches:[ master ] | |
| jobs: | |
| build: | |
| runs-on:macos-14 | |
| steps: | |
| -uses:actions/checkout@v4 | |
| -uses:maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version:'16.2' | |
| -name:CMake set-up | |
| run:cmake -G "Unix Makefiles" -DHMDF_TESTING=ON -DHMDF_EXAMPLES=ON -DHMDF_BENCHMARKS=ON -DCMAKE_BUILD_TYPE=Release . | |
| -name:CMake build | |
| run:cmake --build . | |
| -name:CMake ctest | |
| run:ctest -C Release |