-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Gradle wrapper to 6.5 #57580
Update Gradle wrapper to 6.5 #57580
Conversation
@elasticmachine test this please |
@@ -107,7 +107,7 @@ BuildParams.bwcVersions.forPreviousUnreleased { BwcVersions.UnreleasedVersionInf | |||
task checkoutBwcBranch() { | |||
dependsOn fetchLatest | |||
doLast { | |||
String refspec = System.getProperty("bwc.refspec.${bwcBranch}") ?: System.getProperty("tests.bwc.refspec.${bwcBranch}") ?: "${remote}/${bwcBranch}" | |||
def refspec = System.getProperty("bwc.refspec." + bwcBranch) ?: System.getProperty("tests.bwc.refspec." + bwcBranch) ?: "${remote}/${bwcBranch}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a result of gradle 6.5 updated groovy to 2.5.11 which results in this failure otherwise: https://gradle-enterprise.elastic.co/s/nv35erntpdz2e/failure
I've created #57590 for evaluating the new filesystem watching capabilities in gradle |
Pinging @elastic/es-core-infra (:Core/Infra/Build) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Thanks, Rene.
* Update Gradle wrapper to 6.5 * Fix groovy incompatibility issue after gradle update * Fix Gstring String incompatibility
* Update Gradle wrapper to 6.5 * Fix groovy incompatibility issue after gradle update * Fix Gstring String incompatibility
* Update Gradle wrapper to 6.5 * Fix groovy incompatibility issue after gradle update * Fix Gstring String incompatibility
* Update Gradle wrapper to 6.5 * Fix groovy incompatibility issue after gradle update * Fix Gstring String incompatibility
* Update Gradle wrapper to 6.5 * Fix groovy incompatibility issue after gradle update * Fix Gstring String incompatibility
@breskeby looks like we missed |
fixed.
… On 12. Jun 2020, at 01:28, Mark Vieira ***@***.***> wrote:
@breskeby <https://github.com/breskeby> looks like we missed 7.x branch with this one 😄
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#57580 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAAS35FSJI5IY74NGKKCJGTRWFSDHANCNFSM4NRLHENA>.
|
This updates the elasticsearch build to Gradle 6.5 that was released yesterday