summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2013-02-25 14:11:18 -0800
committerJeff McCune <jeff@puppetlabs.com>2013-02-25 14:11:18 -0800
commite0a2dc5b918482a5c05c0d7a6647f4e8a537616f (patch)
tree34b8008ff22a4871149121c6198fe131e3899841 /.travis.yml
parent1c33e9cd71ff9b20653ffc95355fa3be07078104 (diff)
parent4fdefd07617a23797ada6aa0eb1a5dadd5b9bd43 (diff)
downloadpuppet-stdlib-e0a2dc5b918482a5c05c0d7a6647f4e8a537616f.tar.gz
puppet-stdlib-e0a2dc5b918482a5c05c0d7a6647f4e8a537616f.tar.bz2
Merge branch '3.x' into 4.x
* 3.x: (maint) Add Ruby 2.0.0 to Travis build matrix
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml25
1 files changed, 18 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index 0ec5a08..7e40b3f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,16 +1,27 @@
language: ruby
+bundler_args: --without development
+script: "bundle exec rake spec SPEC_OPTS='--color --format documentation'"
rvm:
- 1.8.7
-before_script:
-after_script:
-script: "rake spec_full"
-branches:
- only:
- - master
env:
+ - PUPPET_VERSION=">= 3.0.0"
+ - PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION=2.7.13
- PUPPET_VERSION=2.7.6
- PUPPET_VERSION=2.6.9
+matrix:
+ allow_failures:
+ - rvm: 2.0.0
+ include:
+ - rvm: 2.0.0
+ env: PUPPET_VERSION=">= 3.0.0"
+ - rvm: 1.9.3
+ env: PUPPET_VERSION=">= 3.0.0"
notifications:
email: false
-gemfile: .gemfile
+ webhooks:
+ urls:
+ - https://puppet-dev-community.herokuapp.com/event/travis-ci/
+ on_success: always
+ on_failure: always
+ on_start: yes