2022-05-29 16:58:14 -04:00
|
|
|
name: Test restore configuration-cache
|
2020-06-13 07:14:52 -04:00
|
|
|
|
|
|
|
on:
|
2022-05-28 10:55:58 -04:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
cache-key-prefix:
|
|
|
|
type: string
|
2022-05-29 14:13:55 -04:00
|
|
|
runner-os:
|
|
|
|
type: string
|
2022-05-29 15:47:45 -04:00
|
|
|
default: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
|
|
|
download-dist:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
2020-06-13 07:14:52 -04:00
|
|
|
|
2021-08-26 18:56:06 -04:00
|
|
|
env:
|
2022-05-29 15:47:45 -04:00
|
|
|
DOWNLOAD_DIST: ${{ inputs.download-dist }}
|
2022-05-28 10:55:58 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: restore-configuration-cache-${{ inputs.cache-key-prefix }}
|
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-12-29 18:07:33 -05:00
|
|
|
seed-build-groovy:
|
|
|
|
env:
|
2022-05-29 17:13:03 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_JOB: restore-cc-groovy
|
2020-06-14 06:22:21 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
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
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2022-05-29 15:47:45 -04:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2021-08-22 22:59:02 -04:00
|
|
|
uses: ./
|
2022-06-04 13:37:13 -04:00
|
|
|
with:
|
|
|
|
cache-read-only: false # For testing, allow writing cache entries on non-default branches
|
2023-12-20 12:58:56 -05:00
|
|
|
cache-encryption-key: Da25KUVSE5jbGds2zXmfXw==
|
2023-12-23 11:37:59 -05:00
|
|
|
gradle-version: release-nightly
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Groovy build with configuration-cache enabled
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2023-12-23 11:37:59 -05:00
|
|
|
run: gradle test --configuration-cache
|
2021-06-24 15:13:54 -04:00
|
|
|
|
2022-05-28 12:42:11 -04:00
|
|
|
verify-build-groovy:
|
2021-12-29 18:07:33 -05:00
|
|
|
env:
|
2022-05-29 17:13:03 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_JOB: restore-cc-groovy
|
2021-12-29 18:07:33 -05:00
|
|
|
needs: seed-build-groovy
|
2021-07-26 17:14:39 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-07-26 17:14:39 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2022-05-29 15:47:45 -04:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
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
|
2023-12-20 12:58:56 -05:00
|
|
|
cache-encryption-key: Da25KUVSE5jbGds2zXmfXw==
|
2023-12-23 11:37:59 -05:00
|
|
|
gradle-version: release-nightly
|
2022-03-17 13:15:38 -04:00
|
|
|
- name: Groovy build with configuration-cache enabled
|
|
|
|
id: execute
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2023-12-23 11:37:59 -05:00
|
|
|
run: gradle test --configuration-cache
|
2022-03-17 13:15:38 -04:00
|
|
|
- name: Check that configuration-cache was used
|
2023-11-13 17:17:56 -05:00
|
|
|
uses: actions/github-script@v7
|
2022-03-17 13:15:38 -04:00
|
|
|
with:
|
|
|
|
script: |
|
2022-10-20 11:35:03 -04:00
|
|
|
const fs = require('fs')
|
|
|
|
if (fs.existsSync('.github/workflow-samples/groovy-dsl/task-configured.txt')) {
|
|
|
|
core.setFailed('Configuration cache was not used - task was configured unexpectedly')
|
|
|
|
}
|
2021-10-15 15:25:25 -04:00
|
|
|
|
2021-12-29 18:07:33 -05:00
|
|
|
# Check that the build can run when no extracted cache entries are restored
|
2022-05-28 12:42:11 -04:00
|
|
|
gradle-user-home-not-fully-restored:
|
2021-12-29 18:07:33 -05:00
|
|
|
env:
|
2022-05-29 17:13:03 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_JOB: restore-cc-groovy
|
2021-12-29 18:07:33 -05:00
|
|
|
needs: seed-build-groovy
|
2021-12-07 15:26:16 -05:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-12-07 15:26:16 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2022-05-29 15:47:45 -04:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-29 18:07:33 -05:00
|
|
|
- name: Setup Gradle with no extracted cache entries restored
|
2021-12-07 15:26:16 -05:00
|
|
|
uses: ./
|
2021-12-29 18:07:33 -05:00
|
|
|
env:
|
|
|
|
GRADLE_BUILD_ACTION_SKIP_RESTORE: "generated-gradle-jars|wrapper-zips|java-toolchains|instrumented-jars|dependencies|kotlin-dsl"
|
2021-12-07 15:26:16 -05:00
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2023-12-20 12:58:56 -05:00
|
|
|
cache-encryption-key: Da25KUVSE5jbGds2zXmfXw==
|
2023-12-23 11:37:59 -05:00
|
|
|
gradle-version: release-nightly
|
2021-12-29 18:07:33 -05:00
|
|
|
- name: Check execute Gradle build with configuration cache enabled (but not restored)
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2023-12-23 11:37:59 -05:00
|
|
|
run: gradle test --configuration-cache
|
2021-12-29 18:07:33 -05:00
|
|
|
|
|
|
|
seed-build-kotlin:
|
|
|
|
env:
|
2022-05-29 17:13:03 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_JOB: restore-cc-kotlin
|
2021-12-29 18:07:33 -05:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-12-29 18:07:33 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2022-05-29 15:47:45 -04:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-29 18:07:33 -05:00
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
2022-06-04 13:37:13 -04:00
|
|
|
with:
|
|
|
|
cache-read-only: false # For testing, allow writing cache entries on non-default branches
|
2023-12-20 12:58:56 -05:00
|
|
|
cache-encryption-key: Da25KUVSE5jbGds2zXmfXw==
|
2023-12-23 11:37:59 -05:00
|
|
|
gradle-version: release-nightly
|
2022-01-17 14:09:38 -05:00
|
|
|
- name: Execute 'help' with configuration-cache enabled
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
2023-12-23 11:37:59 -05:00
|
|
|
run: gradle help --configuration-cache
|
2021-12-29 18:07:33 -05:00
|
|
|
|
|
|
|
modify-build-kotlin:
|
|
|
|
env:
|
2022-05-29 17:13:03 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_JOB: restore-cc-kotlin-modified
|
2021-12-29 18:07:33 -05:00
|
|
|
needs: seed-build-kotlin
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-12-29 18:07:33 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2022-05-29 15:47:45 -04:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-29 18:07:33 -05:00
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
2022-06-04 13:37:13 -04:00
|
|
|
with:
|
|
|
|
cache-read-only: false # For testing, allow writing cache entries on non-default branches
|
2023-12-20 12:58:56 -05:00
|
|
|
cache-encryption-key: Da25KUVSE5jbGds2zXmfXw==
|
2023-12-23 11:37:59 -05:00
|
|
|
gradle-version: release-nightly
|
2022-01-17 14:09:38 -05:00
|
|
|
- name: Execute 'test' with configuration-cache enabled
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
2023-12-23 11:37:59 -05:00
|
|
|
run: gradle test --configuration-cache
|
2021-12-07 15:26:16 -05:00
|
|
|
|
2022-05-28 12:42:11 -04:00
|
|
|
# Test restore configuration-cache from the third build invocation
|
|
|
|
verify-build-kotlin:
|
2021-12-29 18:07:33 -05:00
|
|
|
env:
|
2022-05-29 17:13:03 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_JOB: restore-cc-kotlin-modified
|
2021-12-29 18:07:33 -05:00
|
|
|
needs: modify-build-kotlin
|
2021-10-21 14:08:17 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-10-21 14:08:17 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-10-15 15:25:25 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2022-05-29 15:47:45 -04:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-29 18:07:33 -05:00
|
|
|
- name: Setup Gradle
|
2021-10-15 15:25:25 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2023-12-20 12:58:56 -05:00
|
|
|
cache-encryption-key: Da25KUVSE5jbGds2zXmfXw==
|
2023-12-23 11:37:59 -05:00
|
|
|
gradle-version: release-nightly
|
2022-03-17 13:15:38 -04:00
|
|
|
- name: Execute 'test' again with configuration-cache enabled
|
|
|
|
id: execute
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/kotlin-dsl
|
2023-12-23 11:37:59 -05:00
|
|
|
run: gradle test --configuration-cache
|
2022-03-17 13:15:38 -04:00
|
|
|
- name: Check that configuration-cache was used
|
2023-11-13 17:17:56 -05:00
|
|
|
uses: actions/github-script@v7
|
2022-03-17 13:15:38 -04:00
|
|
|
with:
|
|
|
|
script: |
|
2022-10-20 11:35:03 -04:00
|
|
|
const fs = require('fs')
|
|
|
|
if (fs.existsSync('.github/workflow-samples/kotlin-dsl/task-configured.txt')) {
|
|
|
|
core.setFailed('Configuration cache was not used - task was configured unexpectedly')
|
|
|
|
}
|
2022-03-17 13:15:38 -04:00
|
|
|
|