Skip to content

Commit 7e4d90c

Browse files
committed
Update .drone.jsonnet
1 parent b4ce38b commit 7e4d90c

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

.drone.jsonnet

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ local linux_pipeline(name, image, environment, packages = "", sources = [], arch
3232
commands:
3333
[
3434
'set -e',
35+
'uname -a',
36+
'echo $DRONE_STAGE_MACHINE',
3537
'wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -',
3638
] +
3739
(if sources != [] then [ ('apt-add-repository "' + source + '"') for source in sources ] else []) +
@@ -150,16 +152,16 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
150152
),
151153

152154
linux_pipeline(
153-
"Linux 20.04 GCC 9* ARM64 ASAN",
155+
"Linux 20.04 GCC 9* ARM64 UBSAN",
154156
"cppalliance/droneubuntu2004:multiarch",
155-
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '11,14,17,2a' } + asan,
157+
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '11,14,17,2a' } + ubsan,
156158
arch="arm64",
157159
),
158160

159161
linux_pipeline(
160-
"Linux 20.04 GCC 9* ARM64 UBSAN",
162+
"Linux 20.04 GCC 9* ARM64 ASAN",
161163
"cppalliance/droneubuntu2004:multiarch",
162-
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '11,14,17,2a' } + ubsan,
164+
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '11,14,17,2a' } + asan,
163165
arch="arm64",
164166
),
165167

@@ -191,23 +193,23 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
191193
),
192194

193195
linux_pipeline(
194-
"Linux 23.04 GCC 13 32/64 ASAN",
196+
"Linux 23.04 GCC 13 32/64",
195197
"cppalliance/droneubuntu2304:1",
196-
{ TOOLSET: 'gcc', COMPILER: 'g++-13', CXXSTD: '11,14,17,20,2b', ADDRMD: '32,64' } + asan,
198+
{ TOOLSET: 'gcc', COMPILER: 'g++-13', CXXSTD: '11,14,17,20,2b', ADDRMD: '32,64' },
197199
"g++-13-multilib",
198200
),
199201

200202
linux_pipeline(
201-
"Linux 23.04 GCC 13 32/64 UBSAN",
202-
"cppalliance/droneubuntu2304:1",
203-
{ TOOLSET: 'gcc', COMPILER: 'g++-13', CXXSTD: '11,14,17,20,2b', ADDRMD: '32,64' } + ubsan,
204-
"g++-13-multilib",
203+
"Linux 24.04 GCC 14 32/64 UBSAN",
204+
"cppalliance/droneubuntu2404:1",
205+
{ TOOLSET: 'gcc', COMPILER: 'g++-14', CXXSTD: '11,14,17,20,2b', ADDRMD: '32,64' } + ubsan,
206+
"g++-14-multilib",
205207
),
206208

207209
linux_pipeline(
208-
"Linux 24.04 GCC 14 32/64",
210+
"Linux 24.04 GCC 14 32/64 ASAN",
209211
"cppalliance/droneubuntu2404:1",
210-
{ TOOLSET: 'gcc', COMPILER: 'g++-14', CXXSTD: '11,14,17,20,2b', ADDRMD: '32,64' },
212+
{ TOOLSET: 'gcc', COMPILER: 'g++-14', CXXSTD: '11,14,17,20,2b', ADDRMD: '32,64' } + asan,
211213
"g++-14-multilib",
212214
),
213215

0 commit comments

Comments
 (0)