mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 22:57:16 -04:00
parent
9a1bfcea94
commit
df4ac4d12e
2 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@ namespace :qa do
|
||||||
desc "Bootstrap all the VM's used for this tests"
|
desc "Bootstrap all the VM's used for this tests"
|
||||||
task :setup, :platform do |t, args|
|
task :setup, :platform do |t, args|
|
||||||
config = PlatformConfig.new
|
config = PlatformConfig.new
|
||||||
experimental = (ENV['LS_QA_EXPERIMENTAL'].to_s.downcase || "false") == "true"
|
experimental = (ENV['LS_QA_EXPERIMENTAL_OS'].to_s.downcase || "false") == "true"
|
||||||
machines = config.select_names_for(args[:platform], {"experimental" => experimental})
|
machines = config.select_names_for(args[:platform], {"experimental" => experimental})
|
||||||
|
|
||||||
puts user_feedback_string_for("bootstraping", args[:platform], machines, {"experimental" => experimental})
|
puts user_feedback_string_for("bootstraping", args[:platform], machines, {"experimental" => experimental})
|
||||||
|
@ -42,7 +42,7 @@ namespace :qa do
|
||||||
desc "Halt all VM's involved in the acceptance test round"
|
desc "Halt all VM's involved in the acceptance test round"
|
||||||
task :halt, :platform do |t, args|
|
task :halt, :platform do |t, args|
|
||||||
config = PlatformConfig.new
|
config = PlatformConfig.new
|
||||||
experimental = (ENV['LS_QA_EXPERIMENTAL'].to_s.downcase || "false") == "true"
|
experimental = (ENV['LS_QA_EXPERIMENTAL_OS'].to_s.downcase || "false") == "true"
|
||||||
machines = config.select_names_for(args[:platform], {"experimental" => experimental})
|
machines = config.select_names_for(args[:platform], {"experimental" => experimental})
|
||||||
|
|
||||||
puts user_feedback_string_for("halting", args[:platform], machines, {"experimental" => experimental})
|
puts user_feedback_string_for("halting", args[:platform], machines, {"experimental" => experimental})
|
||||||
|
|
|
@ -15,7 +15,7 @@ RSpec.configure do |c|
|
||||||
end
|
end
|
||||||
|
|
||||||
platform = ENV['LS_TEST_PLATFORM'] || 'all'
|
platform = ENV['LS_TEST_PLATFORM'] || 'all'
|
||||||
experimental = (ENV['LS_QA_EXPERIMENTAL'].to_s.downcase || "false") == "true"
|
experimental = (ENV['LS_QA_EXPERIMENTAL_OS'].to_s.downcase || "false") == "true"
|
||||||
|
|
||||||
config = PlatformConfig.new
|
config = PlatformConfig.new
|
||||||
LOGSTASH_LATEST_VERSION = config.latest
|
LOGSTASH_LATEST_VERSION = config.latest
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue