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