mirror of
https://github.com/ToruNiina/toml11.git
synced 2024-11-22 04:20:06 +00:00
ci: add macos with latest (unstable) xcode
This commit is contained in:
parent
6421df3c6d
commit
df8f978f3d
28
.github/workflows/main.yml
vendored
28
.github/workflows/main.yml
vendored
@ -135,6 +135,34 @@ jobs:
|
||||
run: |
|
||||
ctest --output-on-failure --test-dir build/
|
||||
|
||||
build-osx-latest:
|
||||
runs-on: macos-latest
|
||||
strategy:
|
||||
matrix:
|
||||
standard: ['11', '14', '17', '20']
|
||||
precompile: ['ON', 'OFF']
|
||||
steps:
|
||||
- name: Get number of CPU cores
|
||||
uses: SimenB/github-actions-cpu-cores@v2
|
||||
id: cpu-cores
|
||||
- name: Set xcode latest unstable
|
||||
uses: maxim-lobanov/setup-xcode@v1
|
||||
with:
|
||||
xcode-version: latest
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
- name: Configure
|
||||
run: |
|
||||
cmake -B build/ -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_BUILD_TESTS=ON -DTOML11_PRECOMPILE=${{ matrix.precompile }}
|
||||
- name: Build
|
||||
run: |
|
||||
cmake --build build/ -j${{ steps.cpu-cores.outputs.count }}
|
||||
- name: Test
|
||||
run: |
|
||||
ctest --output-on-failure --test-dir build/
|
||||
|
||||
build-osx-14:
|
||||
runs-on: macos-14
|
||||
strategy:
|
||||
|
Loading…
Reference in New Issue
Block a user