Skip to content

Commit 4ecbbe4

Browse files
committed
Updates bumpmatrix task to include Buildkite pipeline
1 parent 35c315b commit 4ecbbe4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

rake_tasks/unified_release_tasks.rake

+7-1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ namespace :unified_release do
111111
Bump the version in test matrixes:
112112
- .ci/test-matrix.yml
113113
- .github/workflows
114+
- .buildkite/pipeline.yml
114115
115116
Example:
116117
@@ -119,7 +120,12 @@ namespace :unified_release do
119120
task :bumpmatrix, :version do |_, args|
120121
abort('[!] Required argument [version] missing') unless (version = args[:version])
121122

122-
files = ['.ci/test-matrix.yml', '.github/workflows/main.yml', '.github/workflows/unified-release.yml']
123+
files = [
124+
'.ci/test-matrix.yml',
125+
'.github/workflows/main.yml',
126+
'.github/workflows/unified-release.yml',
127+
'.buildkite/pipeline.yml'
128+
]
123129
regexp = Regexp.new(/([0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,2}?+(-SNAPSHOT)?)/)
124130
files.each do |file|
125131
content = File.read(file)

0 commit comments

Comments
 (0)