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

Commits on Nov 12, 2021

  1. Tune Gradle to make our builds much faster

    * `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 committed Nov 12, 2021
    Copy the full SHA
    9816263 View commit details
    Browse the repository at this point in the history