File tree Expand file tree Collapse file tree 4 files changed +37
-10
lines changed Expand file tree Collapse file tree 4 files changed +37
-10
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ platforms:
21
21
driver_config :
22
22
box : opscode-centos-6.5
23
23
box_url : http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_centos-6.5_chef-provisionerless.box
24
- # - name: oracle-6.4
25
- # driver_config:
26
- # box: oracle-6.4
27
- # box_url: https://storage.us2.oraclecloud.com/v1/istoilis-istoilis/vagrant/oel64-64.box
24
+ - name : oracle-6.4
25
+ driver_config :
26
+ box : oracle-6.4
27
+ box_url : https://storage.us2.oraclecloud.com/v1/istoilis-istoilis/vagrant/oel64-64.box
28
28
- name : oracle-6.5
29
29
driver_config :
30
30
box : oracle-6.5
@@ -37,6 +37,10 @@ platforms:
37
37
driver_config :
38
38
box : debian-7
39
39
box_url : https://s3.eu-central-1.amazonaws.com/ffuenf-vagrantboxes/debian/debian-7.7.0-amd64_virtualbox.box
40
+ - name : debian-8
41
+ driver_config :
42
+ box : debian-8
43
+ box_url : https://s3.eu-central-1.amazonaws.com/ffuenf-vagrantboxes/debian/debian-8.0.0-amd64_virtualbox.box
40
44
suites :
41
45
- name : default
42
46
manifest : site.pp
Original file line number Diff line number Diff line change 2
2
- 1.8.7
3
3
- 1.9.3
4
4
- 2.0.0
5
+ - 2.1.0
5
6
language : ruby
6
7
bundler_args : --without development integration openstack
7
8
env :
9
+ - PUPPET_VERSION="~> 4.0.0"
10
+ - PUPPET_VERSION="~> 3.7.5"
11
+ - PUPPET_VERSION="~> 3.6.2"
8
12
- PUPPET_VERSION="~> 2.7.0"
9
- - PUPPET_VERSION="~> 3.0.0"
10
- - PUPPET_VERSION="~> 3.5.0"
11
- - PUPPET_VERSION="~> 3.6.0"
12
13
matrix :
13
14
fast_finish : true
14
15
exclude :
15
16
- rvm : 1.9.3
16
17
env : PUPPET_VERSION="~> 2.7.0"
17
18
- rvm : 2.0.0
18
19
env : PUPPET_VERSION="~> 2.7.0"
20
+ - rvm : 2.1.0
21
+ env : PUPPET_VERSION="~> 2.7.0"
22
+ - rvm : 1.8.7
23
+ env : PUPPET_VERSION="~> 4.0.0"
24
+ - rvm : 1.9.3
25
+ env : PUPPET_VERSION="~> 4.0.0"
19
26
- rvm : 2.0.0
20
- env : PUPPET_VERSION="~> 3 .0.0"
27
+ env : PUPPET_VERSION="~> 4 .0.0"
Original file line number Diff line number Diff line change 11
11
12
12
group :test do
13
13
gem 'rake'
14
+ # bugfix for ruby 1.8, puppet+rspec interplay
15
+ # https://github.com/rspec/rspec-core/issues/1864
16
+ if RUBY_VERSION . start_with? '1.8'
17
+ gem 'rspec' , '~> 3.1.0' , :require => false
18
+ end
14
19
gem 'rspec-puppet'
15
20
# avoid NoMethodError: private method `clone' called for #<RuboCop::Cop::CopStore:0x00000104e286c8>
16
21
gem 'puppetlabs_spec_helper' , :git => 'https://github.com/ehaselwanter/puppetlabs_spec_helper'
17
22
gem 'puppet-lint'
18
- gem 'rubocop' , '~> 0.27 ' if RUBY_VERSION > '1.9.2'
23
+ gem 'rubocop' , '~> 0.31 ' if RUBY_VERSION > '1.9.2'
19
24
end
20
25
21
26
group :development do
Original file line number Diff line number Diff line change 1
1
# encoding: utf-8
2
2
3
+ # Guardfile
4
+
3
5
guard 'rake' , :task => 'lint' do
4
- watch ( /^.*$/ )
6
+ watch ( %r{^manifests/.*$} )
7
+ watch ( %r{^templates/.*$} )
8
+ end
9
+
10
+ guard 'rake' , :task => 'spec' do
11
+ watch ( %r{^spec/(classes|defines)/.+_spec\. rb$} )
12
+ watch ( 'spec/spec_helper.rb' )
13
+ watch ( %r{^lib/.*$} )
14
+ watch ( %r{^manifests/.*$} )
15
+ watch ( %r{^templates/.*$} )
5
16
end
You can’t perform that action at this time.
0 commit comments