oblak/build-logic/src/main/kotlin/cloud.example-conventions.gradle.kts
2021-07-05 02:56:06 -07:00

10 lines
219 B
Kotlin

plugins {
id("cloud.base-conventions")
}
// Only compile examples on CI, or when the compile-examples property exists
if (!ci.get() && !compileExamples) {
tasks.configureEach {
onlyIf { false }
}
}