Skip to content

Commit 8081b1f

Browse files
author
Colleen Murphy
committed
Update .travis.yml
This commit makes the following changes to the test matrix: - Runs tests on ruby 2.1.5 instead of 2.0.0 - Runs tests on ruby 1.8.7 with puppet 3.x - Adds an environment to run on an intermediate 3.x puppet version instead of latest (specifically 3.4.x) - Adds an environment to run with the future parser on latest puppet. This would affect the test runs for the validate and spec checks. - Runs the tests on docker
1 parent 489317b commit 8081b1f

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.travis.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,28 @@
11
---
2+
sudo: false
23
language: ruby
34
bundler_args: --without system_tests
45
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
56
matrix:
67
fast_finish: true
78
include:
9+
- rvm: 1.9.3
10+
env: PUPPET_GEM_VERSION="~> 3.4.0"
811
- 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"
12+
env: PUPPET_GEM_VERSION="~> 3.0"
1213
- rvm: 1.9.3
1314
env: PUPPET_GEM_VERSION="~> 3.0"
14-
- rvm: 2.0.0
15+
- rvm: 1.9.3
16+
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
17+
- rvm: 2.1.5
1518
env: PUPPET_GEM_VERSION="~> 3.0"
19+
- rvm: 2.1.5
20+
env: PUPPET_GEM_VERSION="~> 3.4.0"
21+
- rvm: 2.1.5
22+
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
23+
- rvm: 1.8.7
24+
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.6.0"
25+
- rvm: 1.8.7
26+
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION="~> 1.7.0"
1627
notifications:
1728
email: false

0 commit comments

Comments
 (0)