diff options
author | Steve Kemp <steve@steve.org.uk> | 2017-03-17 14:05:34 +0200 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2017-03-17 14:05:34 +0200 |
commit | 571377a4e5db50bb3bcc1c3c1fcb5ff7173fdf77 (patch) | |
tree | 70b33d4a23543842c3b9c3f535b6137538cf194d /.gitlab-ci.yml | |
parent | 567d8b3c419a52ccc52f35f37338514c1d8fa623 (diff) |
Attempt to run the test-cases in the CI environment
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 752eaf7..d8d8037 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,17 @@ stages: + - test - package - publish + +test:jessie: &test + image: $CI_REGISTRY/docker-images/layers:$DISTRO-deb + stage: test + variables: + DISTRO: jessie + script: + - make test + .package: &package image: $CI_REGISTRY/docker-images/layers:$DISTRO-deb stage: package |