2022-05-29 20:58:14 +00:00
|
|
|
name: Test execution with caching
|
2021-12-17 17:44:29 +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"]'
|
|
|
|
download-dist:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
2021-12-17 17:44:29 +00:00
|
|
|
|
|
|
|
env:
|
2022-05-29 19:47:45 +00:00
|
|
|
DOWNLOAD_DIST: ${{ inputs.download-dist }}
|
2022-05-28 14:55:58 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: execution-with-caching-${{ inputs.cache-key-prefix }}
|
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
2021-12-17 17:44:29 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
seed-build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 18:13:55 +00:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-12-17 17:44:29 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 22:34:02 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-05-29 19:47:45 +00:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2022-05-29 00:01:54 +00:00
|
|
|
- name: Execute Gradle build
|
2021-12-17 17:44:29 +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
|
2022-04-05 15:45:02 +00:00
|
|
|
build-root-directory: .github/workflow-samples/groovy-dsl
|
2021-12-17 17:44:29 +00:00
|
|
|
arguments: test
|
|
|
|
|
|
|
|
# Test that the gradle-user-home is restored
|
|
|
|
verify-build:
|
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 18:13:55 +00:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-12-17 17:44:29 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-04 22:34:02 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-05-29 19:47:45 +00:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-17 17:44:29 +00:00
|
|
|
- name: Execute Gradle build
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2022-04-05 15:45:02 +00:00
|
|
|
build-root-directory: .github/workflow-samples/groovy-dsl
|
2021-12-17 17:44:29 +00:00
|
|
|
arguments: test --offline -DverifyCachedBuild=true
|
|
|
|
|