Skip to content
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

Tune Gradle to make our builds much faster #733

Merged
merged 1 commit into from Nov 12, 2021
Merged

Conversation

berngp
Copy link
Contributor

@berngp berngp commented Nov 12, 2021

Pull Request type

  • Bugfix
  • Feature
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • Other (please describe):

Changes in this PR

  • org.gradle.parallel: Enabling parallel builds makes the build considerably faster, that said, we need to make sure tests don't depend on each other, which should be already the case.

  • org.gradle.vfs.watch: Since Gradle 6.5, avoids unnecessary I/O.

  • org.gradle.caching: Shared caches can reduce the number of tasks we need to execute by reusing outputs already generated. This can significantly decrease build times but we need to make sure our tests do not depend on other external services, which is already the case.

* `org.gradle.parallel`: Enabling parallel builds makes the build
  considerably faster, that said, we need to make sure tests don't depend
  on each other, which should be already the case.

* `org.gradle.vfs.watch`: Since Gradle 6.5, avoids unnecessary I/O.

* `org.gradle.caching`: Shared caches can reduce the number of tasks we need to execute by
  reusing outputs already generated. This can significantly decrease build times but we
  need to make sure our tests do not depend on other external services,
  which is already the case.
@berngp berngp merged commit 02ee569 into master Nov 12, 2021
@berngp berngp deleted the feature/gradle-build branch October 20, 2022 01:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants