forked from voxpupuli/puppet-jenkins
-
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.
Merge remote-tracking branch 'origin/recovery'
Conflicts: Modulefile
- Loading branch information
Showing
36 changed files
with
776 additions
and
353 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
language: ruby | ||
bundler_args: --without development | ||
script: "bundle exec rake spec SPEC_OPTS='--format documentation'" | ||
rvm: | ||
- 1.8.7 | ||
- 1.9.3 | ||
- 2.0.0 | ||
- ruby-head | ||
script: | ||
- "rake lint" | ||
- "rake spec SPEC_OPTS='--format documentation'" | ||
env: | ||
- PUPPET_VERSION="~> 2.7.0" | ||
- PUPPET_VERSION="~> 3.0.0" | ||
- PUPPET_VERSION="~> 3.1.0" | ||
- PUPPET_VERSION="~> 3.2.0" | ||
matrix: | ||
exclude: | ||
- rvm: 1.9.3 | ||
env: PUPPET_VERSION="~> 2.7.0" | ||
- rvm: 2.0.0 | ||
env: PUPPET_VERSION="~> 2.7.0" | ||
- rvm: 2.0.0 | ||
env: PUPPET_VERSION="~> 3.0.0" | ||
- rvm: 2.0.0 | ||
env: PUPPET_VERSION="~> 3.1.0" | ||
- rvm: ruby-head | ||
env: PUPPET_VERSION="~> 2.7.0" | ||
- rvm: ruby-head | ||
env: PUPPET_VERSION="~> 3.0.0" | ||
- rvm: ruby-head | ||
env: PUPPET_VERSION="~> 3.1.0" | ||
allow_failures: | ||
- rvm: ruby-head | ||
notifications: | ||
email: 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,15 +1,8 @@ | ||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
gem 'rake' | ||
gem 'puppet', '~> 2.7' | ||
gem 'puppet-module' | ||
|
||
group :development do | ||
gem 'cucumber' | ||
gem 'puppet-lint' | ||
gem 'puppetlabs_spec_helper' | ||
gem 'rspec' | ||
gem 'rspec-puppet' | ||
gem 'blimpy' | ||
gem 'vagrant' | ||
end | ||
gem 'puppet-lint' | ||
gem 'rspec-puppet' | ||
gem 'puppetlabs_spec_helper' | ||
gem 'puppet-syntax' | ||
gem 'puppet', ENV['PUPPET_VERSION'] || '~> 3.2.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,12 +1,14 @@ | ||
name 'rtyler-jenkins' | ||
version '0.3.0' | ||
source 'git://github.com/rtyler/puppet-jenkins.git' | ||
source 'git://github.com/jenkinsci/puppet-jenkins.git' | ||
author 'R. Tyler Croy <[email protected]>' | ||
license 'Apache 2.0' | ||
summary 'Manage the Jenkins continuous integration service with Puppet' | ||
description 'Manage the Jenkins continuous integration service with Puppet' | ||
project_page 'https://github.com/rtyler/puppet-jenkins' | ||
project_page 'https://github.com/jenkinsci/puppet-jenkins' | ||
|
||
## Add dependencies, if any: | ||
dependency 'puppetlabs/stdlib', '>= 2.0.0' | ||
dependency 'puppetlabs/apt', '>= 0.0.3' | ||
dependency 'puppetlabs/java', '>= 1.0.1' | ||
dependency 'darin/zypprepo', '>= 1.0.1' |
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.