Skip to content

Commit 7055cd0

Browse files
authored
Merge pull request #4 from eugeneius/s_trunk_master_g
Use master-nightly-bionic Ruby Docker image tag
2 parents bf9f73e + a6773ff commit 7055cd0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pipeline-generate

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ end
7070

7171
ONE_RUBY = (RUBIES - SOFT_FAIL).last || RUBIES.last
7272

73-
TRUNK_RUBY = "rubylang/ruby:trunk-nightly-bionic"
74-
RUBIES << TRUNK_RUBY
75-
SOFT_FAIL << TRUNK_RUBY
73+
MASTER_RUBY = "rubylang/ruby:master-nightly-bionic"
74+
RUBIES << MASTER_RUBY
75+
SOFT_FAIL << MASTER_RUBY
7676

7777

7878
STEPS = []
@@ -97,7 +97,7 @@ def step_for(subdirectory, rake_task, ruby: nil, service: "default")
9797
label = +"#{subdirectory} #{rake_task.sub(/[:_]test|test:/, "")}"
9898
label.sub!(/ test/, "")
9999
if ruby
100-
short_ruby = ruby == TRUNK_RUBY ? "trunk" : ruby.sub(/^ruby:|:latest$/, "")
100+
short_ruby = ruby == MASTER_RUBY ? "master" : ruby.sub(/^ruby:|:latest$/, "")
101101
label << " (#{short_ruby})"
102102
end
103103

0 commit comments

Comments
 (0)