diff options
author | Michel Dänzer <michel.daenzer@amd.com> | 2019-02-27 17:35:26 +0100 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2019-03-01 10:09:21 +0000 |
commit | 28cd209ebf20561e65d14fa2e8bbfaedf6965948 (patch) | |
tree | 3c390e36fa42d6b957ec29a2449ad338d912e648 | |
parent | 09be74a3d1dd9604336d9a27f98d132b262dcbaf (diff) |
Revert "gitlab-ci: Only run docker-image stage if relevant source files change"
This reverts commit 9c23076b9e81c36ac2408c491f9b2d546829ee8e.
Some scenarios have come to light where this failed to ensure the docker
image exists:
* If the master branch of a forked repository is used for an MR which
doesn't modify .gitlab-ci.yml, the docker-image job may not run.
* If the docker-image job of the first pipeline in a forked repository
is cancelled or fails for any reason, and .gitlab-ci.yml isn't
modified for the next pipeline run.
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 53b89c3..313161d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,10 +24,6 @@ stages: debian-testing: stage: docker-image - only: - changes: - - .gitlab-ci.yml - - .gitlab-ci/Dockerfile image: name: gcr.io/kaniko-project/executor:debug entrypoint: [""] |