Skip to content

Commit 1a58220

Browse files
author
Oleh Kulykov
committed
1722262170
1 parent 30cd9e1 commit 1a58220

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

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

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,33 @@ jobs:
2121
#
2222
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
2323
matrix:
24-
os: [windows-latest]
24+
os: [macos-latest, ubuntu-latest, windows-latest]
2525
build_type: [Release]
26-
c_compiler: [gcc]
26+
c_compiler: [gcc, clang, cl]
2727
include:
28+
- os: macos-latest
29+
c_compiler: clang
30+
cpp_compiler: clang++
2831
- os: windows-latest
32+
c_compiler: cl
33+
cpp_compiler: cl
34+
- os: ubuntu-latest
2935
c_compiler: gcc
3036
cpp_compiler: g++
37+
- os: ubuntu-latest
38+
c_compiler: clang
39+
cpp_compiler: clang++
40+
exclude:
41+
- os: macos-latest
42+
c_compiler: cl
43+
- os: macos-latest
44+
c_compiler: gcc
45+
- os: windows-latest
46+
c_compiler: gcc
47+
- os: windows-latest
48+
c_compiler: clang
49+
- os: ubuntu-latest
50+
c_compiler: cl
3151

3252
steps:
3353
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)