vmpooler/.travis.yml
kirby@puppetlabs.com 49ec06e151 (POOLER-138) Support multiple pools per alias
This change updates handling of pool aliases to allow for more than a
single pool to be configured as an alias pool. Without this change if
multiple pools are configured as an alias the last one to configure it
is set as the alias for that pool.

Additionally, redis testing requirements are removed in favor of
mock_redis. Without this change a redis server is required to run
vmpooler tests.
2019-02-01 09:05:23 -08:00

31 lines
589 B
YAML

cache: bundler
sudo: false
language: ruby
matrix:
include:
- rvm: 2.4.5
env: "CHECK=rubocop"
- rvm: 2.4.5
env: "CHECK=test"
- rvm: 2.5.3
env: "CHECK=test"
- rvm: jruby-9.2.5.0
env: "CHECK=test"
# Remove the allow_failures section once
# Rubocop is required for Travis to pass a build
allow_failures:
- rvm: 2.4.5
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"