File tree Expand file tree Collapse file tree 4 files changed +29
-12
lines changed Expand file tree Collapse file tree 4 files changed +29
-12
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
.DS_Store
3
3
metadata.json
4
4
coverage /
5
+ Gemfile.lock
6
+ .bundle /
7
+ vendor /bundle /
Original file line number Diff line number Diff line change 1
1
language : ruby
2
+ bundler_args : --without development
3
+ script : " bundle exec rake spec SPEC_OPTS='--color --format documentation'"
2
4
rvm :
3
5
- 1.8.7
4
- before_script :
5
- after_script :
6
- script : " rake spec_full"
7
- branches :
8
- only :
9
- - master
10
6
env :
7
+ - PUPPET_VERSION=">= 3.0.0"
8
+ - PUPPET_VERSION="~> 2.7.0"
11
9
- PUPPET_VERSION=2.7.13
12
10
- PUPPET_VERSION=2.7.6
13
11
- PUPPET_VERSION=2.6.9
12
+ matrix :
13
+ allow_failures :
14
+ - rvm : 2.0.0
15
+ include :
16
+ - rvm : 2.0.0
17
+ env : PUPPET_VERSION=">= 3.0.0"
18
+ - rvm : 1.9.3
19
+ env : PUPPET_VERSION=">= 3.0.0"
14
20
notifications :
15
21
email : false
16
- gemfile : .gemfile
22
+ webhooks :
23
+ urls :
24
+ - https://puppet-dev-community.herokuapp.com/event/travis-ci/
25
+ on_success : always
26
+ on_failure : always
27
+ on_start : yes
Original file line number Diff line number Diff line change
1
+ source "https://rubygems.org"
2
+
3
+ if puppetversion = ENV [ 'PUPPET_VERSION' ]
4
+ gem 'puppet' , puppetversion
5
+ else
6
+ gem 'puppet'
7
+ end
8
+ gem 'puppetlabs_spec_helper' , '>= 0.1.0'
You can’t perform that action at this time.
0 commit comments