summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-12-22 13:07:37 +0000
committerBundlerbot <bot@bundler.io>2019-12-22 13:07:37 +0000
commit833faa964d3fed873742c03d1584b9d5a8172bee (patch)
treeda460a408b4093a3806df6a889471061700122f8
parent66e0cbed52729cff9d3b4cf16c4823ae6f865409 (diff)
parentb6006f85c46a0f72bdcc920c00ccbc284e5ee165 (diff)
downloadbundler-833faa964d3fed873742c03d1584b9d5a8172bee.tar.gz
Merge #7515
7515: Move `bin/rake man:check` to `linting` phase r=colby-swandale a=deivid-rodriguez So that it's only run once. ### What was the end-user problem that led to this PR? The problem was that `bin/rake man:check` is run for every CI matrix entry and that's useless. ### What was your diagnosis of the problem? My diagnosis was that we should move the check to the linting phase and run it only once, like we did for `rubocop` at https://github.com/bundler/bundler/pull/6830. ### What is your fix for the problem, implemented in this PR? My fix is to do that. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--.travis.yml6
1 files changed, 1 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 14091cadea..a428231133 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,7 +5,6 @@ before_script:
- travis_retry gem install rake:"~> 12.0"
- travis_retry bin/rake override_version
- travis_retry bin/rake spec:deps
- - bin/rake man:check
- if [ "$BUNDLER_SPEC_SUB_VERSION" = "" ];
then
travis_retry sudo apt-get install graphviz -y;
@@ -55,10 +54,7 @@ env:
jobs:
include:
- rvm: 2.6.5
- script: bin/rake rubocop
- stage: linting
- - rvm: 2.6.5
- script: bin/rake check_rvm_integration
+ script: bin/rake rubocop check_rvm_integration man:check
stage: linting
# Ruby 2.3 also tested in 2.x mode
- rvm: 2.3.8