2023-12-20 17:58:56 +00:00
|
|
|
name: Test caching configuration
|
2021-10-20 21:32:15 +00:00
|
|
|
|
|
|
|
on:
|
2022-05-28 14:55:58 +00:00
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
cache-key-prefix:
|
|
|
|
type: string
|
2022-05-29 18:13:55 +00:00
|
|
|
runner-os:
|
|
|
|
type: string
|
2022-05-29 19:47:45 +00:00
|
|
|
default: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
2021-10-20 21:32:15 +00:00
|
|
|
|
|
|
|
env:
|
2022-05-28 14:55:58 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: action-inputs-caching-${{ inputs.cache-key-prefix }}
|
2021-10-27 22:07:24 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
2021-10-20 21:32:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
seed-build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 18:13:55 +00:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-10-20 21:32:15 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 22:34:02 +00:00
|
|
|
uses: actions/checkout@v4
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2021-10-20 21:32:15 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2022-06-04 17:37:13 +00:00
|
|
|
cache-read-only: false # For testing, allow writing cache entries on non-default branches
|
2021-12-29 20:36:24 +00:00
|
|
|
# Add "enterprise" to main cache entry but omit "notifications"
|
2021-10-27 22:07:24 +00:00
|
|
|
gradle-home-cache-includes: |
|
2021-10-29 13:29:57 +00:00
|
|
|
caches
|
2021-12-29 20:36:24 +00:00
|
|
|
enterprise
|
|
|
|
# Exclude build-cache from main cache entry
|
2021-10-27 22:07:24 +00:00
|
|
|
gradle-home-cache-excludes: |
|
2023-12-20 17:05:25 +00:00
|
|
|
caches/build-cache-*
|
2023-12-20 17:58:56 +00:00
|
|
|
caches/*/executionHistory
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Build using Gradle wrapper
|
2022-04-05 15:45:02 +00:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 17:29:13 +00:00
|
|
|
run: ./gradlew test
|
2021-10-20 21:32:15 +00:00
|
|
|
|
|
|
|
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline
|
|
|
|
verify-build:
|
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 18:13:55 +00:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-10-20 21:32:15 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 22:34:02 +00:00
|
|
|
uses: actions/checkout@v4
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2021-10-20 21:32:15 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2022-01-17 19:37:19 +00:00
|
|
|
# Use the same configuration as used in the seed build
|
2021-10-27 22:07:24 +00:00
|
|
|
gradle-home-cache-includes: |
|
2021-10-29 13:29:57 +00:00
|
|
|
caches
|
2021-12-29 20:36:24 +00:00
|
|
|
enterprise
|
2021-10-27 22:07:24 +00:00
|
|
|
gradle-home-cache-excludes: |
|
2023-12-20 17:05:25 +00:00
|
|
|
caches/build-cache-*
|
2023-12-20 17:58:56 +00:00
|
|
|
caches/*/executionHistory
|
2021-12-08 17:29:13 +00:00
|
|
|
cache-read-only: true
|
|
|
|
- name: Execute Gradle build with --offline
|
2022-04-05 15:45:02 +00:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2021-12-08 17:29:13 +00:00
|
|
|
run: ./gradlew test --offline
|
2021-10-20 21:32:15 +00:00
|
|
|
|
2022-01-17 19:37:19 +00:00
|
|
|
# Test that build scans are captured when caching is explicitly disabled
|
2022-01-17 19:09:38 +00:00
|
|
|
cache-disabled:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 18:13:55 +00:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2022-01-17 19:09:38 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 22:34:02 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-01-17 19:09:38 +00:00
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-disabled: true
|
|
|
|
- name: Run Gradle build
|
|
|
|
id: gradle
|
2022-04-05 15:45:02 +00:00
|
|
|
working-directory: .github/workflow-samples/no-wrapper${{ matrix.build-root-suffix }}
|
2022-01-17 19:09:38 +00:00
|
|
|
run: gradle help "-DgradleVersionCheck=${{matrix.gradle}}"
|
2023-07-22 14:49:39 +00:00
|
|
|
- name: Check Build Scan url is captured
|
2022-01-17 19:09:38 +00:00
|
|
|
if: ${{ !steps.gradle.outputs.build-scan-url }}
|
2023-11-13 22:17:56 +00:00
|
|
|
uses: actions/github-script@v7
|
2022-01-17 19:09:38 +00:00
|
|
|
with:
|
|
|
|
script: |
|
2023-07-22 14:49:39 +00:00
|
|
|
core.setFailed('No Build Scan detected')
|
2022-01-17 19:37:19 +00:00
|
|
|
|
|
|
|
# Test that build scans are captured when caching is disabled because Gradle User Home already exists
|
|
|
|
cache-disabled-pre-existing-gradle-home:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 22:34:02 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-01-17 19:37:19 +00:00
|
|
|
- name: Create dummy Gradle User Home
|
|
|
|
run: mkdir -p ~/.gradle/caches
|
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
- name: Run Gradle build
|
|
|
|
id: gradle
|
2022-04-05 15:45:02 +00:00
|
|
|
working-directory: .github/workflow-samples/no-wrapper${{ matrix.build-root-suffix }}
|
2022-01-17 19:37:19 +00:00
|
|
|
run: gradle help "-DgradleVersionCheck=${{matrix.gradle}}"
|
2023-07-22 14:49:39 +00:00
|
|
|
- name: Check Build Scan url is captured
|
2022-01-17 19:37:19 +00:00
|
|
|
if: ${{ !steps.gradle.outputs.build-scan-url }}
|
2023-11-13 22:17:56 +00:00
|
|
|
uses: actions/github-script@v7
|
2022-01-17 19:37:19 +00:00
|
|
|
with:
|
|
|
|
script: |
|
2023-07-22 14:49:39 +00:00
|
|
|
core.setFailed('No Build Scan detected')
|
2022-01-20 16:36:57 +00:00
|
|
|
|
|
|
|
# Test seed the cache with cache-write-only and verify with cache-read-only
|
|
|
|
seed-build-write-only:
|
|
|
|
env:
|
2022-05-28 14:55:58 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{ inputs.cache-key-prefix }}-write-only-
|
2022-01-20 16:36:57 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 18:13:55 +00:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2022-01-20 16:36:57 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 22:34:02 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-01-20 16:36:57 +00:00
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-write-only: true
|
|
|
|
- name: Build using Gradle wrapper
|
2022-04-05 15:45:02 +00:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2022-01-20 16:36:57 +00:00
|
|
|
run: ./gradlew test
|
|
|
|
|
|
|
|
verify-write-only-build:
|
|
|
|
env:
|
2022-05-28 14:55:58 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{ inputs.cache-key-prefix }}-write-only-
|
2022-01-20 16:36:57 +00:00
|
|
|
needs: seed-build-write-only
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 18:13:55 +00:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2022-01-20 16:36:57 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 22:34:02 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-01-20 16:36:57 +00:00
|
|
|
- name: Setup Gradle
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
|
|
|
- name: Execute Gradle build with --offline
|
2022-04-05 15:45:02 +00:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
2022-01-20 16:36:57 +00:00
|
|
|
run: ./gradlew test --offline
|
|
|
|
|