buildkite-builder 4.2.3 → 4.2.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f78027cb639faf03eea36c6c84b8aea50025af24f1e5c09a389b5203e431d008
4
- data.tar.gz: 5723079be24c95035c591ca9460a1bea6d2316fd587399ccd16b0fa829ae5116
3
+ metadata.gz: b5dd3fd038d03857cd071cc0965ddfd42dfe609e177473dfaa66ff5c0bcf0b29
4
+ data.tar.gz: 328240a324e0282e812e60b8d39aa54c1ace83df2a922982a7ad955676ed7307
5
5
  SHA512:
6
- metadata.gz: 293dc52291c612d517d834c7a696c3d4d68ec51ea13269751ac3ff4efcc885c0a9fb2fb77e6838fa891c9cd746c2971e65f2ee0d728a2f849349552006ac62e2
7
- data.tar.gz: ef28cb83020db6815f0f4fe8c6eafffd202a44e8f2f3907a8eebf20546448b4ba8cb57925bd0396b33b2dd624bb872afe50a86ad7935b47307b63a04e1db999c
6
+ metadata.gz: f48b73fce895f07de3452a6f90c12d1935aeeae5e3dd517a0ac39499326bd9b0c9faa778bd40378db1e4f792650314787dc8bfb93dfd4a012c8aa5a3fa5471b3
7
+ data.tar.gz: 94da769c2a6d141ccd955f8575c3b6ca970831038ae0102e161348c7edfc2805089372bea204ffff078a7ab8010bea7404be8376a2cef3262fe4928d5d2e6c32
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ### 4.2.5
2
+ * Add `skip` attributes to Block and Input steps.
3
+
4
+ ### 4.2.4
5
+ * Add more group step attributes as listed in https://buildkite.com/docs/pipelines/group-step#group-step-attributes
6
+
1
7
  ### 4.2.3
2
8
  * Simplify pipeline upload duplication check
3
9
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.2.3
1
+ 4.2.5
@@ -9,6 +9,7 @@ module Buildkite
9
9
  attribute :block
10
10
  attribute :key
11
11
  attribute :prompt
12
+ attribute :skip
12
13
  attribute :if, as: :condition
13
14
  attribute :depends_on, append: true
14
15
  attribute :allow_dependency_failure
@@ -6,7 +6,10 @@ module Buildkite
6
6
  class Group < Abstract
7
7
  attribute :label
8
8
  attribute :key
9
+ attribute :skip
10
+ attribute :if, as: :condition
9
11
  attribute :depends_on, append: true
12
+ attribute :allow_dependency_failure
10
13
 
11
14
  attr_reader :steps
12
15
 
@@ -9,6 +9,7 @@ module Buildkite
9
9
  attribute :input
10
10
  attribute :key
11
11
  attribute :prompt
12
+ attribute :skip
12
13
  attribute :if, as: :condition
13
14
  attribute :depends_on, append: true
14
15
  attribute :allow_dependency_failure
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buildkite-builder
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.3
4
+ version: 4.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ngan Pham
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2023-06-28 00:00:00.000000000 Z
12
+ date: 2023-09-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rainbow
@@ -174,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
174
  - !ruby/object:Gem::Version
175
175
  version: '0'
176
176
  requirements: []
177
- rubygems_version: 3.4.10
177
+ rubygems_version: 3.3.26
178
178
  signing_key:
179
179
  specification_version: 4
180
180
  summary: A gem for programmatically creating Buildkite pipelines.