module-nginx/.travis.yml
Matthew Haughton 03bc588f9d travis: enhance the configuration
* Test Puppet 3.0 on Ruby 1.9.3, everything else on latest Ruby 2.1.10
* Test Puppet 3.0 on future parser again
* Test with strict variables, but don't fail the build if it fails (yet!)
2016-06-23 22:53:31 -04:00

28 lines
744 B
YAML

---
branches:
except:
- refactor
- gh-pages
sudo: false
language: ruby
cache: bundler
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
bundler_args: --without system_tests
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.10
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.10
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
- rvm: 2.1.10
env: PUPPET_GEM_VERSION="~> 4.0"
- rvm: 2.1.10
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes"
allow_failures:
- rvm: 2.1.10
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes"
notifications:
email: false