2022-05-29 14:58:14 -06:00
|
|
|
name: Test restore Gradle Home
|
2020-06-13 13:14:52 +02:00
|
|
|
|
|
|
|
on:
|
2022-05-28 08:55:58 -06:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
cache-key-prefix:
|
|
|
|
type: string
|
2022-05-29 12:13:55 -06:00
|
|
|
runner-os:
|
|
|
|
type: string
|
2022-05-29 13:47:45 -06:00
|
|
|
default: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
|
|
|
download-dist:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
2020-06-13 13:14:52 +02:00
|
|
|
|
2021-08-26 16:56:06 -06:00
|
|
|
env:
|
2022-05-29 13:47:45 -06:00
|
|
|
DOWNLOAD_DIST: ${{ inputs.download-dist }}
|
2022-05-28 08:55:58 -06: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 16:56:06 -06:00
|
|
|
|
2020-06-13 13:14:52 +02:00
|
|
|
jobs:
|
2021-08-27 05:08:32 -06:00
|
|
|
seed-build:
|
2020-06-14 12:22:21 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 12:13:55 -06:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2020-06-14 12:22:21 +02:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-13 13:14:52 +02:00
|
|
|
steps:
|
2020-06-13 13:17:04 +02:00
|
|
|
- name: Checkout sources
|
2022-06-04 09:26:11 -06:00
|
|
|
uses: actions/checkout@v3
|
2022-05-29 13:47:45 -06:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-08 10:29:13 -07:00
|
|
|
- name: Setup Gradle
|
2020-06-13 13:17:04 +02:00
|
|
|
uses: ./
|
2022-06-04 11:37:13 -06:00
|
|
|
with:
|
|
|
|
cache-read-only: false # For testing, allow writing cache entries on non-default branches
|
2021-12-08 10:29:13 -07:00
|
|
|
- name: Build using Gradle wrapper
|
2022-04-05 09:45:02 -06:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 10:29:13 -07:00
|
|
|
run: ./gradlew test
|
2021-06-24 12:13:54 -07:00
|
|
|
|
2021-08-27 05:08:32 -06:00
|
|
|
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline
|
2021-07-26 15:14:39 -06:00
|
|
|
dependencies-cache:
|
2021-08-27 05:08:32 -06:00
|
|
|
needs: seed-build
|
2021-07-26 15:14:39 -06:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 12:13:55 -06:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-07-26 15:14:39 -06:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2022-06-04 09:26:11 -06:00
|
|
|
uses: actions/checkout@v3
|
2022-05-29 13:47:45 -06:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-08 10:29:13 -07:00
|
|
|
- name: Setup Gradle
|
2021-07-26 15:14:39 -06:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-12 14:26:38 -06:00
|
|
|
cache-read-only: true
|
2021-12-08 10:29:13 -07:00
|
|
|
- name: Execute Gradle build with --offline
|
2022-04-05 09:45:02 -06:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 10:29:13 -07:00
|
|
|
run: ./gradlew test --offline
|
2021-07-26 15:14:39 -06:00
|
|
|
|
2021-08-27 06:36:29 -06:00
|
|
|
# Test that the gradle-user-home cache will cache and restore local build-cache
|
2021-08-27 05:40:14 -06:00
|
|
|
build-cache:
|
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 12:13:55 -06:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-08-27 05:40:14 -06:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2022-06-04 09:26:11 -06:00
|
|
|
uses: actions/checkout@v3
|
2022-05-29 13:47:45 -06:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-08 10:29:13 -07:00
|
|
|
- name: Setup Gradle
|
2021-08-27 05:40:14 -06:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-12 14:26:38 -06:00
|
|
|
cache-read-only: true
|
2021-12-08 10:29:13 -07:00
|
|
|
- name: Execute Gradle build and verify tasks from cache
|
2022-04-05 09:45:02 -06:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 10:29:13 -07:00
|
|
|
run: ./gradlew test -DverifyCachedBuild=true
|
2021-08-27 05:40:14 -06:00
|
|
|
|
2021-12-02 14:38:23 -07:00
|
|
|
# Check that the build can run when Gradle User Home is not fully restored
|
|
|
|
no-extracted-cache-entries-restored:
|
2021-10-15 13:25:25 -06:00
|
|
|
needs: seed-build
|
2021-10-21 12:08:17 -06:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 12:13:55 -06:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-10-21 12:08:17 -06:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-10-15 13:25:25 -06:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2022-06-04 09:26:11 -06:00
|
|
|
uses: actions/checkout@v3
|
2022-05-29 13:47:45 -06:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-08 10:29:13 -07:00
|
|
|
- name: Setup Gradle with no extracted cache entries restored
|
2021-10-15 13:25:25 -06:00
|
|
|
uses: ./
|
2021-12-29 13:36:24 -07:00
|
|
|
env:
|
2021-12-29 16:07:33 -07:00
|
|
|
GRADLE_BUILD_ACTION_SKIP_RESTORE: "generated-gradle-jars|wrapper-zips|java-toolchains|instrumented-jars|dependencies|kotlin-dsl"
|
2021-10-15 13:25:25 -06:00
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-08 10:29:13 -07:00
|
|
|
- name: Check executee Gradle build
|
2022-04-05 09:45:02 -06:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 10:29:13 -07:00
|
|
|
run: ./gradlew test
|
2021-10-15 13:25:25 -06:00
|
|
|
|
2023-08-19 13:01:29 -06: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
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
|
|
|
- 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
|