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