Skip to content

Commit

Permalink
Update .drone.jsonnet
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Aug 21, 2024
1 parent ac29892 commit 1508f66
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ local linux_pipeline(name, image, environment, packages = "", sources = [], arch
commands:
[
'set -e',
'uname -a',
'echo $DRONE_STAGE_MACHINE',
'wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -',
] +
(if sources != [] then [ ('apt-add-repository "' + source + '"') for source in sources ] else []) +
Expand Down Expand Up @@ -193,6 +195,13 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
"g++-13",
),

linux_pipeline(
"Linux 24.04 GCC 14",
"cppalliance/droneubuntu2404:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-14', CXXSTD: '03,11,14,17,20,2b' },
"g++-14",
),

linux_pipeline(
"Linux 16.04 Clang 3.5",
"cppalliance/droneubuntu1604:1",
Expand Down Expand Up @@ -326,6 +335,13 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
"clang-17",
),

linux_pipeline(
"Linux 24.04 Clang 18",
"cppalliance/droneubuntu2404:1",
{ TOOLSET: 'clang', COMPILER: 'clang++-18', CXXSTD: '03,11,14,17,20,2b' },
"clang-18",
),

macos_pipeline(
"MacOS 10.15 Xcode 12.2",
{ TOOLSET: 'clang', COMPILER: 'clang++', CXXSTD: '03,11,14,1z' },
Expand Down

0 comments on commit 1508f66

Please sign in to comment.