Skip to content

Commit

Permalink
Pin bundler to 2.3.6 to fix builder (elastic#13753)
Browse files Browse the repository at this point in the history
Build has been failing since the release of 2.3.7, this commit pins
bundler to 2.3.6 to get the build green again while the cause can be
investigated
  • Loading branch information
robbavey authored Feb 10, 2022
1 parent e9e7838 commit a15c977
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ tasks.register("installBundler") {
dependsOn assemblyDeps
outputs.files file("${projectDir}/vendor/bundle/jruby/2.5.0/bin/bundle")
doLast {
gem(projectDir, buildDir, "bundler", "~> 2", "${projectDir}/vendor/bundle/jruby/2.5.0")
gem(projectDir, buildDir, "bundler", "= 2.3.6", "${projectDir}/vendor/bundle/jruby/2.5.0")
}
}

Expand Down Expand Up @@ -435,7 +435,7 @@ tasks.register("installIntegrationTestBundler"){
dependsOn unpackTarDistribution
outputs.files file("${qaBundleBin}")
doLast {
gem(projectDir, buildDir, "bundler", "~> 2", qaBundledGemPath)
gem(projectDir, buildDir, "bundler", "= 2.3.6", qaBundledGemPath)
}
}

Expand Down

0 comments on commit a15c977

Please sign in to comment.