We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8017fc3 commit f7204d4Copy full SHA for f7204d4
build.gradle
@@ -99,6 +99,7 @@ allprojects {
99
100
apply from: script("ide")
101
102
+boolean isCiServer = System.env["CI"] || System.env["GITHUB_ACTIONS"]
103
subprojects {
104
apply plugin: "java-library"
105
apply plugin: "groovy"
@@ -195,7 +196,10 @@ subprojects {
195
196
}
197
198
// As a generous general timeout, instead of the 6h of GHA.
- timeout = Duration.ofMinutes(15)
199
+ // But only on CI or longer needing debug sessions get killed by the timeout.
200
+ if (isCiServer) {
201
+ timeout = Duration.ofMinutes(15)
202
+ }
203
204
205
tasks.register("allDependencyInsight", DependencyInsightReportTask) {}
0 commit comments