Synchronize thread pool void #149
Workflow file for this run
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 ARM | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| # continue-on-error: true | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| arch: [arm] | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup CMake and Ninja | |
| uses: lukka/get-cmake@v4.2.0 | |
| - name: Check Clang Version | |
| run: clang++ --version | |
| - name: Create build directory | |
| run: mkdir build | |
| - name: Configure CMake | |
| run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release | |
| - name: Build | |
| run: cmake --build build --config Release | |
| - name: Test | |
| working-directory: build | |
| run: ctest |