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
|
2024-08-03 18:19:43 +00:00
|
|
|
default: '0'
|
2022-05-29 18:13:55 +00:00
|
|
|
runner-os:
|
|
|
|
type: string
|
2024-08-03 18:19:43 +00:00
|
|
|
default: '["ubuntu-latest"]'
|
2024-04-12 05:28:09 +00:00
|
|
|
skip-dist:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
2021-10-20 21:32:15 +00:00
|
|
|
|
|
|
|
env:
|
2024-04-12 05:28:09 +00:00
|
|
|
SKIP_DIST: ${{ inputs.skip-dist }}
|
2024-04-11 02:07:14 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: caching-config-${{ inputs.cache-key-prefix }}
|
2021-10-20 21:32:15 +00:00
|
|
|
|
2024-11-14 02:01:45 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-10-20 21:32:15 +00:00
|
|
|
jobs:
|
2024-08-03 18:19:43 +00:00
|
|
|
caching-config-seed-build:
|
2021-10-20 21:32:15 +00:00
|
|
|
strategy:
|
2024-08-07 14:13:13 +00:00
|
|
|
max-parallel: 1
|
2024-04-09 22:02:24 +00:00
|
|
|
fail-fast: false
|
2021-10-20 21:32:15 +00:00
|
|
|
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
|
2024-11-14 19:19:48 +00:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-04-06 18:52:36 +00:00
|
|
|
- name: Initialize integ-test
|
|
|
|
uses: ./.github/actions/init-integ-test
|
|
|
|
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2024-01-25 18:49:04 +00:00
|
|
|
uses: ./setup-gradle
|
2021-10-20 21:32:15 +00:00
|
|
|
with:
|
2022-06-04 17:37:13 +00:00
|
|
|
cache-read-only: false # For testing, allow writing cache entries on non-default branches
|
2024-04-03 21:09:53 +00:00
|
|
|
# Add "application" 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
|
2024-04-03 21:09:53 +00:00
|
|
|
application
|
2021-12-29 20:36:24 +00:00
|
|
|
# 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
|
2024-08-03 18:19:43 +00:00
|
|
|
caching-config-verify-build:
|
|
|
|
needs: caching-config-seed-build
|
2021-10-20 21:32:15 +00:00
|
|
|
strategy:
|
2024-08-07 14:13:13 +00:00
|
|
|
max-parallel: 1
|
2024-04-09 22:02:24 +00:00
|
|
|
fail-fast: false
|
2021-10-20 21:32:15 +00:00
|
|
|
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
|
2024-11-14 19:19:48 +00:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-04-06 18:52:36 +00:00
|
|
|
- name: Initialize integ-test
|
|
|
|
uses: ./.github/actions/init-integ-test
|
|
|
|
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2024-01-25 18:49:04 +00:00
|
|
|
uses: ./setup-gradle
|
2021-10-20 21:32:15 +00:00
|
|
|
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
|
2024-04-03 21:09:53 +00:00
|
|
|
application
|
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
|
2024-08-03 18:19:43 +00:00
|
|
|
caching-config-cache-disabled:
|
2022-01-17 19:09:38 +00:00
|
|
|
strategy:
|
2024-08-07 14:13:13 +00:00
|
|
|
max-parallel: 1
|
2024-04-09 22:02:24 +00:00
|
|
|
fail-fast: false
|
2022-01-17 19:09:38 +00:00
|
|
|
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
|
2024-11-14 19:19:48 +00:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-04-06 18:52:36 +00:00
|
|
|
- name: Initialize integ-test
|
|
|
|
uses: ./.github/actions/init-integ-test
|
|
|
|
|
2022-01-17 19:09:38 +00:00
|
|
|
- name: Setup Gradle
|
2024-01-25 18:49:04 +00:00
|
|
|
uses: ./setup-gradle
|
2022-01-17 19:09:38 +00:00
|
|
|
with:
|
|
|
|
cache-disabled: true
|
2024-04-06 19:50:39 +00:00
|
|
|
- name: Build using Gradle wrapper
|
2022-01-17 19:09:38 +00:00
|
|
|
id: gradle
|
2024-04-06 19:50:39 +00:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
|
|
|
run: ./gradlew help
|
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 }}
|
2024-11-14 19:35:29 +00:00
|
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
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
|
2024-08-03 18:19:43 +00:00
|
|
|
caching-config-cache-disabled-pre-existing-gradle-home:
|
2024-04-10 11:45:58 +00:00
|
|
|
runs-on: ubuntu-latest # This test only runs on Ubuntu
|
2022-01-17 19:37:19 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2024-11-14 19:19:48 +00:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-04-06 18:52:36 +00:00
|
|
|
- name: Initialize integ-test
|
|
|
|
uses: ./.github/actions/init-integ-test
|
|
|
|
|
2022-01-17 19:37:19 +00:00
|
|
|
- name: Create dummy Gradle User Home
|
|
|
|
run: mkdir -p ~/.gradle/caches
|
|
|
|
- name: Setup Gradle
|
2024-01-25 18:49:04 +00:00
|
|
|
uses: ./setup-gradle
|
2024-04-06 19:50:39 +00:00
|
|
|
- name: Build using Gradle wrapper
|
2022-01-17 19:37:19 +00:00
|
|
|
id: gradle
|
2024-04-06 19:50:39 +00:00
|
|
|
working-directory: .github/workflow-samples/groovy-dsl
|
|
|
|
run: ./gradlew help
|
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 }}
|
2024-11-14 19:35:29 +00:00
|
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
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
|
2024-08-03 18:19:43 +00:00
|
|
|
caching-config-seed-write-only:
|
2022-01-20 16:36:57 +00:00
|
|
|
env:
|
2024-08-03 18:19:43 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: caching-config-write-only-${{ inputs.cache-key-prefix }}
|
2022-01-20 16:36:57 +00:00
|
|
|
strategy:
|
2024-08-07 14:13:13 +00:00
|
|
|
max-parallel: 1
|
2024-04-09 22:02:24 +00:00
|
|
|
fail-fast: false
|
2022-01-20 16:36:57 +00:00
|
|
|
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
|
2024-11-14 19:19:48 +00:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-04-06 18:52:36 +00:00
|
|
|
- name: Initialize integ-test
|
|
|
|
uses: ./.github/actions/init-integ-test
|
|
|
|
|
2022-01-20 16:36:57 +00:00
|
|
|
- name: Setup Gradle
|
2024-01-25 18:49:04 +00:00
|
|
|
uses: ./setup-gradle
|
2022-01-20 16:36:57 +00:00
|
|
|
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
|
|
|
|
|
2024-08-03 18:19:43 +00:00
|
|
|
caching-config-verify-write-only:
|
2022-01-20 16:36:57 +00:00
|
|
|
env:
|
2024-08-03 18:19:43 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: caching-config-write-only-${{ inputs.cache-key-prefix }}
|
|
|
|
needs: caching-config-seed-write-only
|
2022-01-20 16:36:57 +00:00
|
|
|
strategy:
|
2024-08-07 14:13:13 +00:00
|
|
|
max-parallel: 1
|
2024-04-09 22:02:24 +00:00
|
|
|
fail-fast: false
|
2022-01-20 16:36:57 +00:00
|
|
|
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
|
2024-11-14 19:19:48 +00:00
|
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-04-06 18:52:36 +00:00
|
|
|
- name: Initialize integ-test
|
|
|
|
uses: ./.github/actions/init-integ-test
|
|
|
|
|
2022-01-20 16:36:57 +00:00
|
|
|
- name: Setup Gradle
|
2024-01-25 18:49:04 +00:00
|
|
|
uses: ./setup-gradle
|
2022-01-20 16:36:57 +00:00
|
|
|
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
|
|
|
|
|