Skip to content

Commit 20eb968

Browse files
yissacharsvc-squareup-copybara
authored andcommitted
Only run misk-admin:buildMiskWeb on CI or if specifically
requested GitOrigin-RevId: d15efa35e179e442a4df30d55c664b5b14f077da
1 parent c6e2300 commit 20eb968

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

misk-admin/build.gradle.kts

+7-6
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,13 @@ val buildMiskWeb = tasks.register("buildMiskWeb", MiskWebBuildTask::class.java)
166166
outputFiles.setFrom(outputs)
167167
}
168168

169-
tasks.named { it == "explodeCodeSourceMain" }.configureEach {
170-
dependsOn(buildMiskWeb)
171-
}
172-
173-
tasks.named("processResources").configure {
174-
dependsOn(buildMiskWeb)
169+
// buildMiskWeb is expensive and generally not needed locally. Only build it on CI, or if
170+
// specifically requested.
171+
val isCi = System.getenv("CI") == "true" || System.getenv("GITHUB_ACTIONS") != null
172+
if (isCi || System.getProperty("misk.admin.buildMiskWeb") == "true") {
173+
tasks.named { it == "explodeCodeSourceMain" || it == "processResources" }.configureEach {
174+
dependsOn(buildMiskWeb)
175+
}
175176
}
176177

177178
sourceSets {

0 commit comments

Comments
 (0)