We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b3ee87 commit 1dd6f12Copy full SHA for 1dd6f12
.github/workflows/examples.yml
@@ -14,7 +14,9 @@ jobs:
14
fail-fast: true
15
16
matrix:
17
+ os: [ubuntu-latest, windows-latest, macos-latest]
18
build_type: [Debug, Release]
19
+ c_compiler: [gcc, clang, cl]
20
include:
21
- os: windows-latest
22
c_compiler: cl
@@ -25,10 +27,16 @@ jobs:
25
27
- os: ubuntu-latest
26
28
c_compiler: clang
29
cpp_compiler: clang++
- # - os: macos-latest
- # c_compiler: clang
30
- # cpp_compiler: clang++
31
-
+ exclude:
+ - os: macos-latest
32
+ - c_compiler: clang
33
+ - os: windows-latest
34
+ c_compiler: gcc
35
36
+ c_compiler: clang
37
+ - os: ubuntu-latest
38
+ c_compiler: cl
39
+
40
steps:
41
- uses: actions/checkout@v4
42
0 commit comments