diff options
author | Steve Kemp <steve@steve.org.uk> | 2017-08-10 10:22:33 +0300 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2017-08-10 10:22:33 +0300 |
commit | 8123404af68b22140085dd38f862b0b2d5baf554 (patch) | |
tree | ac20d18175ae4eac10044c2447bf96dad68bd7d7 /.gitlab-ci.yml | |
parent | 63e2d2f2ec87d833408b7e8b6fb33e3f0fa0c804 (diff) |
Attempt to test upon wheezy systems in addition to jessie.
This is required because our status-hosts run on wheezy.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 68db705..2c93759 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,6 +4,14 @@ stages: - publish +test:wheezy: &test + image: $CI_REGISTRY/docker-images/layers:$DISTRO-ruby + stage: test + variables: + DISTRO: wheezy + script: + - make test + test:jessie: &test image: $CI_REGISTRY/docker-images/layers:$DISTRO-ruby stage: test |