Skip to content

Commit

Permalink
Update macOS.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
flagarde authored Dec 5, 2024
1 parent 4e09be3 commit 27865ec
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ concurrency:
cancel-in-progress: true

jobs:
macos-12:
runs-on: macos-12
name: macos-12 xcode-${{ matrix.xcode }} (c++${{ matrix.standard }})
macos-13:
name: macos-13 xcode-${{ matrix.xcode }} (c++${{ matrix.standard }})
runs-on: macos-13
strategy:
fail-fast: false
matrix:
xcode: [ '13.1', '13.2.1', '13.3.1', '13.4.1' ]
xcode: [ '14.1', '14.2', '14.3.1', '15.0.1', '15.1', '15.2' ]
standard: [ 11, 14, 17, 20 ]
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
Expand Down Expand Up @@ -53,13 +53,13 @@ jobs:
- name: 🎉 Install
run: cmake --install ${{ env.CMAKE_BINARY_PREFIX }} --prefix ${{ env.CMAKE_INSTALL_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }}

macos-13:
name: macos-13 xcode-${{ matrix.xcode }} (c++${{ matrix.standard }})
runs-on: macos-13
macos-14:
name: macos-14 xcode-${{ matrix.xcode }} (c++${{ matrix.standard }})
runs-on: macos-14
strategy:
fail-fast: false
matrix:
xcode: [ '14.1', '14.2', '14.3.1', '15.0.1', '15.1', '15.2' ]
xcode: [ '15.0.1', '15.1', '15.2', '15.3', '15.4', '16.0', '16.1' ]
standard: [ 11, 14, 17, 20 ]
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
Expand Down Expand Up @@ -89,13 +89,13 @@ jobs:
- name: 🎉 Install
run: cmake --install ${{ env.CMAKE_BINARY_PREFIX }} --prefix ${{ env.CMAKE_INSTALL_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }}

macos-14:
name: macos-14 xcode-${{ matrix.xcode }} (c++${{ matrix.standard }})
runs-on: macos-14
macos-15:
runs-on: macos-15
name: macos-15 xcode-${{ matrix.xcode }} (c++${{ matrix.standard }})
strategy:
fail-fast: false
matrix:
xcode: [ '15.0.1', '15.1', '15.2', '15.3', '15.4', '16.0', '16.1' ]
xcode: [ '15.4', '16.0', '16.1', '16.2' ]
standard: [ 11, 14, 17, 20 ]
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
Expand Down Expand Up @@ -124,6 +124,7 @@ jobs:
run: ctest --test-dir ${{ env.CMAKE_BINARY_PREFIX }} -C ${{ env.CMAKE_BUILD_TYPE }} --output-on-failure
- name: 🎉 Install
run: cmake --install ${{ env.CMAKE_BINARY_PREFIX }} --prefix ${{ env.CMAKE_INSTALL_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }}

gcc:
runs-on: macos-14
name: macos-14 gcc-${{ matrix.version }} (c++${{ matrix.standard }})
Expand Down

0 comments on commit 27865ec

Please sign in to comment.