2021-10-29 22:14:50 +08:00
|
|
|
name: Test save/restore configuration-cache state
|
2020-06-13 19:14:52 +08:00
|
|
|
|
|
|
|
on:
|
2020-06-16 02:03:30 +08:00
|
|
|
pull_request:
|
2021-12-09 05:20:13 +08:00
|
|
|
types: [assigned, review_requested]
|
2020-06-13 19:14:52 +08:00
|
|
|
push:
|
2021-08-21 04:00:30 +08:00
|
|
|
workflow_dispatch:
|
2020-06-13 19:14:52 +08:00
|
|
|
|
2021-08-27 06:56:06 +08:00
|
|
|
env:
|
2021-10-28 06:07:24 +08:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}-
|
2021-10-29 22:14:50 +08:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
2021-08-27 06:56:06 +08:00
|
|
|
|
2020-06-13 19:14:52 +08:00
|
|
|
jobs:
|
2021-08-27 07:55:19 +08: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 19:08:32 +08:00
|
|
|
seed-build:
|
2020-06-14 18:22:21 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-22 02:08:17 +08:00
|
|
|
os: [ubuntu-latest, windows-latest]
|
2020-06-14 18:22:21 +08:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-13 19:14:52 +08:00
|
|
|
steps:
|
2020-06-13 19:17:04 +08:00
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Setup Gradle
|
2021-08-23 10:59:02 +08:00
|
|
|
uses: ./
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Groovy build with configuration-cache enabled
|
|
|
|
working-directory: __tests__/samples/groovy-dsl
|
|
|
|
run: ./gradlew test --configuration-cache
|
|
|
|
- name: Kotlin build with configuration-cache enabled
|
|
|
|
working-directory: __tests__/samples/kotlin-dsl
|
|
|
|
run: ./gradlew test --configuration-cache
|
2021-06-25 03:13:54 +08:00
|
|
|
|
2021-12-09 01:29:13 +08:00
|
|
|
configuration-cache-groovy:
|
2021-08-27 19:08:32 +08:00
|
|
|
needs: seed-build
|
2021-07-27 05:14:39 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-22 02:08:17 +08:00
|
|
|
os: [ubuntu-latest, windows-latest]
|
2021-07-27 05:14:39 +08:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Setup Gradle
|
2021-07-27 05:14:39 +08:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-13 04:26:38 +08:00
|
|
|
cache-read-only: true
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Execute Gradle build and verify cached configuration
|
|
|
|
env:
|
|
|
|
VERIFY_CACHED_CONFIGURATION: true
|
|
|
|
working-directory: __tests__/samples/groovy-dsl
|
|
|
|
run: ./gradlew test --configuration-cache
|
2021-10-16 03:25:25 +08:00
|
|
|
|
2021-12-09 01:29:13 +08:00
|
|
|
# Test restore configuration-cache from the second build invocation
|
|
|
|
configuration-cache-kotlin:
|
2021-12-08 04:26:16 +08:00
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Setup Gradle
|
2021-12-08 04:26:16 +08:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Execute Gradle build and verify cached configuration
|
|
|
|
env:
|
|
|
|
VERIFY_CACHED_CONFIGURATION: true
|
|
|
|
working-directory: __tests__/samples/kotlin-dsl
|
|
|
|
run: ./gradlew test --configuration-cache
|
2021-12-08 04:26:16 +08:00
|
|
|
|
2021-12-03 05:38:23 +08:00
|
|
|
# Check that the build can run when no extracted cache entries are restored
|
|
|
|
no-extracted-cache-entries-restored:
|
2021-10-16 03:25:25 +08:00
|
|
|
needs: seed-build
|
2021-10-22 02:08:17 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2021-10-16 03:25:25 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Setup Gradle with no cache extracted cache entries restored
|
2021-10-16 03:25:25 +08:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-03 05:38:23 +08:00
|
|
|
gradle-home-extracted-cache-entries: '[]'
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Check execute Gradle build with configuration cache enabled (but not restored)
|
|
|
|
working-directory: __tests__/samples/groovy-dsl
|
|
|
|
run: ./gradlew test --configuration-cache
|