summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-07-19 20:05:37 -0400
committerBen Gamari <ben@smart-cactus.org>2019-07-21 18:02:16 -0400
commit3e139dba8b8fcc15c201803a0ae27255ada43c14 (patch)
tree5005f97a471dae6079bbe0b119b4a53017c42a0f
parent6090be1c7bc110405ef08228ecfd1b37f5bd2b5b (diff)
downloadhaskell-3e139dba8b8fcc15c201803a0ae27255ada43c14.tar.gz
gitlab-ci: Fix source tarball jobghc-8.8.1-rc1
* 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.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 86192d8195..a6bd2cfc75 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -701,7 +701,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
############################################################