Skip to content

Commit 22a1b36

Browse files
authored
Fix the MacOS workflow (#879)
Looks good - I have a PR that is slowly being worked on to spruce up the CI a bit more with pre-built images so we get fewer failures as well.
1 parent d81e2f7 commit 22a1b36

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci-macos.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,22 @@ on: [push, pull_request]
33

44
jobs:
55
test_cereal_macos:
6-
runs-on: macos-latest
6+
runs-on: ${{ matrix.os }}
77
strategy:
88
fail-fast: false
99
matrix:
1010
include:
1111
- CMAKE_OPTIONS: '-DWITH_WERROR=OFF -DSKIP_PORTABILITY_TEST=ON -DSKIP_PERFORMANCE_COMPARISON=ON'
1212
COMPILER: 'clang++'
1313
XCODE_VERSION: 15
14-
NAME: macos-latest-clang-xcode15
14+
NAME: macos-14-clang-xcode15
15+
os: macos-14
1516

1617
- CMAKE_OPTIONS: '-DWITH_WERROR=OFF -DSKIP_PORTABILITY_TEST=ON -DSKIP_PERFORMANCE_COMPARISON=ON'
1718
COMPILER: 'clang++'
1819
XCODE_VERSION: 16
19-
NAME: macos-latest-clang-xcode16
20+
NAME: macos-15-clang-xcode16
21+
os: macos-15
2022
name: ${{ matrix.name }}
2123

2224
steps:

0 commit comments

Comments
 (0)