forked from puppetlabs/puppetlabs-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
313 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
# This file is generated by ModuleSync, do not edit. | ||
*.iml | ||
.*.sw[op] | ||
.DS_Store | ||
.bundle/ | ||
.idea/ | ||
.metadata | ||
.vagrant/ | ||
.yardoc | ||
.yardwarns | ||
Gemfile.local | ||
Gemfile.lock | ||
bin/ | ||
coverage/ | ||
doc/ | ||
junit/ | ||
log/ | ||
pkg/ | ||
spec/fixtures/manifests/ | ||
spec/fixtures/modules/ | ||
tmp/ | ||
vendor/ | ||
*.iml | ||
/.bundle/ | ||
/.idea/ | ||
/.vagrant/ | ||
/coverage/ | ||
/bin/ | ||
/doc/ | ||
/Gemfile.local | ||
/Gemfile.lock | ||
/junit/ | ||
/log/ | ||
/log/ | ||
/pkg/ | ||
/spec/fixtures/manifests/ | ||
/spec/fixtures/modules/ | ||
/tmp/ | ||
/vendor/ | ||
/convert_report.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
GetText/DecorateString: | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,69 @@ | ||
--- | ||
appveyor.yml: | ||
delete: true | ||
spec/spec_helper.rb: | ||
allow_deprecations: true | ||
environment: | ||
PUPPET_GEM_VERSION: "~> 4.0" | ||
matrix: | ||
- RUBY_VERSION: 24-x64 | ||
CHECK: "syntax lint" | ||
- RUBY_VERSION: 24-x64 | ||
CHECK: metadata_lint | ||
- RUBY_VERSION: 24-x64 | ||
CHECK: rubocop | ||
|
||
.travis.yml: | ||
bundle_args: --without system_tests | ||
docker_sets: | ||
- set: docker/centos-7 | ||
options: | ||
- set: docker/ubuntu-14.04 | ||
options: | ||
docker_defaults: | ||
bundler_args: "" | ||
secure: "" | ||
branches: | ||
- release | ||
extras: | ||
- rvm: 2.1.9 | ||
script: bundle exec rake rubocop | ||
- rvm: 2.1.9 | ||
script: "\"bundle exec rake release_checks\"" | ||
|
||
Gemfile: | ||
required: | ||
':system_tests': | ||
- gem: 'puppet-module-posix-system-r#{minor_version}' | ||
platforms: ruby | ||
- gem: 'puppet-module-win-system-r#{minor_version}' | ||
platforms: | ||
- mswin | ||
- mingw | ||
- x64_mingw | ||
- gem: beaker | ||
version: '~> 3.13' | ||
from_env: BEAKER_VERSION | ||
- gem: beaker-abs | ||
from_env: BEAKER_ABS_VERSION | ||
version: '~> 0.1' | ||
- gem: beaker-pe | ||
- gem: beaker-hostgenerator | ||
from_env: BEAKER_HOSTGENERATOR_VERSION | ||
- gem: beaker-rspec | ||
from_env: BEAKER_RSPEC_VERSION | ||
':development': | ||
- gem: puppet-blacksmith | ||
version: '~> 3.4' | ||
- gem: puppet-lint-i18n | ||
|
||
Rakefile: | ||
requires: | ||
- puppet_blacksmith/rake_tasks | ||
- puppet_pot_generator/rake_tasks | ||
|
||
spec/spec_helper.rb: | ||
spec_overrides: | ||
- "require 'spec_helper_local'" | ||
|
||
.rubocop.yml: | ||
unmanaged: true | ||
.rubocop_todo.yml: | ||
unmanaged: true | ||
default_configs: | ||
inherit_from: .rubocop_todo.yml | ||
require: | ||
- rubocop-i18n | ||
- rubocop-rspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,65 @@ | ||
#This file is generated by ModuleSync, do not edit. | ||
--- | ||
sudo: false | ||
dist: trusty | ||
language: ruby | ||
cache: bundler | ||
script: "bundle exec rake release_checks" | ||
before_install: | ||
- bundle -v | ||
- rm Gemfile.lock || true | ||
- gem update --system | ||
- gem update bundler | ||
- gem --version | ||
- bundle -v | ||
script: | ||
- 'bundle exec rake $CHECK' | ||
bundler_args: --without system_tests | ||
rvm: | ||
- 2.4.1 | ||
- 2.1.9 | ||
env: | ||
- PUPPET_GEM_VERSION="~> 4.0" CHECK=spec | ||
- PUPPET_GEM_VERSION="~> 5.0" CHECK=spec | ||
matrix: | ||
fast_finish: true | ||
include: | ||
- rvm: 2.3.1 | ||
dist: trusty | ||
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/ubuntu-14.04 | ||
script: bundle exec rake beaker | ||
services: docker | ||
sudo: required | ||
- rvm: 2.3.1 | ||
dist: trusty | ||
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/centos-7 | ||
script: bundle exec rake beaker | ||
services: docker | ||
sudo: required | ||
- rvm: 2.4.1 | ||
bundler_args: --without system_tests | ||
env: PUPPET_GEM_VERSION="~> 5.0" | ||
- rvm: 2.1.9 | ||
bundler_args: --without system_tests | ||
env: PUPPET_GEM_VERSION="~> 4.0" | ||
- rvm: 2.1.9 | ||
script: bundle exec rake rubocop | ||
- | ||
bundler_args: | ||
dist: trusty | ||
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/centos-7 | ||
rvm: 2.4.1 | ||
script: bundle exec rake beaker | ||
services: docker | ||
sudo: required | ||
- | ||
bundler_args: | ||
dist: trusty | ||
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/ubuntu-14.04 | ||
rvm: 2.4.1 | ||
script: bundle exec rake beaker | ||
services: docker | ||
sudo: required | ||
- | ||
env: CHECK=rubocop | ||
- | ||
env: CHECK="syntax lint" | ||
- | ||
env: CHECK=metadata_lint | ||
- | ||
rvm: 2.1.9 | ||
script: "bundle exec rake release_checks" | ||
branches: | ||
only: | ||
- master | ||
- /^v\d/ | ||
- release | ||
notifications: | ||
email: false | ||
deploy: | ||
provider: puppetforge | ||
user: puppet | ||
password: | ||
secure: "" | ||
on: | ||
tags: true | ||
all_branches: true | ||
condition: "$DEPLOY_TO_FORGE = yes" |
Oops, something went wrong.