summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-07-19 20:05:37 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-07-24 16:50:28 -0400
commitd0f8ed206479b8ad699d4eae95c063df9376fac4 (patch)
tree089f276b8df5f5cc2a68c6b529207d0df965bddd
parentb95b63806b5a9764902d3ae556ba31d17ecd1ec3 (diff)
downloadhaskell-d0f8ed206479b8ad699d4eae95c063df9376fac4.tar.gz
gitlab-ci: Fix source tarball job
* Use show! in source tarball job. Since we aren't actually building anything in this job `show` won't work. * Fix Docker image name * Make `version` file contain only version string
-rw-r--r--.gitlab-ci.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e02aba031d..eb2ffcf3db 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -864,7 +864,7 @@ doc-tarball:
stage: packaging
tags:
- x86_64-linux
- image: ghcci/x86_64-linux-deb9:0.2
+ image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb9:$DOCKER_REV"
dependencies:
- validate-x86_64-linux-deb9-debug
- validate-x86_64-windows
@@ -899,7 +899,7 @@ source-tarball:
stage: packaging
tags:
- x86_64-linux
- image: ghcci/x86_64-linux-deb9:0.2
+ image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-deb9:$DOCKER_REV"
dependencies: []
only:
- tags
@@ -913,7 +913,9 @@ source-tarball:
- ./configure
- make sdist
- mv sdistprep/*.xz .
- - make show VALUE=version > version
+ - make show! --quiet VALUE=ProjectVersion > version
+ - source version
+ - echo "$ProjectVersion" > version
############################################################