vmpooler/.travis.yml
kirby@puppetlabs.com 0a21ac563d Update travis tests to use latest ruby versions
This commit updates travis to use ruby 2.4.9, 2.5.7, and jruby 9.2.9.0
for tests.
Test with latest z releases of ruby versions
2020-02-13 12:00:09 -08:00

31 lines
589 B
YAML

cache: bundler
sudo: false
language: ruby
matrix:
include:
- rvm: 2.4.9
env: "CHECK=rubocop"
- rvm: 2.4.9
env: "CHECK=test"
- rvm: 2.5.7
env: "CHECK=test"
- rvm: jruby-9.2.9.0
env: "CHECK=test"
# Remove the allow_failures section once
# Rubocop is required for Travis to pass a build
allow_failures:
- rvm: 2.4.9
env: "CHECK=rubocop"
install:
- gem update --system
- gem install bundler
- bundle --version
- bundle install --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle}
script:
- "bundle exec rake $CHECK"