2021-08-26 23:55:19 +00:00
|
|
|
# Make sure the action works on a clean machine without building
|
2020-06-13 11:14:52 +00:00
|
|
|
name: prod
|
|
|
|
|
|
|
|
on:
|
2020-06-15 18:03:30 +00:00
|
|
|
pull_request:
|
2020-06-13 11:14:52 +00:00
|
|
|
push:
|
2021-08-20 20:00:30 +00:00
|
|
|
workflow_dispatch:
|
2020-06-13 11:14:52 +00:00
|
|
|
|
2021-08-26 22:56:06 +00:00
|
|
|
env:
|
|
|
|
CACHE_KEY_SEED: ${{github.workflow}}#${{github.run_number}}-
|
|
|
|
|
2020-06-13 11:14:52 +00:00
|
|
|
jobs:
|
2021-08-26 23:55:19 +00:00
|
|
|
# Run initial Gradle builds to push initial cache entries
|
|
|
|
# These builds should start fresh without cache hits, due to the seed injected into the cache key above.
|
2021-08-27 11:08:32 +00:00
|
|
|
seed-build:
|
2020-06-14 10:22:21 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-13 11:14:52 +00:00
|
|
|
steps:
|
2020-06-13 11:17:04 +00:00
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-08-17 22:32:51 +00:00
|
|
|
- name: Build using Gradle wrapper
|
2020-06-13 11:17:04 +00:00
|
|
|
uses: ./
|
2020-06-13 11:14:52 +00:00
|
|
|
with:
|
2021-07-05 20:33:02 +00:00
|
|
|
build-root-directory: __tests__/samples/basic
|
2021-08-27 12:56:16 +00:00
|
|
|
arguments: test
|
2021-08-23 02:59:02 +00:00
|
|
|
- name: Build with configuration-cache enabled
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
build-root-directory: __tests__/samples/basic
|
2021-08-27 12:56:16 +00:00
|
|
|
arguments: test --configuration-cache
|
2021-08-17 22:32:51 +00:00
|
|
|
|
2021-08-26 23:55:19 +00:00
|
|
|
# Tests for executing with different Gradle versions.
|
|
|
|
# Each build verifies that it is executed with the expected Gradle version.
|
2021-08-17 22:32:51 +00:00
|
|
|
gradle-execution:
|
2021-08-27 11:08:32 +00:00
|
|
|
needs: seed-build
|
2021-08-17 22:32:51 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
include:
|
|
|
|
- os: windows-latest
|
|
|
|
script-suffix: '.bat'
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-06-09 17:48:43 +00:00
|
|
|
- name: Test use defined Gradle version
|
2021-06-24 18:45:25 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
gradle-version: 6.9
|
|
|
|
build-root-directory: __tests__/samples/no-wrapper
|
2021-08-26 23:55:19 +00:00
|
|
|
arguments: help -DgradleVersionCheck=6.9
|
|
|
|
gradle-user-home-cache-enabled: read-only
|
|
|
|
project-dot-gradle-cache-enabled: read-only
|
2021-06-24 18:45:25 +00:00
|
|
|
- name: Test use Gradle version alias
|
2020-06-13 12:33:32 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-06-24 22:59:03 +00:00
|
|
|
gradle-version: release-candidate
|
2021-06-24 18:45:25 +00:00
|
|
|
build-root-directory: __tests__/samples/no-wrapper
|
2021-08-26 23:55:19 +00:00
|
|
|
arguments: help -DgradleVersionCheck=7.2
|
|
|
|
gradle-user-home-cache-enabled: read-only
|
|
|
|
project-dot-gradle-cache-enabled: read-only
|
2021-06-24 18:51:43 +00:00
|
|
|
- name: Test use defined Gradle executable
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
gradle-executable: __tests__/samples/basic/gradlew${{ matrix.script-suffix }}
|
|
|
|
build-root-directory: __tests__/samples/no-wrapper
|
2021-08-26 23:55:19 +00:00
|
|
|
arguments: help -DgradleVersionCheck=7.1.1
|
|
|
|
gradle-user-home-cache-enabled: read-only
|
|
|
|
project-dot-gradle-cache-enabled: read-only
|
2021-06-24 19:13:54 +00:00
|
|
|
|
2021-08-27 11:08:32 +00:00
|
|
|
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline
|
2021-07-26 21:14:39 +00:00
|
|
|
dependencies-cache:
|
2021-08-27 11:08:32 +00:00
|
|
|
needs: seed-build
|
2021-07-26 21:14:39 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-08-27 11:08:32 +00:00
|
|
|
- name: Execute Gradle build with --offline
|
2021-07-26 21:14:39 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
build-root-directory: __tests__/samples/basic
|
2021-08-27 11:08:32 +00:00
|
|
|
arguments: test --offline
|
|
|
|
gradle-user-home-cache-enabled: read-only
|
|
|
|
project-dot-gradle-cache-enabled: read-only
|
2021-07-26 21:14:39 +00:00
|
|
|
|
2021-08-27 12:36:29 +00:00
|
|
|
# Test that the gradle-user-home cache will cache and restore local build-cache
|
2021-08-27 11:40:14 +00:00
|
|
|
build-cache:
|
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Execute Gradle build and verify tasks from cache
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
build-root-directory: __tests__/samples/basic
|
|
|
|
arguments: test -DverifyCachedBuild=true
|
|
|
|
gradle-user-home-cache-enabled: read-only
|
|
|
|
project-dot-gradle-cache-enabled: read-only
|
|
|
|
|
2021-08-27 12:36:29 +00:00
|
|
|
# Test that the project-dot-gradle cache will cache and restore configuration-cache
|
2021-07-26 21:14:39 +00:00
|
|
|
configuration-cache:
|
2021-08-27 11:08:32 +00:00
|
|
|
needs: seed-build
|
2021-07-26 21:14:39 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-08-27 12:36:29 +00:00
|
|
|
- name: Execute Gradle build and verify cached configuration
|
2021-07-26 21:14:39 +00:00
|
|
|
uses: ./
|
2021-08-27 12:36:29 +00:00
|
|
|
env:
|
|
|
|
VERIFY_CACHED_CONFIGURATION: true
|
2021-07-26 21:14:39 +00:00
|
|
|
with:
|
|
|
|
build-root-directory: __tests__/samples/basic
|
2021-08-27 12:56:16 +00:00
|
|
|
arguments: test --configuration-cache
|
2021-08-23 02:59:02 +00:00
|
|
|
gradle-user-home-cache-enabled: read-only
|
|
|
|
project-dot-gradle-cache-enabled: read-only
|
2021-07-26 21:14:39 +00:00
|
|
|
|
2021-08-27 12:36:29 +00:00
|
|
|
# These build invocations are informational only, and are expected to fail
|
|
|
|
failures:
|
2021-08-27 11:08:32 +00:00
|
|
|
needs: seed-build
|
2021-06-24 19:13:54 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Test wrapper missing
|
|
|
|
uses: ./
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
build-root-directory: __tests__/samples/no-wrapper
|
|
|
|
arguments: help
|
2021-08-23 02:59:02 +00:00
|
|
|
- name: Test bad config value
|
|
|
|
uses: ./
|
|
|
|
continue-on-error: true
|
|
|
|
with:
|
|
|
|
build-root-directory: __tests__/samples/no-wrapper
|
|
|
|
arguments: help
|
|
|
|
gradle-user-home-cache-enabled: no
|