diff options
author | Alp Mestanogullari <alpmestan@gmail.com> | 2019-06-05 23:40:54 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-06-07 10:28:47 -0400 |
commit | 3d97bad67ea64b7ee690c0a8836579bceef47cb5 (patch) | |
tree | 6d68a6fe81e9a105c4a1e999787f9e5680636161 /.gitlab-ci.yml | |
parent | 5991d877a3da69da63ab93ea277bd89965c97573 (diff) | |
download | haskell-3d97bad67ea64b7ee690c0a8836579bceef47cb5.tar.gz |
Hadrian: use deb9 Docker images instead of deb8 for CI jobs
This should fix #16739, where we seem to be getting extra carets in
a test's output because of the gcc that ships with the deb8 image,
whule we're not observing those extra carets in the deb9-based (Make)
jobs.
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 1022b955e3..b3cea199d6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -158,10 +158,10 @@ lint-release-changelogs: - ghc.tar.xz - junit.xml -validate-x86_64-linux-deb8-hadrian: +validate-x86_64-linux-deb9-hadrian: extends: .validate-hadrian stage: build - image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb8:$DOCKER_REV" + image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb9:$DOCKER_REV" before_script: # workaround for docker permissions - sudo chown ghc:ghc -R . @@ -176,7 +176,7 @@ validate-x86_64-linux-deb8-hadrian: hadrian-ghc-in-ghci: <<: *only-default stage: build - image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb8:$DOCKER_REV" + image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb9:$DOCKER_REV" before_script: # workaround for docker permissions - sudo chown ghc:ghc -R . |