gitlab-ci: allow failure of cleanup job

This commit is contained in:
Matthias Hochsteger 2016-07-11 12:08:06 +02:00
parent db42b98010
commit a03dd33475

View File

@ -1,6 +1,7 @@
stages: stages:
- build - build
- test - test
- deploy
- cleanup - cleanup
############################################ ############################################
@ -159,6 +160,10 @@ test_ubuntu_1604:
<<: *ubuntu_1604 <<: *ubuntu_1604
<<: *test_linux <<: *test_linux
############################################
# Deploy stage
############################################
############################################ ############################################
# Cleanup stage # Cleanup stage
############################################ ############################################
@ -172,4 +177,5 @@ linux_cleanup:
- docker rm -f `docker ps --no-trunc -aq` - docker rm -f `docker ps --no-trunc -aq`
- docker images --no-trunc -aqf "dangling=true" | xargs docker rmi -f - docker images --no-trunc -aqf "dangling=true" | xargs docker rmi -f
when: always when: always
allow_failure: true