diff options
author | Stan Hu <stanhu@gmail.com> | 2016-09-14 17:02:22 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2016-09-14 21:48:16 -0700 |
commit | d22918a1f017d6aa4af6a682c7266c95d909d9f9 (patch) | |
tree | 7e12011cff597167dacfb2176d64fdf5c54211b9 /.gitlab-ci.yml | |
parent | 4326690ff82aba0c4288c8dbf615984995e9f465 (diff) | |
download | gitlab-ce-d22918a1f017d6aa4af6a682c7266c95d909d9f9.tar.gz |
Allow flay and flog to fail for now
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b5eef681d0e..b167fc74996 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -209,8 +209,12 @@ rubocop: *exec rake haml_lint: *exec rake scss_lint: *exec rake brakeman: *exec -rake flog: *exec -rake flay: *exec +rake flog: + <<: *exec + allow_failure: yes +rake flay: + <<: *exec + allow_failure: yes license_finder: *exec rake downtime_check: *exec |