forked from voxpupuli/modulesync_config
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_defaults.yml
109 lines (109 loc) · 3.37 KB
/
config_defaults.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
---
.travis.yml:
docker_sets:
docker_defaults:
# values will replace @@SET@@ with the docker_sets' value
rvm: 2.5.1
sudo: required
dist: trusty
services: docker
env: PUPPET_INSTALL_TYPE=agent BEAKER_IS_PE=no BEAKER_PUPPET_COLLECTION=puppet5 BEAKER_debug=true BEAKER_setfile=@@SET@@{hypervisor=docker} CHECK=beaker
bundler_args: --without development release
includes:
- rvm: 2.1.9
env: PUPPET_VERSION="~> 4.0" CHECK=test PARALLEL_TEST_PROCESSORS=12
bundler_args: --without system_tests development release
- rvm: 2.4.4
env: PUPPET_VERSION="~> 5.0" CHECK=test
bundler_args: --without system_tests development release
- rvm: 2.5.1
env: PUPPET_VERSION="~> 5.0" CHECK=test_with_coveralls
bundler_args: --without system_tests development release
- rvm: 2.4.4
env: PUPPET_VERSION="~> 5.0" CHECK=rubocop
bundler_args: --without system_tests development release
- rvm: 2.5.1
env: PUPPET_VERSION="~> 5.0" CHECK=build DEPLOY_TO_FORGE=yes
bundler_args: --without system_tests development release
Gemfile:
required:
':test':
- gem: puppetlabs_spec_helper
version: '~> 2.6'
- gem: rspec-puppet
version: '~> 2.5'
- gem: rspec-puppet-facts
- gem: rspec-puppet-utils
- gem: puppet-lint-leading_zero-check
- gem: puppet-lint-trailing_comma-check
- gem: puppet-lint-version_comparison-check
- gem: puppet-lint-classes_and_types_beginning_with_digits-check
- gem: puppet-lint-unquoted_string-check
- gem: puppet-lint-variable_contains_upcase
- gem: metadata-json-lint
- gem: redcarpet
- gem: rubocop
version: '~> 0.49.1'
ruby-operator: '>='
ruby-version: '2.3.0'
- gem: rubocop-rspec
version: '~> 1.15.0'
ruby-operator: '>='
ruby-version: '2.3.0'
- gem: mocha
version: '~> 1.4.0'
- gem: coveralls
- gem: simplecov-console
- gem: rack
version: '~> 1.0'
ruby-operator: '<'
ruby-version: '2.2.2'
- gem: parallel_tests
':development':
- gem: travis
- gem: travis-lint
- gem: guard-rake
- gem: overcommit
version: '>= 0.39.1'
':system_tests':
- gem: winrm
- gem: beaker-rspec
version: '>= 6'
- gem: serverspec
- gem: beaker-hostgenerator
version: '>= 1.1.10'
- gem: beaker-docker
- gem: beaker-puppet
- gem: beaker-puppet_install_helper
- gem: beaker-module_install_helper
require: false
- gem: rbnacl
version: '>= 4'
ruby-operator: '>='
ruby-version: '2.2.6'
- gem: rbnacl-libsodium
ruby-operator: '>='
ruby-version: '2.2.6'
- gem: bcrypt_pbkdf
':release':
- gem: github_changelog_generator
git: https://github.com/skywinder/github-changelog-generator
ruby-operator: '>='
ruby-version: '2.2.2'
- gem: puppet-blacksmith
- gem: voxpupuli-release
git: https://github.com/voxpupuli/voxpupuli-release-gem
- gem: puppet-strings
version: '>= 1.0'
Rakefile:
default_disabled_lint_checks:
- 'relative'
- 'disable_140chars'
- 'disable_class_inherits_from_params_class'
- 'disable_documentation'
- 'disable_single_quote_string_with_variables'
default_enabled_rake_targets:
- 'metadata_lint'
- 'release_checks'
...
# vim: syntax=yaml