Skip to content

Commit

Permalink
Update for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobandersen committed Jan 19, 2024
1 parent 7465a72 commit cee5c88
Show file tree
Hide file tree
Showing 183 changed files with 21,551 additions and 14,653 deletions.
28 changes: 22 additions & 6 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ local Configure(compiler, boost, dep=false) = {
"bindep testing",
"mkdir build",
"cd build",
"cmake ../ -DCMAKE_BUILD_TYPE=OptDebug -DENABLE_IPO=off -DBUILD_DOC=on -DBUILD_TESTING=on -DBUILD_TESTING_SANITIZERS=off %s" % [boostArg(boost)],
"cmake ../ -DCMAKE_BUILD_TYPE=OptDebug -DENABLE_IPO=off -DBUILD_DOC=on -DBUILD_TESTING=on %s" % [boostArg(boost)],
],
[ if dep then "depends_on"]: [ "bootstrap" ],
};
Expand Down Expand Up @@ -227,17 +227,33 @@ local Pipeline(withCoverage, compiler, boost) = {
},
//depends_on: [ "dist" ],
},
{
name: "Conda",
image: "plugins/docker",
settings: {
repo: "jakobandersen/mod",
tags: ["conda-test"],
dockerfile: "docker/Conda.Dockerfile",
dry_run: true,
purge: true,
build_args: ["j=1"],
},
//depends_on: [ "dist" ],
},
]
},
] + [
Pipeline(boost == "1_80_0" && compiler == "g++-11", compiler, boost)
for compiler in [
"g++-8", "g++-9", "g++-10", "g++-11",
"clang++-8",
#"clang++-9",
"clang++-10", "clang++-11", "clang++-12",
"g++-9", "g++-10",
"g++-11", "g++-12",
"g++-13",
"clang++-11", "clang++-12",
"clang++-13", "clang++-14",
"clang++-15",
]
for boost in [
"1_76_0", "1_77_0", "1_78_0", "1_79_0", "1_80_0",
"1_76_0", "1_77_0", "1_78_0", "1_79_0", "1_80_0", "1_81_0", "1_82_0", "1_83_0",
"1_84_0",
]
]
Loading

0 comments on commit cee5c88

Please sign in to comment.