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:
|
2020-06-13 07:14:52 -04:00
|
|
|
push:
|
2021-08-20 16:00:30 -04:00
|
|
|
workflow_dispatch:
|
2020-06-13 07:14:52 -04:00
|
|
|
|
2021-08-26 18:56:06 -04:00
|
|
|
env:
|
2021-10-27 18:07:24 -04:00
|
|
|
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}-
|
2021-08-26 18:56:06 -04:00
|
|
|
|
2020-06-13 07:14:52 -04:00
|
|
|
jobs:
|
2021-08-26 19:55:19 -04:00
|
|
|
# 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.
|
2021-08-27 07:08:32 -04:00
|
|
|
seed-build:
|
2020-06-14 06:22:21 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-10-21 14:08:17 -04:00
|
|
|
os: [ubuntu-latest, windows-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-08-17 18:32:51 -04:00
|
|
|
- name: Build using Gradle wrapper
|
2020-06-13 07:17:04 -04:00
|
|
|
uses: ./
|
2020-06-13 07:14:52 -04:00
|
|
|
with:
|
2021-09-28 22:31:11 -04:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 08:56:16 -04:00
|
|
|
arguments: 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:
|
2021-10-21 14:08:17 -04:00
|
|
|
os: [ubuntu-latest, windows-latest]
|
2021-07-26 17:14:39 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2021-08-27 07:08:32 -04:00
|
|
|
- name: Execute Gradle build with --offline
|
2021-07-26 17:14:39 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-28 22:31:11 -04:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 07:08:32 -04:00
|
|
|
arguments: test --offline
|
2021-09-12 16:26:38 -04:00
|
|
|
cache-read-only: true
|
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:
|
2021-10-21 14:08:17 -04:00
|
|
|
os: [ubuntu-latest, windows-latest]
|
2021-08-27 07:40:14 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Execute Gradle build and verify tasks from cache
|
|
|
|
uses: ./
|
|
|
|
with:
|
2021-09-28 22:31:11 -04:00
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
2021-08-27 07:40:14 -04:00
|
|
|
arguments: test -DverifyCachedBuild=true
|
2021-09-12 16:26:38 -04:00
|
|
|
cache-read-only: true
|
2021-08-27 07:40:14 -04:00
|
|
|
|
2021-10-15 15:25:25 -04:00
|
|
|
# Check that the build can run when no bundles are restored
|
|
|
|
no-bundles-restored:
|
|
|
|
needs: seed-build
|
2021-10-21 14:08:17 -04:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2021-10-15 15:25:25 -04:00
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Execute Gradle build with no cache artifact bundles restored
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
build-root-directory: __tests__/samples/groovy-dsl
|
|
|
|
arguments: test
|
|
|
|
cache-read-only: true
|
2021-10-27 18:07:24 -04:00
|
|
|
gradle-home-cache-artifact-bundles: '[]'
|
2021-10-15 15:25:25 -04:00
|
|
|
|