Skip to content

Commit 1508f66

Browse files
committed
Update .drone.jsonnet
1 parent ac29892 commit 1508f66

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.drone.jsonnet

+16
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 []) +
@@ -193,6 +195,13 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
193195
"g++-13",
194196
),
195197

198+
linux_pipeline(
199+
"Linux 24.04 GCC 14",
200+
"cppalliance/droneubuntu2404:1",
201+
{ TOOLSET: 'gcc', COMPILER: 'g++-14', CXXSTD: '03,11,14,17,20,2b' },
202+
"g++-14",
203+
),
204+
196205
linux_pipeline(
197206
"Linux 16.04 Clang 3.5",
198207
"cppalliance/droneubuntu1604:1",
@@ -326,6 +335,13 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
326335
"clang-17",
327336
),
328337

338+
linux_pipeline(
339+
"Linux 24.04 Clang 18",
340+
"cppalliance/droneubuntu2404:1",
341+
{ TOOLSET: 'clang', COMPILER: 'clang++-18', CXXSTD: '03,11,14,17,20,2b' },
342+
"clang-18",
343+
),
344+
329345
macos_pipeline(
330346
"MacOS 10.15 Xcode 12.2",
331347
{ TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '03,11,14,1z' },

0 commit comments

Comments
 (0)