File tree 7 files changed +26
-12
lines changed
spec/acceptance/nodesets/docker
7 files changed +26
-12
lines changed Original file line number Diff line number Diff line change 1
- modulesync_config_version : ' 1.3 .0'
1
+ modulesync_config_version : ' 1.5 .0'
Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ Style/HashSyntax:
46
46
Style/RedundantReturn :
47
47
Enabled : True
48
48
49
+ Style/EndOfLine :
50
+ Enabled : False
51
+
49
52
Lint/AmbiguousOperator :
50
53
Enabled : True
51
54
Original file line number Diff line number Diff line change @@ -16,23 +16,28 @@ matrix:
16
16
fast_finish : true
17
17
include :
18
18
- rvm : 2.1.9
19
- bundler_args : --without system_tests development
20
- env : PUPPET_VERSION="~> 4.0" CHECK=test
19
+ bundler_args : --without system_tests development release
20
+ env : PUPPET_VERSION="~> 4.0" CHECK=test PARALLEL_TEST_PROCESSORS=16
21
21
- rvm : 2.4.2
22
- bundler_args : --without system_tests development
22
+ bundler_args : --without system_tests development release
23
23
env : PUPPET_VERSION="~> 5.0" CHECK=test_with_coveralls
24
24
- rvm : 2.4.2
25
- bundler_args : --without system_tests development
25
+ bundler_args : --without system_tests development release
26
26
env : PUPPET_VERSION="~> 5.0" CHECK=rubocop
27
27
- rvm : 2.4.2
28
- bundler_args : --without system_tests development
28
+ bundler_args : --without system_tests development release
29
29
env : PUPPET_VERSION="~> 5.0" CHECK=build DEPLOY_TO_FORGE=yes
30
30
branches :
31
31
only :
32
32
- master
33
33
- /^v\d/
34
34
notifications :
35
35
email : false
36
+ irc :
37
+ on_success : always
38
+ on_failure : always
39
+ channels :
40
+ - " chat.freenode.org#voxpupuli-notifications"
36
41
deploy :
37
42
provider : puppetforge
38
43
user : puppet
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ def location_for(place, fake_version = nil)
11
11
end
12
12
13
13
group :test do
14
- gem 'puppetlabs_spec_helper' , '~> 2.4 .0' , :require => false
14
+ gem 'puppetlabs_spec_helper' , '~> 2.5 .0' , :require => false
15
15
gem 'rspec-puppet' , '~> 2.5' , :require => false
16
16
gem 'rspec-puppet-facts' , :require => false
17
17
gem 'rspec-puppet-utils' , :require => false
@@ -43,6 +43,8 @@ group :system_tests do
43
43
gem 'winrm' , :require => false
44
44
if beaker_version = ENV [ 'BEAKER_VERSION' ]
45
45
gem 'beaker' , *location_for ( beaker_version )
46
+ else
47
+ gem 'beaker' , '>= 3.9.0' , :require => false
46
48
end
47
49
if beaker_rspec_version = ENV [ 'BEAKER_RSPEC_VERSION' ]
48
50
gem 'beaker-rspec' , *location_for ( beaker_rspec_version )
Original file line number Diff line number Diff line change 1
1
require 'puppetlabs_spec_helper/rake_tasks'
2
- require 'puppet_blacksmith/rake_tasks'
3
- require 'voxpupuli/release/rake_tasks'
4
- require 'puppet-strings/tasks'
2
+
3
+ # load optional tasks for releases
4
+ # only available if gem group releases is installed
5
+ begin
6
+ require 'puppet_blacksmith/rake_tasks'
7
+ require 'voxpupuli/release/rake_tasks'
8
+ require 'puppet-strings/tasks'
9
+ rescue LoadError
10
+ end
5
11
6
12
PuppetLint . configuration . log_format = '%{path}:%{line}:%{check}:%{KIND}:%{message}'
7
13
PuppetLint . configuration . fail_on_warnings = true
Original file line number Diff line number Diff line change 10
10
docker_preserve_image : true
11
11
docker_cmd : ' ["/sbin/init"]'
12
12
docker_image_commands :
13
- - ' echo deb http://ftp.debian.org/debian wheezy-backports main >> /etc/apt/sources.list'
14
13
- ' apt-get update && apt-get install -y cron locales-all net-tools wget'
15
14
CONFIG :
16
15
trace_limit : 200
Original file line number Diff line number Diff line change 10
10
docker_preserve_image : true
11
11
docker_cmd : ' ["/sbin/init"]'
12
12
docker_image_commands :
13
- - ' echo deb http://ftp.debian.org/debian jessie-backports main >> /etc/apt/sources.list'
14
13
- ' apt-get update && apt-get install -y cron locales-all net-tools wget'
15
14
- ' rm -f /usr/sbin/policy-rc.d'
16
15
- ' systemctl mask getty@tty1.service getty-static.service'
You can’t perform that action at this time.
0 commit comments