debian-mirror-gitlab/qa/tasks/knapsack.rake

54 lines
1.8 KiB
Ruby
Raw Normal View History

2022-01-26 12:08:38 +05:30
# frozen_string_literal: true
namespace :knapsack do
2022-07-16 23:28:13 +05:30
desc "Run tests with knapsack runner"
task :rspec, [:rspec_args] do |_, args|
rspec_args = args[:rspec_args]&.split(' ') || []
unless QA::Runtime::Env.knapsack?
QA::Runtime::Logger.info("This environment is not compatible with parallel knapsack execution!")
QA::Runtime::Logger.info("Falling back to standard execution")
exit RSpec::Core::Runner.run([*rspec_args, "qa/specs/features"])
end
exit QA::Specs::KnapsackRunner.run(rspec_args)
end
2022-08-27 11:52:29 +05:30
desc "Download latest knapsack reports for parallel jobs"
task :download, [:stage_name] do |_, args|
test_stage_name = args[:stage_name]
2022-07-23 23:45:48 +05:30
2022-08-27 11:52:29 +05:30
# QA_KNAPSACK_REPORTS remains for changes to be backwards compatible
# TODO: remove and only use automated detection once changes are merged
unless ENV["QA_KNAPSACK_REPORTS"] || test_stage_name
QA::Runtime::Logger.warn("Missing QA_KNAPSACK_REPORTS environment variable or test stage name for autodetection")
next
end
reports = if test_stage_name
QA::Support::ParallelPipelineJobs
.fetch(stage_name: test_stage_name, access_token: ENV["QA_GITLAB_CI_TOKEN"])
.map { |job| job.tr(":", "-") }
else
ENV["QA_KNAPSACK_REPORTS"].split(",")
end
reports.each do |report_name|
2022-07-23 23:45:48 +05:30
QA::Support::KnapsackReport.new(report_name).download_report
rescue StandardError => e
QA::Runtime::Logger.error(e)
end
2022-01-26 12:08:38 +05:30
end
desc "Merge and upload knapsack report"
2022-03-02 08:16:31 +05:30
task :upload, [:glob] do |_task, args|
2022-07-16 23:28:13 +05:30
QA::Support::KnapsackReport.upload_report(args[:glob])
2022-03-02 08:16:31 +05:30
end
desc "Report long running spec files"
task :notify_long_running_specs do
2022-07-23 23:45:48 +05:30
QA::Tools::LongRunningSpecReporter.execute
2022-01-26 12:08:38 +05:30
end
end