diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-10-27 00:04:28 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-10-27 13:30:55 -0400 |
commit | 638f65482ca5265c268aa97abfcc14cdc27e46ba (patch) | |
tree | f062eb6945fb6791b75eb415b4acff59bd783e0c /.gitlab-ci.yml | |
parent | ed9ec655dcbd538383d5f1191440f152113adad2 (diff) | |
download | haskell-638f65482ca5265c268aa97abfcc14cdc27e46ba.tar.gz |
hadrian: Turn the `static` flavour into a transformer
This turns the `static` flavour into the `+fully_static` flavour
transformer.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 16653c13b0..114792831c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -989,7 +989,7 @@ release-x86_64-linux-ubuntu2004: allow_failure: true variables: TEST_ENV: "x86_64-linux-alpine" - BUILD_FLAVOUR: "static" + BUILD_FLAVOUR: "validate+fully_static" BIN_DIST_NAME: "ghc-x86_64-alpine-linux" # Can't use ld.gold due to #13958. CONFIGURE_ARGS: "--disable-ld-override" @@ -1015,7 +1015,7 @@ release-x86_64-linux-alpine-integer-simple: - .release variables: BIGNUM_BACKEND: native - BUILD_FLAVOUR: "static" + BUILD_FLAVOUR: "validate+fully_static" release-x86_64-linux-alpine-integer-gmp: extends: @@ -1023,7 +1023,7 @@ release-x86_64-linux-alpine-integer-gmp: - .release variables: BIGNUM_BACKEND: gmp - BUILD_FLAVOUR: "static" + BUILD_FLAVOUR: "validate+fully_static" nightly-x86_64-linux-alpine: <<: *nightly |