Class: KnapsackPro::Client::API::V1::Queues

Inherits:
Base
  • Object
show all
Defined in:
lib/knapsack_pro/client/api/v1/queues.rb

Class Method Summary collapse

Class Method Details

.queue(args) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/knapsack_pro/client/api/v1/queues.rb', line 7

def queue(args)
  action_class.new(
    endpoint_path: '/v1/queues/queue',
    http_method: :post,
    request_hash: {
      :fixed_queue_split => KnapsackPro::Config::Env.fixed_queue_split,
      :can_initialize_queue => args.fetch(:can_initialize_queue),
      :commit_hash => args.fetch(:commit_hash),
      :branch => args.fetch(:branch),
      :node_total => args.fetch(:node_total),
      :node_index => args.fetch(:node_index),
      :node_build_id => KnapsackPro::Config::Env.ci_node_build_id,
      :test_files => args.fetch(:test_files)
    }
  )
end