89910f19ce
Update the CentOS 6 CI box from 6.4 to 6.5. This is needed to support RDO which in turn is a requirement for the rgw/keystone CI tests. Add CentOS 7 and Ubuntu 14.04 boxes so we can CI test them as a basis to add support for them. Because rspec-system and rspec-system-puppet are deprecated in favor of beaker add dependencies on a fork to provide the necessary features. This is temporary until all tests are switched to beaker. Change-Id: I0ef014ff73a431a691fc25c35f6461fec614c337
17 lines
530 B
Ruby
17 lines
530 B
Ruby
# vim:ft=ruby
|
|
source 'https://rubygems.org'
|
|
|
|
group :development, :test do
|
|
gem 'puppetlabs_spec_helper', :require => false
|
|
gem 'puppet-lint', '~> 0.3.2'
|
|
gem 'rspec-system', :git => 'https://github.com/aldavud/rspec-system.git', :branch => 'master'
|
|
gem 'rspec-system-puppet', :git => 'https://github.com/aldavud/rspec-system-puppet.git', :branch => 'master'
|
|
gem 'rspec', '< 2.99'
|
|
end
|
|
|
|
if puppetversion = ENV['PUPPET_GEM_VERSION']
|
|
gem 'puppet', puppetversion, :require => false
|
|
else
|
|
gem 'puppet', :require => false
|
|
end
|