We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d81e2f7 commit 22a1b36Copy full SHA for 22a1b36
1 file changed
.github/workflows/ci-macos.yml
@@ -3,20 +3,22 @@ on: [push, pull_request]
3
4
jobs:
5
test_cereal_macos:
6
- runs-on: macos-latest
+ runs-on: ${{ matrix.os }}
7
strategy:
8
fail-fast: false
9
matrix:
10
include:
11
- CMAKE_OPTIONS: '-DWITH_WERROR=OFF -DSKIP_PORTABILITY_TEST=ON -DSKIP_PERFORMANCE_COMPARISON=ON'
12
COMPILER: 'clang++'
13
XCODE_VERSION: 15
14
- NAME: macos-latest-clang-xcode15
+ NAME: macos-14-clang-xcode15
15
+ os: macos-14
16
17
18
19
XCODE_VERSION: 16
- NAME: macos-latest-clang-xcode16
20
+ NAME: macos-15-clang-xcode16
21
+ os: macos-15
22
name: ${{ matrix.name }}
23
24
steps:
0 commit comments