gradle-build-action/.github/workflows/integTest-execution-with-caching.yml

50 lines
1.2 KiB
YAML
Raw Normal View History

name: Test save/restore Gradle state with direct execution
on:
pull_request:
types: [assigned, review_requested]
push:
paths:
- '.github/workflows/**'
- 'dist/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
env:
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}:${{github.run_attempt}}-
jobs:
seed-build:
strategy:
matrix:
2022-02-03 16:11:06 +00:00
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Exucute Gradle build
uses: ./
with:
2022-04-02 18:33:04 +00:00
build-root-directory: .github/workflows/samples/groovy-dsl
arguments: test
# Test that the gradle-user-home is restored
verify-build:
needs: seed-build
strategy:
matrix:
2022-02-03 16:11:06 +00:00
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Execute Gradle build
uses: ./
with:
cache-read-only: true
2022-04-02 18:33:04 +00:00
build-root-directory: .github/workflows/samples/groovy-dsl
arguments: test --offline -DverifyCachedBuild=true