2021-10-29 14:14:50 +00:00
|
|
|
name: Test save/restore configuration-cache state
|
2020-06-13 11:14:52 +00:00
|
|
|
|
|
|
|
on:
|
2020-06-15 18:03:30 +00:00
|
|
|
pull_request:
|
2021-12-08 21:20:13 +00:00
|
|
|
types: [assigned, review_requested]
|
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
|
|
|
|
2022-03-14 19:28:54 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}
|
|
|
|
|
2021-08-26 22:56:06 +00:00
|
|
|
env:
|
2021-10-29 14:14:50 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
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-12-29 23:07:33 +00:00
|
|
|
seed-build-groovy:
|
|
|
|
env:
|
2022-01-18 17:52:22 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-groovy-
|
2020-06-14 10:22:21 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 16:11:06 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-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-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2021-08-23 02:59:02 +00:00
|
|
|
uses: ./
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Groovy build with configuration-cache enabled
|
|
|
|
working-directory: __tests__/samples/groovy-dsl
|
|
|
|
run: ./gradlew test --configuration-cache
|
2021-06-24 19:13:54 +00:00
|
|
|
|
2021-12-08 17:29:13 +00:00
|
|
|
configuration-cache-groovy:
|
2021-12-29 23:07:33 +00:00
|
|
|
env:
|
2022-01-18 17:52:22 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-groovy-
|
2021-12-29 23:07:33 +00:00
|
|
|
needs: seed-build-groovy
|
2021-07-26 21:14:39 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 16:11:06 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-07-26 21:14:39 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2021-07-26 21:14:39 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-12 20:26:38 +00:00
|
|
|
cache-read-only: true
|
2022-03-17 17:15:38 +00:00
|
|
|
- name: Groovy build with configuration-cache enabled
|
|
|
|
id: execute
|
2021-12-08 17:29:13 +00:00
|
|
|
working-directory: __tests__/samples/groovy-dsl
|
|
|
|
run: ./gradlew test --configuration-cache
|
2022-03-17 17:15:38 +00:00
|
|
|
- name: Check that configuration-cache was used
|
|
|
|
if: ${{ steps.execute.outputs.task_configured == 'yes' }}
|
|
|
|
uses: actions/github-script@v5
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
core.setFailed('Configuration cache was not used - task was configured unexpectedly')
|
2021-10-15 19:25:25 +00:00
|
|
|
|
2021-12-29 23:07:33 +00:00
|
|
|
# Check that the build can run when no extracted cache entries are restored
|
|
|
|
no-extracted-cache-entries-restored:
|
|
|
|
env:
|
2022-01-18 17:52:22 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-groovy-
|
2021-12-29 23:07:33 +00:00
|
|
|
needs: seed-build-groovy
|
2021-12-07 20:26:16 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 16:11:06 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-12-07 20:26:16 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-29 23:07:33 +00:00
|
|
|
- name: Setup Gradle with no extracted cache entries restored
|
2021-12-07 20:26:16 +00:00
|
|
|
uses: ./
|
2021-12-29 23:07:33 +00:00
|
|
|
env:
|
|
|
|
GRADLE_BUILD_ACTION_SKIP_RESTORE: "generated-gradle-jars|wrapper-zips|java-toolchains|instrumented-jars|dependencies|kotlin-dsl"
|
2021-12-07 20:26:16 +00:00
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-29 23:07:33 +00:00
|
|
|
- name: Check execute Gradle build with configuration cache enabled (but not restored)
|
|
|
|
working-directory: __tests__/samples/groovy-dsl
|
|
|
|
run: ./gradlew test --configuration-cache
|
|
|
|
|
|
|
|
seed-build-kotlin:
|
|
|
|
env:
|
2022-01-18 17:52:22 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-kotlin-
|
2021-12-29 23:07:33 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 16:11:06 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-12-29 23:07:33 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
2022-01-17 19:09:38 +00:00
|
|
|
- name: Execute 'help' with configuration-cache enabled
|
2021-12-29 23:07:33 +00:00
|
|
|
working-directory: __tests__/samples/kotlin-dsl
|
|
|
|
run: ./gradlew help --configuration-cache
|
|
|
|
|
|
|
|
modify-build-kotlin:
|
|
|
|
env:
|
2022-01-18 17:52:22 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-kotlin-
|
2021-12-29 23:07:33 +00:00
|
|
|
needs: seed-build-kotlin
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 16:11:06 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-12-29 23:07:33 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
2022-01-17 19:09:38 +00:00
|
|
|
- name: Execute 'test' with configuration-cache enabled
|
2021-12-08 17:29:13 +00:00
|
|
|
working-directory: __tests__/samples/kotlin-dsl
|
|
|
|
run: ./gradlew test --configuration-cache
|
2021-12-07 20:26:16 +00:00
|
|
|
|
2021-12-29 23:07:33 +00:00
|
|
|
# Test restore configuration-cache from the third build invocation
|
|
|
|
configuration-cache-kotlin:
|
|
|
|
env:
|
2022-01-18 17:52:22 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-kotlin-
|
2021-12-29 23:07:33 +00:00
|
|
|
needs: modify-build-kotlin
|
2021-10-21 18:08:17 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 16:11:06 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-10-21 18:08:17 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-10-15 19:25:25 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-29 23:07:33 +00:00
|
|
|
- name: Setup Gradle
|
2021-10-15 19:25:25 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2022-03-17 17:15:38 +00:00
|
|
|
- name: Execute 'test' again with configuration-cache enabled
|
|
|
|
id: execute
|
2021-12-29 23:07:33 +00:00
|
|
|
working-directory: __tests__/samples/kotlin-dsl
|
2021-12-08 17:29:13 +00:00
|
|
|
run: ./gradlew test --configuration-cache
|
2022-03-17 17:15:38 +00:00
|
|
|
- name: Check that configuration-cache was used
|
|
|
|
if: ${{ steps.execute.outputs.task_configured == 'yes' }}
|
|
|
|
uses: actions/github-script@v5
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
core.setFailed('Configuration cache was not used - task was configured unexpectedly')
|
|
|
|
|