Skip to content

Commit

Permalink
Merge pull request #64 from zzak/fix-63
Browse files Browse the repository at this point in the history
Remove Gemfile.lock before installing rack from git
  • Loading branch information
guilleiguaran authored Jul 27, 2023
2 parents 13c910f + 882127a commit b7a8e9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipeline-generate
Original file line number Diff line number Diff line change
Expand Up @@ -331,13 +331,13 @@ step_for("railties", "test", service: "railties", pre_steps: ["bundle install"])
x["env"]["RACK"] = "~> 2.0"
end

step_for("actionpack", "test", service: "default", pre_steps: ["bundle install"]) do |x|
step_for("actionpack", "test", service: "default", pre_steps: ["rm Gemfile.lock", "bundle install"]) do |x|
x["label"] += " [rack-head]"
x["env"]["RACK"] = "head"
x["soft_fail"] = true
end

step_for("railties", "test", service: "railties", pre_steps: ["bundle install"]) do |x|
step_for("railties", "test", service: "railties", pre_steps: ["rm Gemfile.lock", "bundle install"]) do |x|
x["parallelism"] = 12 if REPO_ROOT.join("railties/Rakefile").read.include?("BUILDKITE_PARALLEL")
x["label"] += " [rack-head]"
x["env"]["RACK"] = "head"
Expand Down

0 comments on commit b7a8e9e

Please sign in to comment.