794ef22934
This fixes some mistakes in the .travis.yml file: * Corrects matches so the minor gem revisions get rounded, this means 2.6.0 for example is used. * Adds Ruby 2.0.0 tests * Allows 2.6.0 to fail for now, as it doesn't have create_resources. * Removes trailing commas and arrays in functions for 2.6.0. Signed-off-by: Ken Barber <ken@bob.sh>
33 lines
810 B
YAML
33 lines
810 B
YAML
language: ruby
|
|
bundler_args: --without development
|
|
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
|
|
rvm:
|
|
- 1.8.7
|
|
- 1.9.3
|
|
- 2.0.0
|
|
- ruby-head
|
|
env:
|
|
- PUPPET_GEM_VERSION="~> 2.6.0"
|
|
- PUPPET_GEM_VERSION="~> 2.7.0"
|
|
- PUPPET_GEM_VERSION="~> 3.0.0"
|
|
- PUPPET_GEM_VERSION="~> 3.1.0"
|
|
matrix:
|
|
allow_failures:
|
|
- rvm: 2.0.0
|
|
- rvm: ruby-head
|
|
- env: PUPPET_GEM_VERSION="~> 2.6.0"
|
|
exclude:
|
|
- rvm: 1.9.3
|
|
env: PUPPET_GEM_VERSION="~> 2.7.0"
|
|
- rvm: 2.0.0
|
|
env: PUPPET_GEM_VERSION="~> 2.7.0"
|
|
- rvm: ruby-head
|
|
env: PUPPET_GEM_VERSION="~> 2.7.0"
|
|
- rvm: 1.9.3
|
|
env: PUPPET_GEM_VERSION="~> 2.6.0"
|
|
- rvm: 2.0.0
|
|
env: PUPPET_GEM_VERSION="~> 2.6.0"
|
|
- rvm: ruby-head
|
|
env: PUPPET_GEM_VERSION="~> 2.6.0"
|
|
notifications:
|
|
email: false
|