2021-10-29 10:14:50 -04:00
|
|
|
name: Test save/restore Gradle Home directory
|
2020-06-13 07:14:52 -04:00
|
|
|
|
|
|
|
on:
|
2020-06-15 14:03:30 -04:00
|
|
|
pull_request:
|
2021-12-08 16:20:13 -05:00
|
|
|
types: [assigned, review_requested]
|
2020-06-13 07:14:52 -04:00
|
|
|
push:
|
2022-04-02 14:49:55 -04:00
|
|
|
paths:
|
2022-04-05 11:45:02 -04:00
|
|
|
- '.github/**'
|
2022-04-02 14:49:55 -04:00
|
|
|
- 'dist/**'
|
2021-08-20 16:00:30 -04:00
|
|
|
workflow_dispatch:
|
2020-06-13 07:14:52 -04:00
|
|
|
|
2022-03-14 15:28:54 -04:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}
|
|
|
|
|
2021-08-26 18:56:06 -04:00
|
|
|
env:
|
2022-01-18 12:52:22 -05:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
|
2021-08-26 18:56:06 -04:00
|
|
|
|
2020-06-13 07:14:52 -04:00
|
|
|
jobs:
|
2021-08-27 07:08:32 -04:00
|
|
|
seed-build:
|
2020-06-14 06:22:21 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2020-06-14 06:22:21 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-13 07:14:52 -04:00
|
|
|
steps:
|
2020-06-13 07:17:04 -04:00
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2020-06-13 07:17:04 -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
|
2021-06-24 15:13:54 -04:00
|
|
|
|
2021-08-27 07:08:32 -04:00
|
|
|
# Test that the gradle-user-home cache will cache dependencies, by running build with --offline
|
2021-07-26 17:14:39 -04:00
|
|
|
dependencies-cache:
|
2021-08-27 07:08:32 -04:00
|
|
|
needs: seed-build
|
2021-07-26 17:14:39 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-07-26 17:14:39 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2021-07-26 17:14:39 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-12 16:26:38 -04:00
|
|
|
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
|
2021-07-26 17:14:39 -04:00
|
|
|
|
2021-08-27 08:36:29 -04:00
|
|
|
# Test that the gradle-user-home cache will cache and restore local build-cache
|
2021-08-27 07:40:14 -04:00
|
|
|
build-cache:
|
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-08-27 07:40:14 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle
|
2021-08-27 07:40:14 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-12 16:26:38 -04:00
|
|
|
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
|
2021-08-27 07:40:14 -04:00
|
|
|
|
2021-12-02 16:38:23 -05:00
|
|
|
# Check that the build can run when Gradle User Home is not fully restored
|
|
|
|
no-extracted-cache-entries-restored:
|
2021-10-15 15:25:25 -04:00
|
|
|
needs: seed-build
|
2021-10-21 14:08:17 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-10-21 14:08:17 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
2021-10-15 15:25:25 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Setup Gradle with no extracted cache entries restored
|
2021-10-15 15:25:25 -04:00
|
|
|
uses: ./
|
2021-12-29 15:36:24 -05:00
|
|
|
env:
|
2021-12-29 18:07:33 -05:00
|
|
|
GRADLE_BUILD_ACTION_SKIP_RESTORE: "generated-gradle-jars|wrapper-zips|java-toolchains|instrumented-jars|dependencies|kotlin-dsl"
|
2021-10-15 15:25:25 -04:00
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2021-12-08 12:29:13 -05:00
|
|
|
- name: Check executee Gradle build
|
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
|
2021-10-15 15:25:25 -04:00
|
|
|
|