diff options
author | Vladislav Zavialov <vlad.z.4096@gmail.com> | 2019-05-09 11:01:17 +0300 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-05-14 16:41:19 -0400 |
commit | 684dc290563769d456b6f1c772673d64307ab072 (patch) | |
tree | 86b71305d259e3dfd2e05a4f50b7e37f10103f9b /.gitlab-ci.yml | |
parent | a5fdd185188fcda595fd712f90864ec7c20cdace (diff) | |
download | haskell-684dc290563769d456b6f1c772673d64307ab072.tar.gz |
Restore the --coerce option in 'happy' configuration
happy-1.19.10 has been released with a fix for --coerce in the presence
of higher rank types. This should result in about 10% performance
improvement in the parser.
Diffstat (limited to '.gitlab-ci.yml')
-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 7cb158581d..1628e7bfe2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ variables: GIT_SSL_NO_VERIFY: "1" # Commit of ghc/ci-images repository from which to pull Docker images - DOCKER_REV: cefaee3c742af193e0f7783f87edb0d35374515c + DOCKER_REV: ac65f31dcffb09cd7ca7aaa70f447fcbb19f427f # Sequential version number capturing the versions of all tools fetched by # .gitlab/win32-init.sh. @@ -176,7 +176,7 @@ validate-x86_64-linux-deb8-hadrian: hadrian-ghc-in-ghci: <<: *only-default stage: build - image: ghcci/x86_64-linux-deb8:0.1 + image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb8:$DOCKER_REV" before_script: # workaround for docker permissions - sudo chown ghc:ghc -R . |