From acc5cfe96dfd20e22027bbd1f74a2059979bab3b Mon Sep 17 00:00:00 2001 From: Igor Witz <igor.witz@etu.utc.fr> Date: Thu, 9 May 2019 16:48:38 +0200 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f0ba6657..205b36ef 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,7 +20,10 @@ metabuild: tags: [build] only: changes: - - pica-dokuwiki/* + - "pica-dokuwiki/*" + branches: + - master + - dev-ci # build the container that was modified build: @@ -28,7 +31,6 @@ build: image: $REGISTRY_PROD/pica-ci:latest before_script: - echo $REGISTRY_PASSWORD | docker login $REGISTRY -u $REGISTRY_USERNAME --password-stdin - - echo $MODIFIED_IMAGE - source /etc/profile.d/ci-variables script: - docker build -f $MODIFIED_IMAGE/Dockerfile $MODIFIED_IMAGE -t $REGISTRY/ci-builds/$CI_COMMIT_SHA @@ -38,7 +40,10 @@ build: tags: [build] only: changes: - - pica-dokuwiki/* + - "pica-dokuwiki/*" + branches: + - master + - dev-ci # run CoreOS' Clair and make the CI failed if a critical vulnerability isn't in the whitelist clair: @@ -64,8 +69,10 @@ clair: tags: [build] only: changes: - - pica-dokuwiki/* - allow_failure: false + - "pica-dokuwiki/*" + branches: + - master + - dev-ci # run docker-bench-security and upload the results docker-bench-security: @@ -95,7 +102,10 @@ docker-bench-security: tags: [build] only: changes: - - pica-dokuwiki/* + - "pica-dokuwiki/*" + branches: + - master + - dev-ci # automatically deploy the container on pica01-test deployment-test: @@ -124,7 +134,10 @@ deployment-test: tags: [build] only: changes: - - pica-dokuwiki/* + - "pica-dokuwiki/*" + branches: + - master + - dev-ci # automatically deploy the container on the production host associated with the modified image # this will only happen after manually triggering the deployment @@ -158,5 +171,5 @@ deployment-prod: tags: [build] only: changes: - - pica-dokuwiki/* + - "pica-dokuwiki/*" when: manual \ No newline at end of file -- GitLab