diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-02-21 01:14:10 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-02-23 21:56:06 -0500 |
commit | 1059e234b04a041291cc422cad715011011724d1 (patch) | |
tree | 13c3f8ee596ee9ec514b9f4016e68f466b7fac31 | |
parent | a990312e3d36e0e1b18bb966ac3297aa0aae142a (diff) | |
download | haskell-1059e234b04a041291cc422cad715011011724d1.tar.gz |
gitlab-ci: Only build x86_64-deb8 and fedora27 for releases
These are largely redundant as they are covered by x86_64-deb9.
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2b3580fa38..217b297229 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -277,24 +277,28 @@ validate-x86_64-linux-deb9-llvm: cache: key: linux-x86_64-deb9 -validate-x86_64-linux-deb8: +release-x86_64-linux-deb8: extends: .validate-linux stage: full-build image: ghcci/x86_64-linux-deb8:0.1 variables: TEST_ENV: "x86_64-linux-deb8" + only: + - tags cache: key: linux-x86_64-deb8 artifacts: when: always expire_in: 2 week -validate-x86_64-linux-fedora27: +release-x86_64-linux-fedora27: extends: .validate-linux stage: full-build image: ghcci/x86_64-linux-fedora27:0.1 variables: TEST_ENV: "x86_64-linux-fedora27" + only: + - tags cache: key: linux-x86_64-fedora27 artifacts: |