From cc07d0f289b9346a3849bc8ecc0f2cf93ecea79c Mon Sep 17 00:00:00 2001 From: DJ Mountney Date: Wed, 19 Apr 2017 11:40:00 -0700 Subject: Don't run the downtime check on stable branches, or tags/master The way the check currently works, it runs on the diff between your branch and the latest commit in gitlab on master. This doesn't give a good representation of the changes migrations for stable branches, tags, and master itself. --- .gitlab-ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e57362bd3a5..f188ee29223 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -201,7 +201,13 @@ rake config_lint: *exec rake brakeman: *exec rake flay: *exec license_finder: *exec -rake downtime_check: *exec +rake downtime_check: + <<: *exec + except: + - master + - tags + - /^[\d-]+-stable(-ee)?$/ + rake ee_compat_check: <<: *exec only: -- cgit v1.2.1