File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -4,19 +4,29 @@ dist: bionic
44language : ruby
55rvm : 2.7.0
66
7- cache : bundler
7+ cache :
8+ directories :
9+ - $TRAVIS_BUILD_DIR/vendor/bundle
10+
11+ before_install :
12+ - gem install bundler:2.2.4 # match the Gemfile.lock, travis' bundle is 2.1.2
13+ - bundle config path 'vendor/bundle'
14+
15+ install :
16+ # overriding to drop the travis `--development` flag
17+ - bundle install --jobs=3 --retry=3
818
919addons :
1020 apt :
1121 packages :
12- - libcurl4-openssl-dev # required to avoid SSL error (for htmlproofer)
22+ - libcurl4-openssl-dev # required to avoid SSL error (for htmlproofer)
1323
1424script :
1525 - git -C "$HOME" clone "$BUILDER_REPO" --depth=1 -q
1626 - eval "$BUILD_CMD"
1727
1828branches :
19- only : production
29+ only : /.*-stable$/
2030
2131git :
2232 depth : false # for posts lastmod
You can’t perform that action at this time.
0 commit comments