2021-09-28 01:33:22 +00:00
|
|
|
name: Test caching
|
2020-06-13 11:14:52 +00:00
|
|
|
|
|
|
|
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:
|
2021-10-27 22:07:24 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}-
|
2021-08-26 22:56:06 +00:00
|
|
|
|
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:
|
2021-10-21 18:08:17 +00:00
|
|
|
os: [ubuntu-latest, windows-latest]
|
2020-06-14 10:22:21 +00:00
|
|
|
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-09-29 02:31:11 +00:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
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:
|
2021-09-29 02:31:11 +00:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 12:56:16 +00:00
|
|
|
arguments: test --configuration-cache
|
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:
|
2021-10-21 18:08:17 +00:00
|
|
|
os: [ubuntu-latest, windows-latest]
|
2021-07-26 21:14:39 +00:00
|
|
|
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:
|
2021-09-29 02:31:11 +00:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 11:08:32 +00:00
|
|
|
arguments: test --offline
|
2021-09-12 20:26:38 +00:00
|
|
|
cache-read-only: true
|
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:
|
2021-10-21 18:08:17 +00:00
|
|
|
os: [ubuntu-latest, windows-latest]
|
2021-08-27 11:40:14 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Execute Gradle build and verify tasks from cache
|
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-29 02:31:11 +00:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 11:40:14 +00:00
|
|
|
arguments: test -DverifyCachedBuild=true
|
2021-09-12 20:26:38 +00:00
|
|
|
cache-read-only: true
|
2021-08-27 11:40:14 +00:00
|
|
|
|
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:
|
2021-10-21 18:08:17 +00:00
|
|
|
os: [ubuntu-latest, windows-latest]
|
2021-07-26 21:14:39 +00:00
|
|
|
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:
|
2021-09-29 02:31:11 +00:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 12:56:16 +00:00
|
|
|
arguments: test --configuration-cache
|
2021-09-12 20:26:38 +00:00
|
|
|
cache-read-only: true
|
2021-10-15 19:25:25 +00:00
|
|
|
|
|
|
|
# Check that the build can run when no bundles are restored
|
|
|
|
no-bundles-restored:
|
|
|
|
needs: seed-build
|
2021-10-21 18:08:17 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2021-10-15 19:25:25 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Execute Gradle build with no cache artifact bundles restored
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
|
|
|
arguments: test
|
|
|
|
cache-read-only: true
|
2021-10-27 22:07:24 +00:00
|
|
|
gradle-home-cache-artifact-bundles: '[]'
|
2021-10-15 19:25:25 +00:00
|
|
|
|