2021-09-28 01:48:26 +00:00
|
|
|
name: Test caching with a custom GRADLE_USER_HOME
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2021-12-08 21:20:13 +00:00
|
|
|
types: [assigned, review_requested]
|
2021-09-28 01:48:26 +00:00
|
|
|
push:
|
2022-04-02 18:49:55 +00:00
|
|
|
paths:
|
2022-04-05 15:45:02 +00:00
|
|
|
- '.github/**'
|
2022-04-02 18:49:55 +00:00
|
|
|
- 'dist/**'
|
2021-09-28 01:48:26 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
|
2022-03-14 19:28:54 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}
|
|
|
|
|
2021-09-28 01:48:26 +00:00
|
|
|
env:
|
2022-01-18 17:52:22 +00:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
|
2021-12-08 17:29:13 +00:00
|
|
|
GRADLE_USER_HOME: ${{github.workspace}}/custom/gradle/home
|
2021-09-28 01:48:26 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Run initial Gradle builds to push initial cache entries
|
|
|
|
# These builds should start fresh without cache hits, due to the seed injected into the cache key above.
|
|
|
|
seed-build:
|
2021-10-21 18:08:17 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 16:11:06 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-10-21 18:08:17 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-28 01:48:26 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2021-09-28 01:48:26 +00:00
|
|
|
uses: ./
|
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 --info
|
2021-09-28 01:48:26 +00:00
|
|
|
|
|
|
|
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline
|
|
|
|
dependencies-cache:
|
|
|
|
needs: seed-build
|
2021-10-21 18:08:17 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 16:11:06 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-10-21 18:08:17 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-28 01:48:26 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2021-09-28 01:48:26 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-08 17:29:13 +00:00
|
|
|
- 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 --info
|
2021-09-28 01:48:26 +00:00
|
|
|
|
|
|
|
# Test that the gradle-user-home cache will cache and restore local build-cache
|
|
|
|
build-cache:
|
|
|
|
needs: seed-build
|
2021-10-21 18:08:17 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 16:11:06 +00:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-10-21 18:08:17 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-09-28 01:48:26 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2021-09-28 01:48:26 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Execute Gradle build and verify tasks from cache
|
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 -DverifyCachedBuild=true --info
|