Sha256: dbe8051152855a94fbde040f2e60d2fe3de9d67f5138f08c1dc09711aa13210d
Contents?: true
Size: 945 Bytes
Versions: 3
Compression:
Stored size: 945 Bytes
Contents
# frozen_string_literal: true module Buildkite module Pipelines module Steps class Command < Abstract # Do NOT sort this list. The order here is carried over to the YAML output. # The order specified here was deliberate. attribute :label attribute :key attribute :command, append: true attribute :skip attribute :if, as: :condition attribute :depends_on, append: true attribute :allow_dependency_failure attribute :parallelism attribute :branches attribute :artifact_paths attribute :agents attribute :concurrency attribute :concurrency_group attribute :retry attribute :env attribute :soft_fail, append: true attribute :timeout_in_minutes attribute :plugins, append: true attribute :priority attribute :cancel_on_build_failing end end end end
Version data entries
3 entries across 3 versions & 1 rubygems