gradle-build-action/.github/workflows/integTest-caching-configuration-cache.yml

67 lines
2 KiB
YAML
Raw Normal View History

name: Test save/restore configuration-cache state
2020-06-13 07:14:52 -04:00
on:
2020-06-15 14:03:30 -04:00
pull_request:
types: [assigned, review_requested]
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
env:
2021-10-27 18:07:24 -04:00
GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX: ${{github.workflow}}#${{github.run_number}}-
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
2020-06-13 07:14:52 -04:00
jobs:
# 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.
seed-build:
2020-06-14 06:22:21 -04:00
strategy:
matrix:
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
- name: Build with configuration-cache enabled
uses: ./
with:
2021-09-28 22:31:11 -04:00
build-root-directory: __tests__/samples/groovy-dsl
arguments: test --configuration-cache
# Test that the project-dot-gradle cache will cache and restore configuration-cache
configuration-cache:
needs: seed-build
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Execute Gradle build and verify cached configuration
uses: ./
env:
VERIFY_CACHED_CONFIGURATION: true
with:
2021-09-28 22:31:11 -04:00
build-root-directory: __tests__/samples/groovy-dsl
arguments: test --configuration-cache
cache-read-only: true
# Check that the build can run when no extracted cache entries are restored
no-extracted-cache-entries-restored:
needs: seed-build
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Execute Gradle build with no cache extracted cache entries restored
uses: ./
with:
build-root-directory: __tests__/samples/groovy-dsl
arguments: test --configuration-cache
cache-read-only: true
gradle-home-extracted-cache-entries: '[]'