summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDaniele Sluijters <daenney@users.noreply.github.com>2015-04-17 18:21:13 +0200
committerDaniele Sluijters <daenney@users.noreply.github.com>2015-04-17 19:22:16 +0200
commit99b1b4a7ca66691a269db6b1301439ff7503c037 (patch)
treee9e6f2ef46c128ac3839098afd4e0ec2809d153c /.travis.yml
parent9a0586eda8f87e8cb894a42396be4227878a4365 (diff)
travis: Test only latest Ruby and Puppet.
Since this module contains no Ruby code there's really no point in running a matrix for all Ruby versions. We trust Puppet to work on the different Ruby versions so all we need is to run the different versions of Puppet. We use Ruby 2.1.6 since 2.2.x causes Puppet 3 and 4 to crash. We need to allow Puppet 4 builds to break right now because rspec-puppet doesn't work with it.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 2330870..1ee753a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,9 +6,11 @@ script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake
matrix:
fast_finish: true
include:
- - rvm: 1.9.3
- env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- - rvm: 2.0.0
- env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
+ - rvm: 2.1.6
+ env: PUPPET_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
+ - rvm: 2.1.6
+ env: PUPPET_VERSION="~> 4.0" ORDERING="random"
+ allow_failures:
+ - env: PUPPET_VERSION="~> 4.0" ORDERING="random"
notifications:
email: false