diff options
author | Rémy Coutable <remy@rymai.me> | 2016-10-28 18:13:59 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-11-10 10:40:47 +0100 |
commit | 88edbd11a92d35af1311facff94756bb32dca0d7 (patch) | |
tree | 6f0baca881b6283dafd37cf9b6aa8238ce38269b /.gitlab-ci.yml | |
parent | 0c99e5d0b6b457ef7db2c36f1394fad5c63d1142 (diff) | |
download | gitlab-ce-88edbd11a92d35af1311facff94756bb32dca0d7.tar.gz |
Improve EeCompatCheck, cache EE repo and keep artifacts for the ee_compat_check task23945-improve-ee_compat_check-task-part-3
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 195783454f9..34348247e91 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -213,11 +213,24 @@ rake downtime_check: *exec rake ee_compat_check: <<: *exec only: - - branches + - branches@gitlab-org/gitlab-ce + - branches@gitlab/gitlabhq except: - master - tags + - /^[\d-]+-stable(-ee)?$/ allow_failure: yes + cache: + key: "ruby231-ee_compat_check_repo" + paths: + - ee_compat_check/repo/ + - vendor/ruby + artifacts: + name: "${CI_BUILD_NAME}_${CI_BUILD_REF_NAME}_${CI_BUILD_REF}" + when: on_failure + expire_in: 10d + paths: + - ee_compat_check/patches/*.patch rake db:migrate:reset: stage: test |