-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update from xaque208 modulesync_config
- Loading branch information
Showing
24 changed files
with
443 additions
and
106 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
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 +1 @@ | ||
modulesync_config_version: '0.19.3' | ||
modulesync_config_version: '2.5.0' |
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 +1,21 @@ | ||
docs/ | ||
pkg/ | ||
Gemfile.lock | ||
Gemfile.local | ||
vendor/ | ||
.vendor/ | ||
spec/fixtures/manifests/ | ||
spec/fixtures/modules/ | ||
.vagrant/ | ||
.bundle/ | ||
.ruby-version | ||
coverage/ | ||
log/ | ||
.idea/ | ||
.dependencies/ | ||
.librarian/ | ||
Puppetfile.lock | ||
*.iml | ||
.*.sw? | ||
.yardoc/ | ||
Dockerfile |
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 @@ | ||
--format progress |
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 |
---|---|---|
@@ -1,32 +1,47 @@ | ||
--- | ||
sudo: false | ||
dist: trusty | ||
dist: xenial | ||
language: ruby | ||
cache: bundler | ||
bundler_args: --without system_tests development | ||
before_install: | ||
- bundle -v | ||
- rm Gemfile.lock || true | ||
- gem update --system | ||
- gem update bundler | ||
- gem --version | ||
- bundle -v | ||
- 'rm -f Gemfile.lock' | ||
- 'gem update --system' | ||
- 'gem install bundler' | ||
script: | ||
- 'bundle exec rake $CHECK' | ||
matrix: | ||
fast_finish: true | ||
include: | ||
- rvm: 2.4.5 | ||
- rvm: 2.4.4 | ||
bundler_args: --without system_tests development release | ||
env: PUPPET_VERSION="~> 5.0" CHECK=test | ||
- rvm: 2.5.3 | ||
env: PUPPET_VERSION="~> 6.0" CHECK=test | ||
bundler_args: --without system_tests development release | ||
env: PUPPET_VERSION="~> 6.0" CHECK=test_with_coveralls | ||
- rvm: 2.5.3 | ||
bundler_args: --without system_tests development release | ||
env: PUPPET_VERSION="~> 6.0" CHECK=rubocop | ||
- rvm: 2.4.5 | ||
env: PUPPET_VERSION="~> 5.0" CHECK=build | ||
- rvm: 2.4.4 | ||
bundler_args: --without system_tests development release | ||
env: PUPPET_VERSION="~> 5.0" CHECK=build DEPLOY_TO_FORGE=yes | ||
branches: | ||
only: | ||
- master | ||
- /^v\d/ | ||
notifications: | ||
email: false | ||
irc: | ||
on_success: false | ||
on_failure: false | ||
channels: | ||
- "chat.freenode.org#voxpupuli-notifications" | ||
deploy: | ||
provider: puppetforge | ||
user: puppet | ||
password: | ||
secure: "" | ||
on: | ||
tags: true | ||
# all_branches is required to use tags | ||
all_branches: true | ||
# Only publish the build marked with "DEPLOY_TO_FORGE" | ||
condition: "$DEPLOY_TO_FORGE = yes" |
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
Oops, something went wrong.