@@ -32,6 +32,8 @@ local linux_pipeline(name, image, environment, packages = "", sources = [], arch
32
32
commands:
33
33
[
34
34
'set -e' ,
35
+ 'uname -a' ,
36
+ 'echo $DRONE_STAGE_MACHINE' ,
35
37
'wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -' ,
36
38
] +
37
39
(if sources != [] then [ ('apt-add-repository "' + source + '"' ) for source in sources ] else []) +
@@ -224,23 +226,16 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
224
226
),
225
227
226
228
linux_pipeline(
227
- "Linux 23.04 GCC 13 64 ASAN" ,
228
- "cppalliance/droneubuntu2304:1" ,
229
- { TOOLSET: 'gcc' , COMPILER: 'g++-13' , CXXSTD: '11,14,17,20,2b' , ADDRMD: '64' } + asan,
230
- "g++-13-multilib" ,
231
- ),
232
-
233
- linux_pipeline(
234
- "Linux 24.04 GCC 14 32" ,
229
+ "Linux 24.04 GCC 14 UBSAN" ,
235
230
"cppalliance/droneubuntu2404:1" ,
236
- { TOOLSET: 'gcc' , COMPILER: 'g++-14' , CXXSTD: '11,14,17,20,2b' , ADDRMD: '32' } ,
231
+ { TOOLSET: 'gcc' , COMPILER: 'g++-14' , CXXSTD: '11,14,17,20,2b' } + ubsan ,
237
232
"g++-14-multilib" ,
238
233
),
239
234
240
235
linux_pipeline(
241
- "Linux 24.04 GCC 14 64 " ,
236
+ "Linux 24.04 GCC 14 ASAN " ,
242
237
"cppalliance/droneubuntu2404:1" ,
243
- { TOOLSET: 'gcc' , COMPILER: 'g++-14' , CXXSTD: '11,14,17,20,2b' , ADDRMD: '64' } ,
238
+ { TOOLSET: 'gcc' , COMPILER: 'g++-14' , CXXSTD: '11,14,17,20,2b' } + asan ,
244
239
"g++-14-multilib" ,
245
240
),
246
241
0 commit comments