diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-12-10 03:35:26 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-12-16 19:33:01 -0500 |
commit | e6d4b902fe2072c4cf75cfc2ec3d9f595938b3a1 (patch) | |
tree | e3cd22ecc68d22c985645778a370e2a83e9db279 /.gitlab-ci.yml | |
parent | af7637651bbc55db81e8cef387faf93951d831c2 (diff) | |
download | haskell-e6d4b902fe2072c4cf75cfc2ec3d9f595938b3a1.tar.gz |
gitlab-ci: Use xz --threads on Debian 10
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c312541fbb..8eb3ea1de3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -649,7 +649,8 @@ validate-x86_64-linux-deb9-dwarf: variables: TEST_ENV: "x86_64-linux-deb10" BIN_DIST_PREP_TAR_COMP: "./ghc-x86_64-deb10-linux.tar.xz" - XZ: "xz -T0" + # pxz doesn't exist; it's xz --threads + XZ: "xz --threads=$CORES" cache: key: linux-x86_64-deb10 |