diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-12-13 18:44:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-12-13 18:44:36 +0300 |
commit | 1c25ac4c505ba25773f9018a2e0476fd34321228 (patch) | |
tree | 95fcfeb32c23e2097f3c1ec391bb059df1045f03 | |
parent | ef7d5c4bd07abd43c5a66cc11053f7d5ba344633 (diff) | |
download | tools-1c25ac4c505ba25773f9018a2e0476fd34321228.tar.gz tools-1c25ac4c505ba25773f9018a2e0476fd34321228.tar.bz2 tools-1c25ac4c505ba25773f9018a2e0476fd34321228.tar.xz tools-1c25ac4c505ba25773f9018a2e0476fd34321228.zip |
Use git none strategy in success and fail ci job.
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8e9f634..61bdee3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,6 +23,8 @@ success: - echo "do nothing" image: debian:stable when: on_success + variables: + GIT_STRATEGY: none failure: stage: failure @@ -30,3 +32,5 @@ failure: - echo "do nothing" image: debian:stable when: on_failure + variables: + GIT_STRATEGY: none |