diff options
author | Steve Kemp <steve@steve.org.uk> | 2017-03-06 14:16:55 +0200 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2017-03-06 14:16:55 +0200 |
commit | 399fc8b8ea3b8c8cee0e97af1e2595dbf3193492 (patch) | |
tree | 74d85c3c86bdcaecc5ae8db3c26b92a3b362732e /.gitlab-ci.yml | |
parent | 9c152c69837f0fd21bcf41e7efa8d6580d945777 (diff) |
Package for squeeze->stretch.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 28 |
1 files changed, 24 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a97ea29..45c38f6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,20 +2,40 @@ stages: - package - publish -package:jessie: &package - stage: package +.package: &package image: $CI_REGISTRY/docker-images/layers:$DISTRO-deb - variables: - DISTRO: jessie + stage: package script: - package artifacts: paths: - pkg/ +package:wheezy: + <<: *package + variables: + DISTRO: wheezy + +package:jessie: + <<: *package + variables: + DISTRO: jessie + +package:stretch: + <<: *package + variables: + DISTRO: stretch + publish: stage: publish + variables: + RSYNC_HOSTNAME: repo.bytemark.co.uk tags: - shell script: - publish + dependencies: + - package:squeeze + - package:wheezy + - package:jessie + - package:stretch |