From a03dd33475b644da9cbe5eca749998fdf2f622cb Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Mon, 11 Jul 2016 12:08:06 +0200 Subject: [PATCH] gitlab-ci: allow failure of cleanup job --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d066a4eb..0142f852 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ stages: - build - test + - deploy - cleanup ############################################ @@ -159,6 +160,10 @@ test_ubuntu_1604: <<: *ubuntu_1604 <<: *test_linux +############################################ +# Deploy stage +############################################ + ############################################ # Cleanup stage ############################################ @@ -172,4 +177,5 @@ linux_cleanup: - docker rm -f `docker ps --no-trunc -aq` - docker images --no-trunc -aqf "dangling=true" | xargs docker rmi -f when: always + allow_failure: true