2022-05-30 04:58:14 +08:00
|
|
|
name: Test restore Gradle Home
|
2020-06-13 19:14:52 +08:00
|
|
|
|
|
|
|
on:
|
2022-05-28 22:55:58 +08:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
cache-key-prefix:
|
|
|
|
type: string
|
2022-05-30 02:13:55 +08:00
|
|
|
runner-os:
|
|
|
|
type: string
|
2022-05-30 03:47:45 +08:00
|
|
|
default: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
2020-06-13 19:14:52 +08:00
|
|
|
|
2021-08-27 06:56:06 +08:00
|
|
|
env:
|
2022-05-28 22:55:58 +08:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: restore-gradle-home-${{ inputs.cache-key-prefix }}
|
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_JOB: restore-gradle-home
|
|
|
|
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 19:08:32 +08:00
|
|
|
seed-build:
|
2020-06-14 18:22:21 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-30 02:13:55 +08:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
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
|
2023-09-05 06:34:02 +08:00
|
|
|
uses: actions/checkout@v4
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Setup Gradle
|
2020-06-13 19:17:04 +08:00
|
|
|
uses: ./
|
2022-06-05 01:37:13 +08:00
|
|
|
with:
|
|
|
|
cache-read-only: false # For testing, allow writing cache entries on non-default branches
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Build using Gradle wrapper
|
2022-04-05 23:45:02 +08:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-09 01:29:13 +08:00
|
|
|
run: ./gradlew test
|
2021-06-25 03:13:54 +08:00
|
|
|
|
2021-08-27 19:08:32 +08:00
|
|
|
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline
|
2021-07-27 05:14:39 +08:00
|
|
|
dependencies-cache:
|
2021-08-27 19:08:32 +08:00
|
|
|
needs: seed-build
|
2021-07-27 05:14:39 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-30 02:13:55 +08:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-07-27 05:14:39 +08:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-05 06:34:02 +08:00
|
|
|
uses: actions/checkout@v4
|
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 with --offline
|
2022-04-05 23:45:02 +08:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-09 01:29:13 +08:00
|
|
|
run: ./gradlew test --offline
|
2021-07-27 05:14:39 +08:00
|
|
|
|
2021-08-27 20:36:29 +08:00
|
|
|
# Test that the gradle-user-home cache will cache and restore local build-cache
|
2021-08-27 19:40:14 +08:00
|
|
|
build-cache:
|
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-30 02:13:55 +08:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-08-27 19:40:14 +08:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-05 06:34:02 +08:00
|
|
|
uses: actions/checkout@v4
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Setup Gradle
|
2021-08-27 19:40:14 +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 tasks from cache
|
2022-04-05 23:45:02 +08:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-09 01:29:13 +08:00
|
|
|
run: ./gradlew test -DverifyCachedBuild=true
|
2021-08-27 19:40:14 +08:00
|
|
|
|
2021-12-03 05:38:23 +08:00
|
|
|
# Check that the build can run when Gradle User Home is not fully 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:
|
2022-05-30 02:13:55 +08:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-10-22 02:08:17 +08:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-10-16 03:25:25 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-05 06:34:02 +08:00
|
|
|
uses: actions/checkout@v4
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Setup Gradle with no extracted cache entries restored
|
2021-10-16 03:25:25 +08:00
|
|
|
uses: ./
|
2021-12-30 04:36:24 +08:00
|
|
|
env:
|
2021-12-30 07:07:33 +08:00
|
|
|
GRADLE_BUILD_ACTION_SKIP_RESTORE: "generated-gradle-jars|wrapper-zips|java-toolchains|instrumented-jars|dependencies|kotlin-dsl"
|
2021-10-16 03:25:25 +08:00
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-09 01:29:13 +08:00
|
|
|
- name: Check executee Gradle build
|
2022-04-05 23:45:02 +08:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-09 01:29:13 +08:00
|
|
|
run: ./gradlew test
|
2021-10-16 03:25:25 +08:00
|
|
|
|
2023-08-20 03:01:29 +08:00
|
|
|
# Test that a pre-existing gradle-user-home can be overwritten by the restored cache
|
|
|
|
pre-existing-gradle-home:
|
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-05 06:34:02 +08:00
|
|
|
uses: actions/checkout@v4
|
2023-08-20 03:01:29 +08:00
|
|
|
- name: Pre-create Gradle User Home
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
mkdir -p ~/.gradle/caches
|
|
|
|
touch ~/.gradle/gradle.properties
|
|
|
|
touch ~/.gradle/caches/dummy.txt
|
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
|
|
|
cache-overwrite-existing: true
|
|
|
|
- name: Check that pre-existing content still exists
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
if [ ! -e ~/.gradle/caches/dummy.txt ]; then
|
|
|
|
echo "::error ::Should find dummy.txt after cache restore"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [ ! -e ~/.gradle/gradle.properties ]; then
|
|
|
|
echo "::error ::Should find gradle.properties after cache restore"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
- name: Execute Gradle build with --offline
|
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
|
|
|
run: ./gradlew test --offline
|