Change: use scoped_lock on move constructor #120
Workflow file for this run
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 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@v2 | |
- name: Setup CMake and Ninja | |
uses: lukka/[email protected] | |
- 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 |