diff options
author | Robert Speicher <robert@gitlab.com> | 2016-03-15 00:39:33 +0000 |
---|---|---|
committer | Robert Speicher <robert@gitlab.com> | 2016-03-15 00:39:33 +0000 |
commit | c1d7e5ac1818830127ca7b10fcb7c862e512bfae (patch) | |
tree | 7f4f6f1f78975fd735dd63c3565d6adaadd9d028 | |
parent | 2612451bc02eac3e12945b768f97698384db8ae1 (diff) | |
parent | 5960e9954934d367d02f76f51d31d62235d4aa89 (diff) | |
download | gitlab-ce-c1d7e5ac1818830127ca7b10fcb7c862e512bfae.tar.gz |
Merge branch 'bundle-audit-ignore-redcloth' into 'master'
Remove allowed to fail by ignoring RedCloth
Having `Allowed to fail` jobs will only make sure we'll miss something
when it should fail, so I excluded a known issue which has been an
issue a long time now.
Now when this build is not green we know we should look at it and pay
attention.
See merge request !3215
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bd013d50faa..1ba1d8d8468 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -150,11 +150,10 @@ bundler:audit: stage: test script: - "bundle exec bundle-audit update" - - "bundle exec bundle-audit check" + - "bundle exec bundle-audit check --ignore OSVDB-115941" tags: - ruby - mysql - allow_failure: true # Ruby 2.2 jobs |