2021-12-17 12:44:29 -05:00
|
|
|
name: Test save/restore Gradle state with direct execution
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
types: [assigned, review_requested]
|
|
|
|
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-12-17 12:44:29 -05:00
|
|
|
workflow_dispatch:
|
|
|
|
|
2022-03-14 15:28:54 -04:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}
|
|
|
|
|
2021-12-17 12:44:29 -05: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-12-17 12:44:29 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
seed-build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-12-17 12:44:29 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
2022-05-28 20:01:54 -04:00
|
|
|
- name: Execute Gradle build
|
2021-12-17 12:44:29 -05:00
|
|
|
uses: ./
|
|
|
|
with:
|
2022-04-05 11:45:02 -04:00
|
|
|
build-root-directory: .github/workflow-samples/groovy-dsl
|
2021-12-17 12:44:29 -05:00
|
|
|
arguments: test
|
|
|
|
|
|
|
|
# Test that the gradle-user-home is restored
|
|
|
|
verify-build:
|
|
|
|
needs: seed-build
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-02-03 11:11:06 -05:00
|
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
2021-12-17 12:44:29 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Execute Gradle build
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
cache-read-only: true
|
2022-04-05 11:45:02 -04:00
|
|
|
build-root-directory: .github/workflow-samples/groovy-dsl
|
2021-12-17 12:44:29 -05:00
|
|
|
arguments: test --offline -DverifyCachedBuild=true
|
|
|
|
|