diff options
author | Steve Kemp <steve@steve.org.uk> | 2017-03-06 14:14:34 +0200 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2017-03-06 14:14:34 +0200 |
commit | 9c152c69837f0fd21bcf41e7efa8d6580d945777 (patch) | |
tree | b135a41eac6294e67b02bdbb8fdfbce4c9d47919 | |
parent | 386adc9672830c7a9fb5d7ead2e8c73c49251fe7 (diff) |
Move to gitlab-CI.
This closes #6.
-rw-r--r-- | .gitlab-ci.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..a97ea29 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,21 @@ +stages: + - package + - publish + +package:jessie: &package + stage: package + image: $CI_REGISTRY/docker-images/layers:$DISTRO-deb + variables: + DISTRO: jessie + script: + - package + artifacts: + paths: + - pkg/ + +publish: + stage: publish + tags: + - shell + script: + - publish |