Sha256: b4379e522a6c86f53985d7d62f1bcaf399c91362ee49835fcd70ddeb40b9c76f
Contents?: true
Size: 1.72 KB
Versions: 1
Compression:
Stored size: 1.72 KB
Contents
module Paraduct require "thread/pool" class ParallelRunner # run script with arguments # @param script [String, Array<String>] script file, script(s) # @param product_variables [Array<Hash{String => String}>] # @return [Paraduct::TestResponse] def self.perform_all(script, product_variables) test_response = Paraduct::TestResponse.new base_job_dir = Paraduct.config.work_dir FileUtils.mkdir_p(base_job_dir) unless base_job_dir.exist? Paraduct.logger.info <<-EOS ====================================================== START matrix test EOS pool = Thread.pool(Paraduct.config.max_threads) begin product_variables.each_with_index do |params, index| runner = Paraduct::Runner.new( script: script, params: params, base_job_dir: base_job_dir, job_id: index + 1, ) runner.logger.info "[START] params: #{runner.formatted_params}" pool.process do runner.setup_dir begin stdout = runner.perform successful = true rescue Paraduct::Errors::ProcessError => e stdout = e.message successful = false end runner.logger.info "[END] params: #{runner.formatted_params}" test_response.jobs_push( job_name: runner.job_name, params: runner.params, formatted_params: runner.formatted_params, successful: successful, stdout: stdout, ) end end ensure pool.shutdown end test_response end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
paraduct-0.0.1.beta11 | lib/paraduct/parallel_runner.rb |