2021-09-27 19:33:22 -06:00
|
|
|
name: Test caching
|
2020-06-13 13:14:52 +02:00
|
|
|
|
|
|
|
on:
|
2020-06-15 20:03:30 +02:00
|
|
|
pull_request:
|
2020-06-13 13:14:52 +02:00
|
|
|
push:
|
2021-08-20 14:00:30 -06:00
|
|
|
workflow_dispatch:
|
2020-06-13 13:14:52 +02:00
|
|
|
|
2021-08-26 16:56:06 -06:00
|
|
|
env:
|
2021-09-05 21:35:17 -06:00
|
|
|
CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}-
|
2021-08-26 16:56:06 -06:00
|
|
|
|
2020-06-13 13:14:52 +02:00
|
|
|
jobs:
|
2021-08-26 17:55:19 -06: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 05:08:32 -06:00
|
|
|
seed-build:
|
2020-06-14 12:22:21 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-13 13:14:52 +02:00
|
|
|
steps:
|
2020-06-13 13:17:04 +02:00
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-08-17 16:32:51 -06:00
|
|
|
- name: Build using Gradle wrapper
|
2020-06-13 13:17:04 +02:00
|
|
|
uses: ./
|
2020-06-13 13:14:52 +02:00
|
|
|
with:
|
2021-09-28 20:31:11 -06:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 06:56:16 -06:00
|
|
|
arguments: test
|
2021-08-22 20:59:02 -06:00
|
|
|
- name: Build with configuration-cache enabled
|
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-28 20:31:11 -06:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 06:56:16 -06:00
|
|
|
arguments: test --configuration-cache
|
2021-06-24 12:13:54 -07:00
|
|
|
|
2021-08-27 05:08:32 -06:00
|
|
|
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline
|
2021-07-26 15:14:39 -06:00
|
|
|
dependencies-cache:
|
2021-08-27 05:08:32 -06:00
|
|
|
needs: seed-build
|
2021-07-26 15:14:39 -06: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 05:08:32 -06:00
|
|
|
- name: Execute Gradle build with --offline
|
2021-07-26 15:14:39 -06:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-28 20:31:11 -06:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 05:08:32 -06:00
|
|
|
arguments: test --offline
|
2021-09-12 14:26:38 -06:00
|
|
|
cache-read-only: true
|
2021-07-26 15:14:39 -06:00
|
|
|
|
2021-08-27 06:36:29 -06:00
|
|
|
# Test that the gradle-user-home cache will cache and restore local build-cache
|
2021-08-27 05:40:14 -06: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:
|
2021-09-28 20:31:11 -06:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 05:40:14 -06:00
|
|
|
arguments: test -DverifyCachedBuild=true
|
2021-09-12 14:26:38 -06:00
|
|
|
cache-read-only: true
|
2021-08-27 05:40:14 -06:00
|
|
|
|
2021-08-27 06:36:29 -06:00
|
|
|
# Test that the project-dot-gradle cache will cache and restore configuration-cache
|
2021-07-26 15:14:39 -06:00
|
|
|
configuration-cache:
|
2021-08-27 05:08:32 -06:00
|
|
|
needs: seed-build
|
2021-07-26 15:14:39 -06: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 06:36:29 -06:00
|
|
|
- name: Execute Gradle build and verify cached configuration
|
2021-07-26 15:14:39 -06:00
|
|
|
uses: ./
|
2021-08-27 06:36:29 -06:00
|
|
|
env:
|
|
|
|
VERIFY_CACHED_CONFIGURATION: true
|
2021-07-26 15:14:39 -06:00
|
|
|
with:
|
2021-09-28 20:31:11 -06:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 06:56:16 -06:00
|
|
|
arguments: test --configuration-cache
|
2021-09-12 14:26:38 -06:00
|
|
|
cache-read-only: true
|
2021-10-15 13:25:25 -06:00
|
|
|
|
|
|
|
# Check that the build can run when no bundles are restored
|
|
|
|
no-bundles-restored:
|
|
|
|
needs: seed-build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
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-artifact-bundles: '[]'
|
|
|
|
cache-read-only: true
|
|
|
|
|