Skip to content

Commit 5c9e9ed

Browse files
authored
Add macos-13 to workflow. (#1865)
1 parent 1bbd615 commit 5c9e9ed

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci-macos.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,19 @@ on:
77

88
jobs:
99
build:
10-
runs-on: macos-12
10+
runs-on: ${{matrix.os}}
1111

1212
strategy:
1313
matrix:
14+
os: [macos-12, macos-13]
1415
# g++-12 fails on some very innocent code... excluding it for now
1516
compiler: [clang++, g++-11, g++-13]
17+
exclude:
18+
# g++-11 and g++-13 fails on macos-13 with some linker assertion... excluing it for now
19+
- os: macos-13
20+
compiler: g++-11
21+
- os: macos-13
22+
compiler: g++-13
1623

1724
steps:
1825
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)