gradle-build-action/README.md

214 lines
6.3 KiB
Markdown
Raw Normal View History

2020-02-14 00:46:51 -05:00
# Execute Gradle commands in GitHub Actions workflows
2019-09-20 17:06:59 -04:00
2020-02-14 00:46:51 -05:00
This GitHub Action can be used to run arbitrary Gradle commands on any platform supported by GitHub Actions.
2019-09-20 17:06:59 -04:00
2020-02-14 00:46:51 -05:00
You might also be interested by the related [Gradle Plugin](https://github.com/eskatos/gradle-github-actions-plugin) that allows your build to easily get GitHub Actions environment and tag Gradle Build Scans accordingly.
2019-09-20 17:06:59 -04:00
2019-09-21 10:01:53 -04:00
## Usage
2019-09-20 17:06:59 -04:00
2020-06-13 06:45:21 -04:00
The following workflow will run `./gradlew build` using the wrapper from the repository on ubuntu, macos and windows. The only prerequisite is to have Java installed, you can define the version you need to run the build using the `actions/setup-java` action.
2019-09-23 06:10:22 -04:00
2019-09-21 10:01:53 -04:00
```yaml
2019-09-23 07:00:12 -04:00
# .github/workflows/gradle-build-pr.yml
2019-09-21 10:01:53 -04:00
name: Run Gradle on PRs
on: pull_request
2019-09-21 10:01:53 -04:00
jobs:
gradle:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
2020-06-14 06:57:10 -04:00
- uses: actions/checkout@v2
2019-09-21 10:01:53 -04:00
- uses: actions/setup-java@v1
with:
java-version: 11
- uses: eskatos/gradle-command-action@v1
with:
arguments: build
```
## Gradle arguments
The `arguments` input can used to pass arbitrary arguments to the `gradle` command line.
Here are some valid examples:
```yaml
arguments: build
arguments: check --scan
arguments: some arbitrary tasks
arguments: build -PgradleProperty=foo
arguments: build -DsystemProperty=bar
....
```
See `gradle --help` for more information.
2020-02-14 00:46:51 -05:00
If you need to pass environment variables, simply use the GitHub Actions workflow syntax:
2019-09-21 10:01:53 -04:00
```yaml
- uses: eskatos/gradle-command-action@v1
env:
CI: true
```
## Run a build from a different directory
```yaml
- uses: eskatos/gradle-command-action@v1
with:
build-root-directory: some/subdirectory
```
2019-09-21 10:04:03 -04:00
## Use a Gradle wrapper from a different directory
2019-09-21 10:01:53 -04:00
```yaml
- uses: eskatos/gradle-command-action@v1
with:
wrapper-directory: path/to/wrapper-directory
```
## Use a specific `gradle` executable
```yaml
- uses: eskatos/gradle-command-action@v1
with:
gradle-executable: path/to/gradle
```
2019-09-21 10:04:03 -04:00
## Setup and use a declared Gradle version
2019-09-21 10:01:53 -04:00
```yaml
- uses: eskatos/gradle-command-action@v1
with:
2020-06-14 06:57:10 -04:00
gradle-version: 6.5
2019-09-21 10:01:53 -04:00
```
`gradle-version` can be set to any valid Gradle version.
Moreover, you can use the following aliases:
| Alias | Selects |
| --- |---|
2019-12-09 04:46:30 -05:00
| `wrapper` | The Gradle wrapper's version (default, useful for matrix builds) |
2019-09-21 10:01:53 -04:00
| `current` | The current [stable release](https://gradle.org/install/) |
| `rc` | The current [release candidate](https://gradle.org/release-candidate/) if any, otherwise fallback to `current` |
| `nightly` | The latest [nightly](https://gradle.org/nightly/), fails if none. |
| `release-nightly` | The latest [release nightly](https://gradle.org/release-nightly/), fails if none. |
2019-09-23 06:10:22 -04:00
This can be handy to, for example, automatically test your build with the next Gradle version once a release candidate is out:
2019-09-21 10:01:53 -04:00
```yaml
2019-09-23 07:00:12 -04:00
# .github/workflows/test-gradle-rc.yml
2019-09-21 10:01:53 -04:00
name: Test latest Gradle RC
on:
schedule:
- cron: 0 0 * * * # daily
jobs:
gradle-rc:
runs-on: ubuntu-latest
steps:
2020-06-14 06:57:10 -04:00
- uses: actions/checkout@v2
2019-09-21 10:01:53 -04:00
- uses: actions/setup-java@v1
with:
java-version: 11
- uses: eskatos/gradle-command-action@v1
with:
gradle-version: rc
arguments: build --dry-run # just test build configuration
```
2020-06-15 10:23:01 -04:00
## Caching
This action provides 3 levels of caching to help speed up your GitHub Actions:
- `wrapper` caches the local [wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html) installation, saving time downloading and unpacking Gradle distributions ;
- `dependencies` caches the [dependencies](https://docs.gradle.org/current/userguide/dependency_resolution.html#sub:cache_copy), saving time downloading dependencies ;
- `configuration` caches the [build configuration](https://docs.gradle.org/nightly/userguide/configuration_cache.html), saving time configuring the build.
Only the first one, caching the wrapper installation, is enabled by default.
Future versions of this action will enable all caching by default.
You can control which level is enabled as follows:
```yaml
wrapper-cache-enabled: true
dependencies-cache-enabled: true
configuration-cache-enabled: true
```
The wrapper installation cache is simple and can't be configured further.
The dependencies and configuration cache will compute a cache key in a best effort manner.
Keep reading to learn how to better control how they work.
### Configuring the dependencies and configuration caches
Both the dependencies and configuration caches use the same default configuration:
They use the following inputs to calculate the cache key:
```text
```
They restore cached state even if there isn't an exact match.
If the defaults don't suit your needs you can override them with the following inputs:
```yaml
dependencies-cache-key: |
**/gradle.properties
gradle/dependency-locking/**
dependencies-cache-exact: true
configuration-cache-key: |
**/gradle.properties
gradle/dependency-locking/**
configuration-cache-exact: true
```
Coming up with a good cache key isn't trivial and depends on your build.
The above example isn't realistic.
Stick to the defaults unless you know what you are doing.
If you happen to use Gradle [dependency locking](https://docs.gradle.org/current/userguide/dependency_locking.html) you can make the dependencies cache more precise with the following configuration:
```yaml
dependencies-cache-enabled: true
dependencies-cache-key: gradle/dependency-locking/**
dependencies-cache-exact: true
```
## Build scans
2019-09-21 10:01:53 -04:00
If your build publishes a [build scan](https://gradle.com/build-scans/) the `gradle-command-action` action will emit the link to the published build scan as an output named `build-scan-url`.
You can then use that link in subsequent actions of your workflow.
For example:
```yaml
2019-09-23 07:00:12 -04:00
# .github/workflows/gradle-build-pr.yml
name: Run Gradle on PRs
2020-04-18 11:10:08 -04:00
on: pull_request
jobs:
gradle:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
2020-06-14 06:57:10 -04:00
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 11
- uses: eskatos/gradle-command-action@v1
with:
arguments: build
id: gradle
- uses: example/action-that-comments-on-the-pr@v0
if: failure()
with:
comment: Build failed ${{ steps.gradle.outputs.build-scan-url }}
```