Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,25 @@ jobs:
run: |
cd build
ctest -V --output-on-failure

build-macos-self-hosted1:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's have a more descriptive name, like:

Suggested change
build-macos-self-hosted1:
build-macos-self-hosted-14-x64:

And also a matching one for the previous runner.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is currently only for testing. Please don't merge.

runs-on: macOS14_X64_selfhosted
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like the _selfhosted suffix here, makes it easier to distinguish among the default github runners. Let's do this for the previous one as well.


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
Loading