mirror of
https://github.com/gradle/gradle-build-action.git
synced 2024-11-22 09:02:50 +00:00
Test coverage: Verify local build cache is restored with gradle-user-home
This commit is contained in:
parent
75e00ee3d1
commit
a587e93714
3 changed files with 27 additions and 0 deletions
18
.github/workflows/prod.yml
vendored
18
.github/workflows/prod.yml
vendored
|
@ -89,6 +89,24 @@ jobs:
|
|||
gradle-user-home-cache-enabled: read-only
|
||||
project-dot-gradle-cache-enabled: read-only
|
||||
|
||||
# Test that the gradle-user-home cache will cache and restore local build-cachee
|
||||
build-cache:
|
||||
needs: seed-build
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v2
|
||||
- name: Execute Gradle build and verify tasks from cache
|
||||
uses: ./
|
||||
with:
|
||||
build-root-directory: __tests__/samples/basic
|
||||
arguments: test -DverifyCachedBuild=true
|
||||
gradle-user-home-cache-enabled: read-only
|
||||
project-dot-gradle-cache-enabled: read-only
|
||||
|
||||
configuration-cache:
|
||||
needs: seed-build
|
||||
strategy:
|
||||
|
|
|
@ -9,3 +9,11 @@ repositories {
|
|||
dependencies {
|
||||
testImplementation('junit:junit:4.12')
|
||||
}
|
||||
|
||||
tasks.named("test").configure {
|
||||
doLast {
|
||||
if (System.properties.verifyCachedBuild) {
|
||||
throw new RuntimeException("Build was not cached: unexpected execution of test task")
|
||||
}
|
||||
}
|
||||
}
|
1
__tests__/samples/basic/gradle.properties
Normal file
1
__tests__/samples/basic/gradle.properties
Normal file
|
@ -0,0 +1 @@
|
|||
org.gradle.caching=true
|
Loading…
Reference in a new issue