summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-12-22 13:07:37 +0000
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2020-01-01 20:52:53 +0100
commitda4d63b2f06b1a6468b54baff9910b87b1a530a7 (patch)
treefd3c9c82f9fcdcc9bccbce81fd611288b97d0be5
parentcc59e39de82c540e0d50d7033f913b359e5f694f (diff)
downloadbundler-da4d63b2f06b1a6468b54baff9910b87b1a530a7.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> (cherry picked from commit 833faa964d3fed873742c03d1584b9d5a8172bee)
-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