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