ci: disable macos-13-arm64

This commit is contained in:
Toru Niina
2024-01-05 00:00:25 +09:00
committed by GitHub
parent 655d76b828
commit 7bd09245fa

View File

@@ -138,30 +138,30 @@ jobs:
run: | run: |
cd build && ctest --output-on-failure cd build && ctest --output-on-failure
build-osx-13-arm64: # build-osx-13-arm64:
runs-on: macos-13-arm64 # runs-on: macos-13-arm64
strategy: # strategy:
matrix: # matrix:
standard: ['11', '14', '17', '20'] # standard: ['11', '14', '17', '20']
unreleased: ['ON', 'OFF'] # unreleased: ['ON', 'OFF']
steps: # steps:
- name: Checkout # - name: Checkout
uses: actions/checkout@v3 # uses: actions/checkout@v3
with: # with:
submodules: true # submodules: true
- name: Install # - name: Install
run: | # run: |
brew install boost # brew install boost
- name: Configure # - name: Configure
run: | # run: |
mkdir build && cd build # mkdir build && cd build
cmake .. -Dtoml11_BUILD_TEST=ON -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_USE_UNRELEASED_TOML_FEATURES=${{ matrix.unreleased }} # cmake .. -Dtoml11_BUILD_TEST=ON -DCMAKE_CXX_STANDARD=${{ matrix.standard }} -DTOML11_USE_UNRELEASED_TOML_FEATURES=${{ matrix.unreleased }}
- name: Build # - name: Build
run: | # run: |
cd build && cmake --build . # cd build && cmake --build .
- name: Test # - name: Test
run: | # run: |
cd build && ctest --output-on-failure # cd build && ctest --output-on-failure
build-osx-13: build-osx-13:
runs-on: macos-13 runs-on: macos-13