diff options
author | Chris Elsworth <chris.elsworth@bytemark.co.uk> | 2017-03-17 13:31:12 +0000 |
---|---|---|
committer | Chris Elsworth <chris.elsworth@bytemark.co.uk> | 2017-03-17 13:31:12 +0000 |
commit | a3d7eb874eedbe3c065451bd0377f5236873e36a (patch) | |
tree | 30f7d46c878d1a6bdc7f23887b8f82a82a9ee3f7 /.gitlab-ci.yml | |
parent | 567d8b3c419a52ccc52f35f37338514c1d8fa623 (diff) | |
parent | 2b287c1c86cbe6c04dcf16f3d266aa2810f9f84c (diff) |
Merge branch '9-ci-run-tests' into 'master'
Resolve "gitlab-ci should run the test-cases."
Closes #9
See merge request !6
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..68db705 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-ruby + stage: test + variables: + DISTRO: jessie + script: + - make test + .package: &package image: $CI_REGISTRY/docker-images/layers:$DISTRO-deb stage: package |