diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-21 15:08:55 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-21 15:08:55 +0100 |
commit | 285612c904c5aecf08260bb87245494aad636c91 (patch) | |
tree | f21af06ea04c7ee91fd22a57c3bdf53e5a76ad55 /.gitlab-ci.yml | |
parent | 6098e62346b830cc1921661325b891b4f2c02557 (diff) | |
download | Ishtar-285612c904c5aecf08260bb87245494aad636c91.tar.bz2 Ishtar-285612c904c5aecf08260bb87245494aad636c91.zip |
CI: split in differents stages
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7a5476081..69d443a1c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,19 +13,25 @@ variables: services: - iggdrasil/postgis-1.5 -master: - script: "make test_gitlab" +build: + stage: "build" + script: "make build_gitlab" only: - master + - v0.9 + - wheezy -stable: +test: + stage: "test" script: "make test_gitlab" only: + - master - v0.9 + - wheezy debian: + stage: "debian-test" script: - - make test_gitlab - apt-get install -q -y devscripts build-essential lintian wget - make deb - wget -O /etc/apt/sources.list.d/iggdrasil.list http://deb.iggdrasil.net/dists/wheezy/iggdrasil.list |