diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-01-21 19:40:21 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2021-01-21 21:31:50 -0500 |
commit | 073b28c176cdb201fbe2b40b21fc2733fd01e55f (patch) | |
tree | 2d26ba3abd0636bf778d07c494f92b1c0c246dc2 | |
parent | 39a176bd3caa5912c344c99fc83fbc6f63a86f4f (diff) | |
download | haskell-073b28c176cdb201fbe2b40b21fc2733fd01e55f.tar.gz |
gitlab-ci: Fix build flavour of Windows builds
Previously the wrong flavour variable was being set.
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5dc027b330..26fc94671e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -902,14 +902,14 @@ release-x86_64-windows: <<: *release extends: .build-x86_64-windows-hadrian variables: - BUILD_FLAVOUR: "perf" + FLAVOUR: "perf" release-x86_64-windows-integer-simple: <<: *release extends: .build-x86_64-windows-hadrian variables: BIGNUM_BACKEND: native - BUILD_FLAVOUR: "perf" + FLAVOUR: "perf" ############################################################ # Cleanup |