File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ docker run \
132
132
--volume " ${repo} :/usr/src/app" \
133
133
--rm \
134
134
" ${product} " \
135
- bundle exec rake unified_release :${TASK} [" ${args_string} " ]
135
+ bundle exec rake automation :${TASK} [" ${args_string} " ]
136
136
137
137
# ------------------------------------------------------- #
138
138
# Post Command tasks & checks
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ RELEASE_TOGETHER = [
70
70
CERT_DIR = ENV [ 'CERT_DIR' ] || '.ci/certs'
71
71
72
72
# Import build task after setting constants:
73
- import 'rake_tasks/unified_release_tasks .rake'
73
+ import 'rake_tasks/automation .rake'
74
74
75
75
# TODO: Figure out "bundle exec or not"
76
76
# subprojects.each { |project| $LOAD_PATH.unshift CURRENT_PATH.join(project, "lib").to_s }
Original file line number Diff line number Diff line change 18
18
require 'fileutils'
19
19
require_relative '../elasticsearch/lib/elasticsearch/version'
20
20
21
- namespace :unified_release do
21
+ namespace :automation do
22
22
desc 'Build gem releases and snapshots'
23
23
task :build_gems do |_ , args |
24
24
output_dir = File . expand_path ( __dir__ + '/../build' )
@@ -53,7 +53,7 @@ namespace :unified_release do
53
53
54
54
Example:
55
55
56
- $ rake unified_release :bump[42.0.0]
56
+ $ rake automation :bump[42.0.0]
57
57
DESC
58
58
task :bump , :version do |_ , args |
59
59
abort ( '[!] Required argument [version] missing' ) unless ( version = args [ :version ] )
@@ -96,7 +96,7 @@ namespace :unified_release do
96
96
97
97
Example:
98
98
99
- $ rake unified_release :bump_matrix[42.0.0]
99
+ $ rake automation :bump_matrix[42.0.0]
100
100
DESC
101
101
task :bumpmatrix , :version do |_ , args |
102
102
abort ( '[!] Required argument [version] missing' ) unless ( version = args [ :version ] )
You can’t perform that action at this time.
0 commit comments