diff options
author | Peter Trommler <ptrommler@acm.org> | 2021-05-27 11:58:55 +0200 |
---|---|---|
committer | Peter Trommler <ptrommler@acm.org> | 2021-05-27 12:00:39 +0200 |
commit | 03b27d755f09552ea481ab4eac2d6d895c66d9fd (patch) | |
tree | 1a0c5f7844d6c6e830e33464e258140c0832028c | |
parent | ce1b8f4208530fe6449506ba22e3a05048f81564 (diff) | |
download | haskell-wip/fix-nofib.tar.gz |
CI: Fix nofibwip/fix-nofib
Install missing unboxed-ref package.
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a5cfd8161d..976b504865 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1350,9 +1350,6 @@ nightly-hackage: ############################################################ perf-nofib: - # This needs to be reverted, and is only - # an attempt to unbreak master - allow_failure: true stage: testing needs: [validate-x86_64-linux-deb9-dwarf, doc-tarball] dependencies: @@ -1378,6 +1375,7 @@ perf-nofib: rm -Rf tmp - export BOOT_HC=$GHC - cabal install -w "$BOOT_HC" --lib regex-compat + - cabal install -w "$BOOT_HC" --lib unboxed-ref - export PATH=$root/bin:$PATH - make -C nofib boot mode=fast -j$CPUS - "make -C nofib EXTRA_RUNTEST_OPTS='-cachegrind +RTS -V0 -RTS' NoFibRuns=1 mode=fast -j$CPUS 2>&1 | tee nofib.log" |