summaryrefslogtreecommitdiff
path: root/.gitlab/gen_ci.hs
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2023-01-13 11:16:56 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2023-01-13 11:52:16 +0000
commitb6eb9bccd56a11b5e8c208bb5490309317fd5275 (patch)
tree5e7aac1b02dedeb4f784f1e89e77d0bcc9d2fbdc /.gitlab/gen_ci.hs
parent87194df0984a85acb3726ed5c69cfae89af56b85 (diff)
downloadhaskell-b6eb9bccd56a11b5e8c208bb5490309317fd5275.tar.gz
wasm ci: Remove wasm release jobs
This removes the wasm release jobs, as we do not yet intend to distribute these binaries.
Diffstat (limited to '.gitlab/gen_ci.hs')
-rwxr-xr-x.gitlab/gen_ci.hs8
1 files changed, 3 insertions, 5 deletions
diff --git a/.gitlab/gen_ci.hs b/.gitlab/gen_ci.hs
index 386d085d8f..3bea08bd88 100755
--- a/.gitlab/gen_ci.hs
+++ b/.gitlab/gen_ci.hs
@@ -856,15 +856,13 @@ jobs = Map.fromList $ concatMap (filter is_enabled_job . flattenJobGroup)
. setVariable "HADRIAN_ARGS" "--docs=none"
. delVariable "INSTALL_CONFIGURE_ARGS"
)
- $ StandardTriple
- (validate Amd64 (Linux Alpine) cfg)
- (nightly Amd64 (Linux Alpine) cfg)
- (release Amd64 (Linux Alpine) cfg)
+ $ validateBuilds Amd64 (Linux Alpine) cfg
wasm_build_config =
(crossConfig "wasm32-wasi" NoEmulatorNeeded Nothing)
- { buildFlavour = Release,
+ {
fullyStatic = True
+ , buildFlavour = Release -- TODO: This needs to be validate but wasm backend doesn't pass yet
}
main :: IO ()