File tree 2 files changed +14
-2
lines changed 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
build :
14
- runs-on : ubuntu-24.04
14
+ runs-on : ${{ matrix.os }}
15
15
strategy :
16
16
fail-fast : false
17
17
matrix :
18
18
include :
19
- - c_compiler : clang
19
+ - os : ubuntu-24.04
20
+ c_compiler : clang
21
+ cpp_compiler : clang++
22
+ - os : ubuntu-24.04-arm
23
+ c_compiler : clang
20
24
cpp_compiler : clang++
21
25
# TODO: add back gcc build when it is fixed
22
26
# - c_compiler: gcc
Original file line number Diff line number Diff line change @@ -22,10 +22,18 @@ jobs:
22
22
compiler :
23
23
c_compiler : clang
24
24
cpp_compiler : clang++
25
+ - os : ubuntu-24.04-arm
26
+ compiler :
27
+ c_compiler : clang
28
+ cpp_compiler : clang++
25
29
- os : windows-2022
26
30
compiler :
27
31
c_compiler : clang-cl
28
32
cpp_compiler : clang-cl
33
+ - os : windows-2025
34
+ compiler :
35
+ c_compiler : clang-cl
36
+ cpp_compiler : clang-cl
29
37
- os : macos-14
30
38
compiler :
31
39
c_compiler : clang
You can’t perform that action at this time.
0 commit comments