diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-02-21 01:14:10 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-02-21 01:14:44 -0500 |
commit | 6c074dd4b719701d8298ad0a8032700485a8f347 (patch) | |
tree | 9c5e52cbdd8ec91545b46ea4faf75e417f390a27 /.gitlab-ci.yml | |
parent | 3f73f081d675fd35ee0af0facc05a046d379ef26 (diff) | |
download | haskell-wip/pare-down-ci.tar.gz |
gitlab-ci: Only build x86_64-deb8 and fedora27 for releaseswip/pare-down-ci
These are largely redundant as they are covered by x86_64-deb9.
Diffstat (limited to '.gitlab-ci.yml')
-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 33d96d88df..69074dc4d5 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: |