File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -23,31 +23,27 @@ jobs:
23
23
cc : " cl" , cxx: "cl",
24
24
cmake_configure_options : ' -G "Visual Studio 17 2022" -A x64' ,
25
25
build_type : " Debug" ,
26
- cmake_build_options : " --config Debug" ,
27
26
}
28
27
- {
29
28
name : " Windows MSVC (Release)" ,
30
29
compiler : " msvc" ,
31
30
cc : " cl" , cxx: "cl",
32
31
cmake_configure_options : ' -G "Visual Studio 17 2022" -A x64' ,
33
32
build_type : " Release" ,
34
- cmake_build_options : " --config Release" ,
35
33
}
36
34
- {
37
35
name : " Windows Clang (Debug)" ,
38
36
compiler : " clang" ,
39
37
cc : " clang-cl" , cxx: "clang-cl",
40
38
cmake_configure_options : ' -G "Visual Studio 17 2022" -A x64 -T "LLVM_v143" -DCMAKE_CXX_COMPILER="clang-cl.exe" -DCMAKE_C_COMPILER="clang-cl.exe" -DCMAKE_LINKER="lld.exe"' ,
41
39
build_type : " Debug" ,
42
- cmake_build_options : " --config Debug" ,
43
40
}
44
41
- {
45
42
name : " Windows Clang (Release)" ,
46
43
compiler : " clang" ,
47
44
cc : " clang-cl" , cxx: "clang-cl",
48
45
cmake_configure_options : ' -G "Visual Studio 17 2022" -A x64 -T "LLVM_v143" -DCMAKE_CXX_COMPILER="clang-cl.exe" -DCMAKE_C_COMPILER="clang-cl.exe" -DCMAKE_LINKER="lld.exe"' ,
49
46
build_type : " Release" ,
50
- cmake_build_options : " --config Release" ,
51
47
}
52
48
53
49
steps :
85
81
- name : Build
86
82
shell : pwsh
87
83
run : |
88
- cmake --build build ${{ matrix.config.cmake_build_options }}
84
+ cmake --build build --config ${{ matrix.config.build_type }}
You can’t perform that action at this time.
0 commit comments