Skip to content

Commit 4d90ec2

Browse files
authoredNov 17, 2017
Merge pull request #422 from voxpupuli/modulesync
modulesync 1.5.0
2 parents 15ec236 + ab4c02c commit 4d90ec2

File tree

7 files changed

+26
-12
lines changed

7 files changed

+26
-12
lines changed
 

‎.msync.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
modulesync_config_version: '1.3.0'
1+
modulesync_config_version: '1.5.0'

‎.rubocop.yml

+3
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ Style/HashSyntax:
4646
Style/RedundantReturn:
4747
Enabled: True
4848

49+
Style/EndOfLine:
50+
Enabled: False
51+
4952
Lint/AmbiguousOperator:
5053
Enabled: True
5154

‎.travis.yml

+10-5
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,28 @@ matrix:
1616
fast_finish: true
1717
include:
1818
- 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
2121
- rvm: 2.4.2
22-
bundler_args: --without system_tests development
22+
bundler_args: --without system_tests development release
2323
env: PUPPET_VERSION="~> 5.0" CHECK=test_with_coveralls
2424
- rvm: 2.4.2
25-
bundler_args: --without system_tests development
25+
bundler_args: --without system_tests development release
2626
env: PUPPET_VERSION="~> 5.0" CHECK=rubocop
2727
- rvm: 2.4.2
28-
bundler_args: --without system_tests development
28+
bundler_args: --without system_tests development release
2929
env: PUPPET_VERSION="~> 5.0" CHECK=build DEPLOY_TO_FORGE=yes
3030
branches:
3131
only:
3232
- master
3333
- /^v\d/
3434
notifications:
3535
email: false
36+
irc:
37+
on_success: always
38+
on_failure: always
39+
channels:
40+
- "chat.freenode.org#voxpupuli-notifications"
3641
deploy:
3742
provider: puppetforge
3843
user: puppet

‎Gemfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def location_for(place, fake_version = nil)
1111
end
1212

1313
group :test do
14-
gem 'puppetlabs_spec_helper', '~> 2.4.0', :require => false
14+
gem 'puppetlabs_spec_helper', '~> 2.5.0', :require => false
1515
gem 'rspec-puppet', '~> 2.5', :require => false
1616
gem 'rspec-puppet-facts', :require => false
1717
gem 'rspec-puppet-utils', :require => false
@@ -43,6 +43,8 @@ group :system_tests do
4343
gem 'winrm', :require => false
4444
if beaker_version = ENV['BEAKER_VERSION']
4545
gem 'beaker', *location_for(beaker_version)
46+
else
47+
gem 'beaker', '>= 3.9.0', :require => false
4648
end
4749
if beaker_rspec_version = ENV['BEAKER_RSPEC_VERSION']
4850
gem 'beaker-rspec', *location_for(beaker_rspec_version)

‎Rakefile

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
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
511

612
PuppetLint.configuration.log_format = '%{path}:%{line}:%{check}:%{KIND}:%{message}'
713
PuppetLint.configuration.fail_on_warnings = true

‎spec/acceptance/nodesets/docker/debian-7.yml

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ HOSTS:
1010
docker_preserve_image: true
1111
docker_cmd: '["/sbin/init"]'
1212
docker_image_commands:
13-
- 'echo deb http://ftp.debian.org/debian wheezy-backports main >> /etc/apt/sources.list'
1413
- 'apt-get update && apt-get install -y cron locales-all net-tools wget'
1514
CONFIG:
1615
trace_limit: 200

‎spec/acceptance/nodesets/docker/debian-8.yml

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ HOSTS:
1010
docker_preserve_image: true
1111
docker_cmd: '["/sbin/init"]'
1212
docker_image_commands:
13-
- 'echo deb http://ftp.debian.org/debian jessie-backports main >> /etc/apt/sources.list'
1413
- 'apt-get update && apt-get install -y cron locales-all net-tools wget'
1514
- 'rm -f /usr/sbin/policy-rc.d'
1615
- 'systemctl mask getty@tty1.service getty-static.service'

0 commit comments

Comments
 (0)
Please sign in to comment.