Skip to content

Commit 2cda428

Browse files
committed
ci: constrain clang in ci to version 20
1 parent 821eb4b commit 2cda428

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tools/options/meson.build

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@ if get_option('run_in_ci')
4141
system_name = 'msys2'
4242
endif
4343

44-
clang_19_compiler = {
45-
'id': 'clang',
46-
'checks': ['>=19', '<20'],
47-
}
4844
clang_20_compiler = {
4945
'id': 'clang',
5046
'checks': ['>=20', '<21'],
@@ -85,10 +81,10 @@ if get_option('run_in_ci')
8581
'compilers': [gcc_14_compiler],
8682
},
8783
'linux': {
88-
'compilers': [clang_19_compiler, gcc_14_compiler],
84+
'compilers': [clang_20_compiler, gcc_14_compiler],
8985
},
9086
'darwin': {
91-
'compilers': [clang_19_compiler],
87+
'compilers': [clang_20_compiler],
9288
},
9389
}
9490

0 commit comments

Comments
 (0)