Skip to content

Commit

Permalink
Merge pull request #542 from sdarwin/feature/drone4
Browse files Browse the repository at this point in the history
Drone: divide GCC 7 jobs
  • Loading branch information
mborland authored May 8, 2024
2 parents 3085424 + a6a6cc3 commit 4b87f04
Showing 1 changed file with 46 additions and 4 deletions.
50 changes: 46 additions & 4 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -187,16 +187,58 @@ local windows_pipeline(name, image, environment, arch = "amd64") =
),

linux_pipeline(
"Linux 18.04 GCC 7* 32",
"Linux 18.04 GCC 7* 32 03",
"cppalliance/droneubuntu1804:1",
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '03,11,14,17', ADDRMD: '32' },
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '03', ADDRMD: '32' },
"nload",
),

linux_pipeline(
"Linux 18.04 GCC 7* 64",
"Linux 18.04 GCC 7* 32 11",
"cppalliance/droneubuntu1804:1",
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '03,11,14,17', ADDRMD: '64' },
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '11', ADDRMD: '32' },
"nload",
),

linux_pipeline(
"Linux 18.04 GCC 7* 32 14",
"cppalliance/droneubuntu1804:1",
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '14', ADDRMD: '32' },
"nload",
),

linux_pipeline(
"Linux 18.04 GCC 7* 32 17",
"cppalliance/droneubuntu1804:1",
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '17', ADDRMD: '32' },
"nload",
),

linux_pipeline(
"Linux 18.04 GCC 7* 64 03",
"cppalliance/droneubuntu1804:1",
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '03', ADDRMD: '64' },
"nload",
),

linux_pipeline(
"Linux 18.04 GCC 7* 64 11",
"cppalliance/droneubuntu1804:1",
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '11', ADDRMD: '64' },
"nload",
),

linux_pipeline(
"Linux 18.04 GCC 7* 64 14",
"cppalliance/droneubuntu1804:1",
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '14', ADDRMD: '64' },
"nload",
),

linux_pipeline(
"Linux 18.04 GCC 7* 64 17",
"cppalliance/droneubuntu1804:1",
{ TOOLSET: 'gcc', COMPILER: 'g++', CXXSTD: '17', ADDRMD: '64' },
"nload",
),

Expand Down

0 comments on commit 4b87f04

Please sign in to comment.