Skip to content

Commit 59a4fd2

Browse files
committed
fix: fix more CI configs for current compilers
1 parent 32fe5e2 commit 59a4fd2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tools/options/meson.build

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,23 @@ if get_option('run_in_ci')
3737

3838
clang_19_compiler = ['clang', ['>=19', '<20']]
3939
gcc_14_compiler = ['gcc', ['>=14', '<15']]
40+
msvc_compiler_current = ['msvc', ['>=19.43', '<20']]
4041

4142
ci_config = {
4243
'cross_android': {
4344
'compilers': [clang_19_compiler],
4445
},
4546
'cross_3ds': {
46-
'compilers': [clang_19_compiler],
47+
'compilers': [clang_19_compiler, gcc_14_compiler],
4748
},
4849
'cross_switch': {
49-
'compilers': [clang_19_compiler],
50+
'compilers': [clang_19_compiler, gcc_14_compiler],
5051
},
5152
'cross_emscripten': {
5253
'compilers': [clang_19_compiler],
5354
},
5455
'windows': {
55-
'compilers': [clang_19_compiler],
56+
'compilers': [msvc_compiler_current],
5657
},
5758
'linux': {
5859
'compilers': [clang_19_compiler, gcc_14_compiler],

0 commit comments

Comments
 (0)