Skip to content

Change: ensure the thread number is conde #116

Change: ensure the thread number is conde

Change: ensure the thread number is conde #116

Workflow file for this run

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