Skip to content

Commit ffc5b54

Browse files
test: conditional signing.
1 parent 0b1f12b commit ffc5b54

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

build-logic/convention/src/main/kotlin/com/autonomousapps/convention/ConventionPlugin.kt

+13-9
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,11 @@ class ConventionPlugin : Plugin<Project> {
9999
}
100100

101101
publishing.publications.all { pub ->
102+
// Sign every publication, except when we're running our functional tests. Note that Gradle has weird behavior
103+
// here, and will still sign publications, even if the predicate is false, if a signatory is configured.
104+
// https://docs.gradle.org/current/userguide/signing_plugin.html#sec:conditional_signing
102105
signing.sign(pub)
106+
signing.setRequired({ !gradle.taskGraph.hasTask(":functionalTest") })
103107

104108
// Some weird behavior with the `com.gradle.plugin-publish` plugin.
105109
// I need to do this in afterEvaluate or it breaks.
@@ -150,14 +154,14 @@ class ConventionPlugin : Plugin<Project> {
150154
}
151155
}
152156

153-
val isRunningTests = objects.property(Boolean::class.java).convention(false)
154-
gradle.taskGraph.whenReady { g ->
155-
g.allTasks.any { t ->
156-
t.name.contains("functionalTest")
157-
}.also {
158-
isRunningTests.set(it)
159-
}
160-
}
157+
// val isRunningTests = objects.property(Boolean::class.java).convention(false)
158+
// gradle.taskGraph.whenReady { g ->
159+
// g.allTasks.any { t ->
160+
// t.name.contains("functionalTest")
161+
// }.also {
162+
// isRunningTests.set(it)
163+
// }
164+
// }
161165

162166
val isCi: Provider<Boolean> = providers
163167
.environmentVariable("CI")
@@ -168,7 +172,7 @@ class ConventionPlugin : Plugin<Project> {
168172
with(t) {
169173
inputs.property("version", publishedVersion)
170174
inputs.property("is-ci", isCi)
171-
inputs.property("is-running-tests", isRunningTests)
175+
// inputs.property("is-running-tests", isRunningTests)
172176

173177
// Don't sign snapshots
174178
onlyIf("Not a snapshot") { !isSnapshot.get() }

0 commit comments

Comments
 (0)