diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-12-21 16:51:37 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-12-21 16:55:50 -0500 |
commit | dd561e151af7de6840d79f4a5f523bfe6a751bed (patch) | |
tree | 49fdb581ea234a0a920d2fea439cef7e4c07726d /.gitlab-ci.yml | |
parent | 290cb9bc527ee4fd33ffc1169eb6b521f6f94003 (diff) | |
download | haskell-dd561e151af7de6840d79f4a5f523bfe6a751bed.tar.gz |
gitlab-ci: Add i386 Debian 9 buildsD5440
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fbc8409a49..199148a202 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -183,6 +183,30 @@ nightly-aarch64-linux-deb9: variables: - $NIGHTLY +validate-i386-linux-deb9: + extends: .validate-linux + stage: full-build + image: ghcci/i386-linux-deb9:0.1 + allow_failure: true + artifacts: + when: always + expire_in: 2 week + cache: + key: linux-i386-deb9 + +nightly-i386-linux-deb9: + extends: .validate-linux + stage: full-build + image: ghcci/i386-linux-deb9:0.1 + allow_failure: true + variables: + TEST_TYPE: slowtest + artifacts: + when: always + expire_in: 2 week + cache: + key: linux-i386-deb9 + validate-x86_64-linux-deb9: extends: .validate-linux stage: build |