mirror of
https://github.com/gradle/actions.git
synced 2025-12-08 17:15:46 +08:00
Move workflow samples under .github
This commit is contained in:
22
.github/workflows/samples/groovy-dsl/build.gradle
vendored
Normal file
22
.github/workflows/samples/groovy-dsl/build.gradle
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
plugins {
|
||||
id 'java'
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation('junit:junit:4.12')
|
||||
}
|
||||
|
||||
tasks.named("test").configure {
|
||||
// Echo an output value so we can detect configuration-cache usage
|
||||
println "::set-output name=task_configured::yes"
|
||||
|
||||
doLast {
|
||||
if (System.properties.verifyCachedBuild) {
|
||||
throw new RuntimeException("Build was not cached: unexpected execution of test task")
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user