From bab974e0505c323cbd1a793eaa92b892caa5045e Mon Sep 17 00:00:00 2001 From: Florian Uhlig Date: Tue, 17 Feb 2026 12:13:30 +0100 Subject: [PATCH] Add another self hosted runner for test --- .github/workflows/ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) 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