(QENG-5344) Add beaker-abs for ci.next-i-fication

This is needed in order to work with always be scheduling on
CI.Next jenkins instances.
This commit is contained in:
Spencer McElmurry 2017-10-04 15:35:19 -07:00
parent cf19dc3cb8
commit dc25d9e631
2 changed files with 3 additions and 1 deletions

View File

@ -23,6 +23,7 @@ group :acceptance do
gem 'beaker', '< 3.0'
gem 'beaker-rspec'
gem 'beaker-hostgenerator'
gem 'beaker-abs'
end
group :development do

View File

@ -23,6 +23,7 @@ task :acceptance do
install_type = 'aio'
target = ENV['platform']
abs = if ENV['BEAKER_ABS'] then 'abs' else 'vmpooler' end
if ! target
STDERR.puts 'TEST_TARGET environment variable is not set'
STDERR.puts 'setting to default value of "centos7-64ma".'
@ -34,7 +35,7 @@ task :acceptance do
target += "{type=#{install_type}}"
end
cli = BeakerHostGenerator::CLI.new([target])
cli = BeakerHostGenerator::CLI.new([target, '--hypervisor', abs])
nodeset_dir = 'spec/acceptance/nodesets'
nodeset = "#{nodeset_dir}/#{target}.yml"
FileUtils.mkdir_p(nodeset_dir)