Gradle Enterprise 2017.3

2017.3 introduces a remote build cache implementation that can be used with Gradle’s new build caching feature for dramatically faster builds, along with other build scan refinements. Read on for the details of these new features and other improvements.

Use version 1.7 of the build scan plugin with this version of Gradle Enterprise for optimal build scans.

Highlights

Build faster with the build cache

The recent Gradle 3.5 release introduced a new build caching feature that makes builds faster by reusing task outputs where possible instead of building them again (see the introductory blog postdescribing how this works and what kind of speed gains are possible). Gradle Enterprise 2017.3 adds a build cache that can be used to enable caching across machines.

The build cache is part of every Gradle Enterprise installation. Using it is as easy as configuring your Gradle build to use a HTTP build cache with the address https://your-gradle-enterprise-server/cache/ (see the Gradle Enterprise Admin Manual for more details).

By going to https://your-gradle-enterprise-server/cache-admin in your browser, you can view stats on the cache, change cache size and credentials, and view recent cache activity.

Using a build cache is a very effective way to realize faster builds, and the Gradle Enterprise build cache is the fastest and simplest way to deploy and run a shared build cache. Additionally, build scans provide essential insights and feedback on cacheability configuration within your builds.

To learn more about build caching, please see this page.

Easily identify differences between the environment and configuration switches of builds

Gradle Enterprise 2017.1 introduced dependency comparison, allowing you to quickly and easily discover differences in resolved dependencies between two build scans. In this release, you can now also compare the environment/infrastructure and the Gradle configuration switches of two builds.

The infrastructure/environment section contains information about the JDK used to execute the build, the machine’s host name, number of cores, memory allocation etc. Differences in these aspects may explain different performance profiles, or even differences in build behavior.

The switches section outlines whether or not different Gradle configuration switches were used, such as, --parallel--continue--refresh-dependencies and others. Differences in these aspects may also explain different performance profiles and differences in build behavior.

Understanding the differences between two builds quickly can make debugging and root cause analysis much more efficient and effective. Expect more comparison functions in upcoming Gradle Enterprise versions.

Understand where your build time is spent

The performance section of a build scan offers a breakdown of the build’s tasks, including a breakdown by the execution outcome (e.g. SKIPPED, UP-TO-DATE). This now includes the combined time taken by all tasks in each category, which can help to qualify decisions about whether to invest in further build optimization.

Additionally, the overall build time breakdown provided in the “Build” tab has been refined to include additional categories and useful explanations of exactly what each item represents as a tooltip.

Know when installation problems arise

Gradle Enterprise processes and analyzes build data in the background after each build scan has been uploaded. If something goes wrong during this process, or with any other aspect of Gradle Enterprise’s operation, a notification will be issued in the app directing the installation administrator to contact Gradle Inc. support to have the problem resolved.

Upgrade notes

There are no special upgrade considerations for this release.

If upgrading from an older version of Gradle Enterprise be sure to check the Upgrade Notes section of the admin manual for any applicable upgrade notes.

Changes

Apr 24, 2017
  • [FEATURE] Create build scans with build scan plugin version 1.7.
  • [FEATURE] Reuse build outputs with Gradle Enterprise's build cache.
  • [FEATURE] Compare switches and infrastructure of two builds.
  • [FEATURE] Understand where your build time is spent.
  • [FEATURE] Monitor the health of your Gradle Enterprise installation.
  • [ENHANCEMENT] Failed dependencies are shown first and can be linked to directly.
  • [ENHANCEMENT] Focused dependency view usability is improved.
  • [ENHANCEMENT] Export API throughput is increased.