Skip to content

Commit b062070

Browse files
committed
workflow: matrix
1 parent 197ad05 commit b062070

File tree

1 file changed

+21
-19
lines changed

1 file changed

+21
-19
lines changed

.github/workflows/cmake-multi-platform.yml

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,28 @@ jobs:
2424
#
2525
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
2626
matrix:
27-
os: [ubuntu-latest, windows-latest]
28-
build_type: [Release]
29-
c_compiler: [gcc, clang, cl]
30-
include:
31-
- os: windows-latest
32-
c_compiler: cl
33-
cpp_compiler: cl
34-
- os: ubuntu-latest
35-
c_compiler: gcc
36-
cpp_compiler: g++
37-
- os: ubuntu-latest
38-
c_compiler: clang
39-
cpp_compiler: clang++
27+
os:
28+
- ubuntu-24.04
29+
- ubuntu-24.04-arm
30+
- windows-2025
31+
- windows-11-arm
32+
- macos-15-intel
33+
- macos-15
34+
build_type:
35+
- Release
36+
cxx_compiler:
37+
- g++
38+
- clang++
39+
- cl
4040
exclude:
41-
- os: windows-latest
42-
c_compiler: gcc
43-
- os: windows-latest
44-
c_compiler: clang
45-
- os: ubuntu-latest
46-
c_compiler: cl
41+
- os: ubuntu-24.04
42+
cpp_compiler: cl
43+
- os: ubuntu-24.04-arm
44+
cpp_compiler: cl
45+
- os: macos-15-intel
46+
cpp_compiler: cl
47+
- os: macos-15
48+
cpp_compiler: cl
4749

4850
steps:
4951
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)