Skip to content

Commit 1552747

Browse files
committed
[cicd_cmake_multi_platform.yml] fix: matrix
1 parent 19fc2ef commit 1552747

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

.github/workflows/cicd_cmake_multi_platform.yml

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix:
37-
gen: [Ninja] ## default generator
37+
# gen: [Ninja] ## default generator
3838
# cc : [gcc, clang] ## compilers
39-
bt : [Release, Debug] ## build type
39+
bt : [Debug, Release] ## build type
40+
pl : [ubuntu-latest, macos-latest, windows-latest, windows-2022] ## platform
4041
# pl : [ubuntu-latest, macos-latest] ## platform
4142
# exclude:
4243
# - pl : windows-latest
@@ -49,24 +50,28 @@ jobs:
4950
cc : gcc
5051
cxx: g++
5152
bp : "lnx_gcc"
53+
gen: "Ninja"
5254
# bt : Debug
5355
- name: "ubuntu clang"
5456
pl : ubuntu-latest
5557
cc : clang
5658
cxx: clang++
5759
bp : "lnx_clang"
60+
gen: "Ninja"
5861
# bt : Debug
5962
- name: "macOS gcc"
6063
pl : macos-latest
6164
cc : gcc
6265
cxx: g++
6366
bp : "mac_gcc"
67+
gen: "Ninja"
6468
# bt : Debug
6569
- name: "macOS clang"
6670
pl : macos-latest
6771
cc : clang
6872
cxx: clang++
6973
bp : "mac_clang"
74+
gen: "Ninja"
7075
# bt : Debug
7176
- name: "macOS Xcode"
7277
pl : macos-latest
@@ -75,18 +80,25 @@ jobs:
7580
bp : "mac_Xcode"
7681
gen: "Xcode"
7782
# bt : Debug
78-
- name: "win10 MSVC"
79-
pl : windows-2022 # drmemory currently not works on windows-2025 - Dr. Memory internal crash at PC.
83+
- name: "win11 clang"
84+
pl : windows-latest
85+
cc : clang
86+
cxx: clang++
87+
bp : "win11_clang"
88+
gen: "Ninja"
89+
# bt : Debug
90+
- name: "win11 MSVC"
91+
pl : windows-latest
8092
cc : cl
8193
cxx: cl
82-
bp : "win10_cl"
94+
bp : "win11_cl"
8395
gen: "Visual Studio 17 2022"
8496
# bt : Debug
85-
- name: "win11 MSVC"
86-
pl : windows-2025 # drmemory currently not works on windows-2025 - Dr. Memory internal crash at PC.
97+
- name: "win10 MSVC"
98+
pl : windows-2022 # drmemory currently not works on windows-2025 - Dr. Memory internal crash at PC.
8799
cc : cl
88100
cxx: cl
89-
bp : "win11_cl"
101+
bp : "win10_cl"
90102
gen: "Visual Studio 17 2022"
91103
# bt : Debug
92104
## END include

0 commit comments

Comments
 (0)