diff options
author | Hunter Haugen <hunter@puppetlabs.com> | 2014-06-30 12:08:57 -0700 |
---|---|---|
committer | Hunter Haugen <hunter@puppetlabs.com> | 2014-06-30 12:08:57 -0700 |
commit | a4b30843d810315ac222fcc9a77dd74c538d7aca (patch) | |
tree | 8c11de2071e754aeee8c5dfdf816fb1b5ecfd0e9 | |
parent | 924d6b8dd3b33c983057c1b407266b0080623635 (diff) | |
parent | 4f8f7083d2b32f117ece11c14e79f328f55acd5b (diff) |
Merge pull request #295 from cmurphy/master
Synchronize .travis.yml
-rw-r--r-- | .sync.yml | 2 | ||||
-rw-r--r-- | .travis.yml | 26 |
2 files changed, 9 insertions, 19 deletions
@@ -1,6 +1,6 @@ --- .travis.yml: - unmanaged: true + script: "\"bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--color --format documentation'\"" Rakefile: unmanaged: true Gemfile: diff --git a/.travis.yml b/.travis.yml index 34d8cc9..3ed1153 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,26 +2,16 @@ language: ruby bundler_args: --without development script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--color --format documentation'" -rvm: - - 1.8.7 - - 1.9.3 - - 2.0.0 - - ruby-head -env: - - PUPPET_GEM_VERSION=">= 3.0.0" matrix: fast_finish: true - allow_failures: - - rvm: 2.0.0 - - rvm: ruby-head include: - - rvm: 1.8.7 - env: PUPPET_GEM_VERSION="~> 2.7" + - rvm: 1.8.7 + env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.6.0" + - rvm: 1.8.7 + env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.7.0" + - rvm: 1.9.3 + env: PUPPET_GEM_VERSION="~> 3.0" + - rvm: 2.0.0 + env: PUPPET_GEM_VERSION="~> 3.0" notifications: email: false - webhooks: - urls: - - https://puppet-dev-community.herokuapp.com/event/travis-ci/ - on_success: always - on_failure: always - on_start: yes |