summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2020-02-28 13:54:35 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2020-03-13 12:44:22 +1000
commit1b1b44659701501d0b1ce2e25f3d84d7f44db99b (patch)
tree87d3541c8ca275d467e27812707c526f4b32756f /.gitlab-ci.yml
parent18ef5f76e0df3cd19b7d429775a48e55e20290b5 (diff)
downloadlibevdev-1b1b44659701501d0b1ce2e25f3d84d7f44db99b.tar.gz
gitlab CI: make the container-clean dependent on container-prep
This is a test commit only to speed things up when testing the container-clean phase. In the real instance, we don't want to remove our containers until the test suite successfully completes on the new container. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2047f56..26613c1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -413,60 +413,70 @@ fedora:30@container-clean:
extends:
- .fedora:30
- .container-clean
+ needs: ["fedora:30@container-prep"]
### fedora 31
fedora:31@container-clean:
extends:
- .fedora:31
- .container-clean
+ needs: ["fedora:31@container-prep"]
### ubuntu 19.10
ubuntu:19.10@container-clean:
extends:
- .ubuntu:19.10
- .container-clean
+ needs: ["ubuntu:19.10@container-prep"]
### ubuntu 19.04
ubuntu:19.04@container-clean:
extends:
- .ubuntu:19.04
- .container-clean
+ needs: ["ubuntu:19.04@container-prep"]
### debian stable
debian:stable@container-clean:
extends:
- .debian:stable
- .container-clean
+ needs: ["debian:stable@container-prep"]
### debian sid
debian:sid@container-clean:
extends:
- .debian:sid
- .container-clean
+ needs: ["debian:sid@container-prep"]
### centos 7
centos:7@container-clean:
extends:
- .centos:7
- .container-clean
+ needs: ["centos:7@container-prep"]
### centos 8
centos:8@container-clean:
extends:
- .centos:8
- .container-clean
+ needs: ["centos:8@container-prep"]
### arch rolling
arch:rolling@container-clean:
extends:
- .arch:rolling
- .container-clean
+ needs: ["arch:rolling@container-prep"]
### alpine latest
alpine:latest@container-clean:
extends:
- .alpine:latest
- .container-clean
+ needs: ["alpine:latest@container-prep"]
#################################################################