Skip to content

Commit 8588b4a

Browse files
committed
Merge pull request puppetlabs#439 from cmurphy/master
Synchronize .travis.yml
2 parents c745a84 + c1744f2 commit 8588b4a

File tree

3 files changed

+22
-21
lines changed

3 files changed

+22
-21
lines changed

.sync.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
.travis.yml:
3-
env_matrix:
4-
- PUPPET_GEM_VERSION="~> 2.7.0"
5-
- PUPPET_GEM_VERSION="~> 3.2.0"
6-
- PUPPET_GEM_VERSION="~> 3.4.0"
7-
- PUPPET_GEM_VERSION="~> 3.5.0.rc3" STRICT_VARIABLES="yes"
3+
extras:
4+
- rvm: 1.9.3
5+
env: PUPPET_GEM_VERSION="~> 3.5.0.rc3" STRICT_VARIABLES="yes"
6+
- rvm: 2.0.0
7+
env: PUPPET_GEM_VERSION="~> 3.5.0.rc3" STRICT_VARIABLES="yes"
88
spec/spec_helper.rb:
99
unmanaged: true

.travis.yml

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
11
---
2-
branches:
3-
only:
4-
- master
52
language: ruby
63
bundler_args: --without development
74
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
8-
rvm:
9-
- 1.8.7
10-
- 1.9.3
11-
- 2.0.0
12-
env:
13-
matrix:
14-
- PUPPET_GEM_VERSION="~> 2.7.0"
15-
- PUPPET_GEM_VERSION="~> 3.2.0"
16-
- PUPPET_GEM_VERSION="~> 3.4.0"
17-
- PUPPET_GEM_VERSION="~> 3.5.0.rc3" STRICT_VARIABLES="yes"
185
matrix:
196
fast_finish: true
20-
exclude:
7+
include:
8+
- rvm: 1.8.7
9+
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.6.0"
10+
- rvm: 1.8.7
11+
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.7.0"
2112
- rvm: 1.9.3
22-
env: PUPPET_GEM_VERSION="~> 2.7.0"
13+
env: PUPPET_GEM_VERSION="~> 3.0"
2314
- rvm: 2.0.0
24-
env: PUPPET_GEM_VERSION="~> 2.7.0"
15+
env: PUPPET_GEM_VERSION="~> 3.0"
16+
- rvm: 1.9.3
17+
env: PUPPET_GEM_VERSION="~> 3.5.0.rc3" STRICT_VARIABLES="yes"
18+
- rvm: 2.0.0
19+
env: PUPPET_GEM_VERSION="~> 3.5.0.rc3" STRICT_VARIABLES="yes"
2520
notifications:
2621
email: false

Gemfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ group :development, :test do
1212
gem 'simplecov', :require => false
1313
end
1414

15+
if facterversion = ENV['FACTER_GEM_VERSION']
16+
gem 'facter', facterversion, :require => false
17+
else
18+
gem 'facter', :require => false
19+
end
20+
1521
if puppetversion = ENV['PUPPET_GEM_VERSION']
1622
gem 'puppet', puppetversion, :require => false
1723
else

0 commit comments

Comments
 (0)