2022-05-29 16:58:14 -04:00
|
|
|
name: Test restore custom Gradle Home
|
2021-09-27 21:48:26 -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"]'
|
|
|
|
download-dist:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
2021-09-27 21:48:26 -04:00
|
|
|
|
|
|
|
env:
|
2022-05-29 15:47:45 -04:00
|
|
|
DOWNLOAD_DIST: ${{ inputs.download-dist }}
|
2022-05-28 10:55:58 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: restore-custom-gradle-home-${{ inputs.cache-key-prefix }}
|
|
|
|
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
|
2021-09-27 21:48:26 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
seed-build:
|
2021-10-21 14:08:17 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-10-21 14:08:17 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-27 21:48:26 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2022-05-29 15:47:45 -04:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2021-09-27 21:48:26 -04:00
|
|
|
uses: ./
|
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 --info
|
2021-09-27 21:48:26 -04:00
|
|
|
|
|
|
|
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline
|
|
|
|
dependencies-cache:
|
|
|
|
needs: seed-build
|
2021-10-21 14:08:17 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-10-21 14:08:17 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-27 21:48:26 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2022-05-29 15:47:45 -04:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2021-09-27 21:48:26 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-08 12:29:13 -05:00
|
|
|
- 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 --info
|
2021-09-27 21:48:26 -04:00
|
|
|
|
|
|
|
# Test that the gradle-user-home cache will cache and restore local build-cache
|
|
|
|
build-cache:
|
|
|
|
needs: seed-build
|
2021-10-21 14:08:17 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-29 14:13:55 -04:00
|
|
|
os: ${{fromJSON(inputs.runner-os)}}
|
2021-10-21 14:08:17 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-27 21:48:26 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2022-05-29 15:47:45 -04:00
|
|
|
- name: Download distribution if required
|
|
|
|
uses: ./.github/actions/download-dist
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2021-09-27 21:48:26 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Execute Gradle build and verify tasks from cache
|
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 -DverifyCachedBuild=true --info
|