-
Notifications
You must be signed in to change notification settings - Fork 25k
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
Avoid tasks materialized during configuration phase #65922
Avoid tasks materialized during configuration phase #65922
Conversation
@elasticmachine test this please |
@elasticmachine update branch please |
merge conflict between base and head |
ec6b8a2
to
f559603
Compare
gradle.properties
Outdated
@@ -7,7 +7,7 @@ org.gradle.jvmargs=-XX:+HeapDumpOnOutOfMemoryError -Xss2m | |||
systemProp.org.gradle.dependency.duplicate.project.detection=false | |||
|
|||
# Enforce the build to fail on deprecated gradle api usage | |||
systemProp.org.gradle.warning.mode=fail | |||
# systemProp.org.gradle.warning.mode=fail |
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.
Is this change intentional?
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.
nope. good catch. fixed
c08a4e3
to
5217d45
Compare
@elasticmachine update branch |
* Avoid tasks materialized during configuration phase * Fix RestTestFromSnippet testRoot setup
Rework more build scripts to make usage of task avoidance api and avoid
unnecessary task creations across the build to reduce overall configuration overhead.
Another major benefit we gain from this is that we now also avoid unnecessary
test cluster creation and configuration as these are by default only created
when the according integTest or consumer task is created when requested for execution
This brings us another step closer to finish off #56610