2021-10-29 14:14:50 +00:00
|
|
|
name: Test save/restore Gradle Home directory
|
2020-06-13 11:14:52 +00:00
|
|
|
|
|
|
|
on:
|
2020-06-15 18:03:30 +00:00
|
|
|
pull_request:
|
2021-12-08 21:20:13 +00:00
|
|
|
types: [assigned, review_requested]
|
2020-06-13 11:14:52 +00:00
|
|
|
push:
|
2021-08-20 20:00:30 +00:00
|
|
|
workflow_dispatch:
|
2020-06-13 11:14:52 +00:00
|
|
|
|
2021-08-26 22:56:06 +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-08-26 22:56:06 +00:00
|
|
|
|
2020-06-13 11:14:52 +00:00
|
|
|
jobs:
|
2021-08-27 11:08:32 +00:00
|
|
|
seed-build:
|
2020-06-14 10:22:21 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-21 18:08:17 +00:00
|
|
|
os: [ubuntu-latest, windows-latest]
|
2020-06-14 10:22:21 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-13 11:14:52 +00:00
|
|
|
steps:
|
2020-06-13 11:17:04 +00:00
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2020-06-13 11:17:04 +00:00
|
|
|
uses: ./
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Build using Gradle wrapper
|
|
|
|
working-directory: __tests__/samples/groovy-dsl
|
|
|
|
run: ./gradlew test
|
2021-06-24 19:13:54 +00:00
|
|
|
|
2021-08-27 11:08:32 +00:00
|
|
|
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline
|
2021-07-26 21:14:39 +00:00
|
|
|
dependencies-cache:
|
2021-08-27 11:08:32 +00:00
|
|
|
needs: seed-build
|
2021-07-26 21:14:39 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-21 18:08:17 +00:00
|
|
|
os: [ubuntu-latest, windows-latest]
|
2021-07-26 21:14:39 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2021-07-26 21:14:39 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-12 20:26:38 +00:00
|
|
|
cache-read-only: true
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Execute Gradle build with --offline
|
|
|
|
working-directory: __tests__/samples/groovy-dsl
|
|
|
|
run: ./gradlew test --offline
|
2021-07-26 21:14:39 +00:00
|
|
|
|
2021-08-27 12:36:29 +00:00
|
|
|
# Test that the gradle-user-home cache will cache and restore local build-cache
|
2021-08-27 11:40:14 +00:00
|
|
|
build-cache:
|
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-21 18:08:17 +00:00
|
|
|
os: [ubuntu-latest, windows-latest]
|
2021-08-27 11:40:14 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle
|
2021-08-27 11:40:14 +00:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-12 20:26:38 +00:00
|
|
|
cache-read-only: true
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Execute Gradle build and verify tasks from cache
|
|
|
|
working-directory: __tests__/samples/groovy-dsl
|
|
|
|
run: ./gradlew test -DverifyCachedBuild=true
|
2021-08-27 11:40:14 +00:00
|
|
|
|
2021-12-02 21:38:23 +00:00
|
|
|
# Check that the build can run when Gradle User Home is not fully restored
|
|
|
|
no-extracted-cache-entries-restored:
|
2021-10-15 19:25:25 +00:00
|
|
|
needs: seed-build
|
2021-10-21 18:08:17 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2021-10-15 19:25:25 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Setup Gradle with no extracted cache entries restored
|
2021-10-15 19:25:25 +00:00
|
|
|
uses: ./
|
2021-12-29 20:36:24 +00:00
|
|
|
env:
|
2021-12-29 23:07:33 +00:00
|
|
|
GRADLE_BUILD_ACTION_SKIP_RESTORE: "generated-gradle-jars|wrapper-zips|java-toolchains|instrumented-jars|dependencies|kotlin-dsl"
|
2021-10-15 19:25:25 +00:00
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-08 17:29:13 +00:00
|
|
|
- name: Check executee Gradle build
|
|
|
|
working-directory: __tests__/samples/groovy-dsl
|
|
|
|
run: ./gradlew test
|
2021-10-15 19:25:25 +00:00
|
|
|
|