mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 10:08:40 -05:00
* (POOLER-96) Setting the Rubygems version travis uses the latest bundler 1.16 which installs the newer rubygems and I think that might be why it's failing now when downgrading only bundler to version 1.12 This is a test to see if travis will pass. * also update bundler to 1.15.4 * Update .travis.yml * update jruby to 1.7.13 * print bundle version * specify bundler version 1.15.4
37 lines
765 B
YAML
37 lines
765 B
YAML
cache: bundler
|
|
sudo: false
|
|
language: ruby
|
|
services:
|
|
- redis-server
|
|
|
|
matrix:
|
|
include:
|
|
- rvm: 2.3.3
|
|
env: "CHECK=rubocop"
|
|
|
|
- rvm: 2.1.1
|
|
env: "CHECK=test"
|
|
|
|
- rvm: 2.2.1
|
|
env: "CHECK=test"
|
|
|
|
- rvm: 2.3.3
|
|
env: "CHECK=test"
|
|
|
|
- rvm: jruby-1.7.13
|
|
env: "CHECK=test"
|
|
|
|
# Remove the allow_failures section once
|
|
# Rubocop is required for Travis to pass a build
|
|
allow_failures:
|
|
- rvm: 2.3.3
|
|
env: "CHECK=rubocop"
|
|
|
|
# Pin to specific rubygem and bundler for jruby tests
|
|
install:
|
|
- gem update --system 2.6.14
|
|
- gem install bundler --version 1.15.4
|
|
- bundle _1.15.4_ --version
|
|
- bundle _1.15.4_ install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
|
|
script:
|
|
- "bundle _1.15.4_ exec rake $CHECK"
|