File tree 1 file changed +10
-8
lines changed
1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 23
23
24
24
jobs :
25
25
build :
26
- runs-on : macos-12
26
+ runs-on : macos-13
27
27
28
28
strategy :
29
29
fail-fast : false
30
30
matrix :
31
- cxx :
32
- - g++-12
33
- - clang++
34
31
config :
35
32
# Release build
36
- - build_type : Release
33
+ - cxx : g++-12
34
+ build_type : Release
35
+ - cxx : clang++
36
+ build_type : Release
37
37
# Debug builds
38
- - build_type : Debug
38
+ - cxx : clang++
39
+ build_type : Debug
39
40
sanitize : address
40
- - build_type : Debug
41
+ - cxx : clang++
42
+ build_type : Debug
41
43
sanitize : undefined
42
44
43
45
steps :
46
48
- name : Configure CMake
47
49
working-directory : ${{runner.workspace}}
48
50
run : |
49
- export CXX=${{matrix.cxx}}
51
+ export CXX=${{matrix.config. cxx}}
50
52
cmake -H${{github.event.repository.name}} -Bbuild \
51
53
-DCMAKE_CONFIGURATION_TYPES=${{matrix.config.build_type}} \
52
54
-DCMAKE_BUILD_TYPE=${{matrix.config.build_type}} \
You can’t perform that action at this time.
0 commit comments