Skip to content

Commit

Permalink
Merge pull request #597 from sdarwin/feature/drone5
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland authored May 24, 2024
2 parents 93d13a9 + 1959098 commit e6dd55c
Showing 1 changed file with 37 additions and 2 deletions.
39 changes: 37 additions & 2 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,44 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
),

linux_pipeline(
"Linux 22.04 GCC 12 32 ASAN",
"Linux 22.04 GCC 12 32 ASAN 03",
"cppalliance/droneubuntu2204:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '03,11,14,17,20,2b', ADDRMD: '32' } + asan,
{ TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '03', ADDRMD: '32' } + asan,
"g++-12-multilib",
),

linux_pipeline(
"Linux 22.04 GCC 12 32 ASAN 11",
"cppalliance/droneubuntu2204:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '11', ADDRMD: '32' } + asan,
"g++-12-multilib",
),

linux_pipeline(
"Linux 22.04 GCC 12 32 ASAN 14",
"cppalliance/droneubuntu2204:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '14', ADDRMD: '32' } + asan,
"g++-12-multilib",
),

linux_pipeline(
"Linux 22.04 GCC 12 32 ASAN 17",
"cppalliance/droneubuntu2204:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '17', ADDRMD: '32' } + asan,
"g++-12-multilib",
),

linux_pipeline(
"Linux 22.04 GCC 12 32 ASAN 20",
"cppalliance/droneubuntu2204:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '20', ADDRMD: '32' } + asan,
"g++-12-multilib",
),

linux_pipeline(
"Linux 22.04 GCC 12 32 ASAN 2b",
"cppalliance/droneubuntu2204:1",
{ TOOLSET: 'gcc', COMPILER: 'g++-12', CXXSTD: '2b', ADDRMD: '32' } + asan,
"g++-12-multilib",
),

Expand Down

0 comments on commit e6dd55c

Please sign in to comment.