diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ff5d95..5360918 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,3 +128,25 @@ jobs: run: | cd build ctest -V --output-on-failure + + build-macos-self-hosted1: + runs-on: macOS14_X64_selfhosted + + steps: + - uses: actions/checkout@v4 + + - name: Configure + run: | + cmake -B build -G Ninja \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DDISABLE_COLOR=ON \ + -DUSE_EXTERNAL_FMT=ON \ + -DUSE_BOOST_PRETTY_FUNCTION=ON + + - name: Build + run: cmake --build build + + - name: Test + run: | + cd build + ctest -V --output-on-failure