2022-05-29 16:58:14 -04:00
|
|
|
name: Test restore Gradle Home
|
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"]'
|
2020-06-13 07:14:52 -04:00
|
|
|
|
2021-08-26 18:56:06 -04:00
|
|
|
env:
|
2022-05-28 10:55:58 -04: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-26 18:56:06 -04:00
|
|
|
|
2020-06-13 07:14:52 -04:00
|
|
|
jobs:
|
2021-08-27 07:08:32 -04:00
|
|
|
seed-build:
|
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
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2020-06-13 07:17:04 -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
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Build using Gradle wrapper
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 12:29:13 -05:00
|
|
|
run: ./gradlew test
|
2021-06-24 15:13:54 -04:00
|
|
|
|
2021-08-27 07:08:32 -04:00
|
|
|
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline
|
2021-07-26 17:14:39 -04:00
|
|
|
dependencies-cache:
|
2021-08-27 07:08:32 -04:00
|
|
|
needs: seed-build
|
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
|
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 with --offline
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 12:29:13 -05:00
|
|
|
run: ./gradlew test --offline
|
2021-07-26 17:14:39 -04:00
|
|
|
|
2021-08-27 08:36:29 -04:00
|
|
|
# Test that the gradle-user-home cache will cache and restore local build-cache
|
2021-08-27 07:40:14 -04:00
|
|
|
build-cache:
|
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-08-27 07:40:14 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2021-08-27 07:40:14 -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 tasks from cache
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 12:29:13 -05:00
|
|
|
run: ./gradlew test -DverifyCachedBuild=true
|
2021-08-27 07:40:14 -04:00
|
|
|
|
2021-12-02 16:38:23 -05:00
|
|
|
# Check that the build can run when Gradle User Home is not fully 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:
|
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
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle with no extracted cache entries restored
|
2021-10-15 15:25:25 -04:00
|
|
|
uses: ./
|
2021-12-29 15:36:24 -05:00
|
|
|
env:
|
2021-12-29 18:07:33 -05:00
|
|
|
GRADLE_BUILD_ACTION_SKIP_RESTORE: "generated-gradle-jars|wrapper-zips|java-toolchains|instrumented-jars|dependencies|kotlin-dsl"
|
2021-10-15 15:25:25 -04:00
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Check executee Gradle build
|
2022-04-05 11:45:02 -04:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 12:29:13 -05:00
|
|
|
run: ./gradlew test
|
2021-10-15 15:25:25 -04:00
|
|
|
|
2023-08-19 15:01:29 -04: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-04 18:34:02 -04:00
|
|
|
uses: actions/checkout@v4
|
2023-08-19 15:01:29 -04: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
|