forked from signalapp/Signal-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
163 lines (143 loc) · 4.79 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.async
import kotlinx.coroutines.awaitAll
import kotlinx.coroutines.runBlocking
import java.io.FileNotFoundException
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.jetbrains.kotlin.android) apply false
alias(libs.plugins.jetbrains.kotlin.jvm) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.ktlint)
}
buildscript {
repositories {
google()
mavenCentral()
maven {
url = uri("https://plugins.gradle.org/m2/")
content {
includeGroupByRegex("org\\.jlleitschuh\\.gradle.*")
}
}
}
dependencies {
classpath(libs.gradle)
classpath(libs.androidx.navigation.safe.args.gradle.plugin)
classpath(libs.protobuf.gradle.plugin)
classpath("com.squareup.wire:wire-gradle-plugin:4.4.3") {
exclude(group = "com.squareup.wire", module = "wire-swift-generator")
exclude(group = "com.squareup.wire", module = "wire-grpc-client")
exclude(group = "com.squareup.wire", module = "wire-grpc-jvm")
exclude(group = "com.squareup.wire", module = "wire-grpc-server-generator")
exclude(group = "io.outfoxx", module = "swiftpoet")
}
classpath(libs.androidx.benchmark.gradle.plugin)
classpath(files("$rootDir/wire-handler/wire-handler-1.0.0.jar"))
classpath(libs.com.google.devtools.ksp.gradle.plugin)
}
}
tasks.withType<Wrapper> {
distributionType = Wrapper.DistributionType.ALL
}
apply(from = "$rootDir/constants.gradle.kts")
subprojects {
if (JavaVersion.current().isJava8Compatible) {
allprojects {
tasks.withType<Javadoc> {
(options as StandardJavadocDocletOptions).addStringOption("Xdoclint:none", "-quiet")
}
}
}
val skipQa = setOf("Signal-Android", "libsignal-service", "lintchecks", "benchmark", "core-util-jvm", "logging")
if (project.name !in skipQa && !project.name.endsWith("-app")) {
tasks.register("qa") {
group = "Verification"
description = "Quality Assurance. Run before pushing"
dependsOn("clean", "testReleaseUnitTest", "lintRelease")
}
}
}
tasks.register("buildQa") {
group = "Verification"
description = "Quality Assurance for build logic."
dependsOn(
gradle.includedBuild("build-logic").task(":tools:test"),
gradle.includedBuild("build-logic").task(":tools:ktlintCheck"),
gradle.includedBuild("build-logic").task(":plugins:ktlintCheck")
)
}
tasks.register("qa") {
group = "Verification"
description = "Quality Assurance. Run before pushing."
dependsOn(
"clean",
"checkStopship",
"buildQa",
":Signal-Android:testPlayProdReleaseUnitTest",
":Signal-Android:lintPlayProdRelease",
"Signal-Android:ktlintCheck",
":libsignal-service:test",
":libsignal-service:ktlintCheck",
":Signal-Android:assemblePlayProdRelease",
":Signal-Android:compilePlayProdInstrumentationAndroidTestSources",
":microbenchmark:compileReleaseAndroidTestSources",
":core-util-jvm:test",
":core-util-jvm:ktlintCheck"
)
}
tasks.register("clean", Delete::class) {
delete(rootProject.layout.buildDirectory)
}
tasks.register("format") {
group = "Formatting"
description = "Runs the ktlint formatter on all sources in this project and included builds"
dependsOn(
gradle.includedBuild("build-logic").task(":plugins:ktlintFormat"),
gradle.includedBuild("build-logic").task(":tools:ktlintFormat"),
*subprojects.mapNotNull { tasks.findByPath(":${it.name}:ktlintFormat") }.toTypedArray()
)
}
tasks.register("checkStopship") {
val cachedProjectDir = projectDir
doLast {
val excludedFiles = listOf(
"build.gradle.kts",
"app/lint.xml"
)
val excludedDirectories = listOf(
"app/build",
"libsignal-service/build"
)
val allowedExtensions = setOf("kt", "kts", "java", "xml")
val allFiles = cachedProjectDir.walkTopDown()
.asSequence()
.filter { it.isFile && it.extension in allowedExtensions }
.filterNot {
val path = it.relativeTo(cachedProjectDir).path
excludedFiles.contains(path) || excludedDirectories.any { d -> path.startsWith(d) }
}
.toList()
println("[STOPSHIP Check] There are ${allFiles.size} relevant files.")
val scope = CoroutineScope(Dispatchers.IO)
val stopshipFiles = mutableSetOf<String>()
runBlocking {
allFiles.map { file ->
scope.async {
try {
if (file.readText().contains("STOPSHIP")) {
stopshipFiles += file.relativeTo(cachedProjectDir).path
}
} catch (e: FileNotFoundException) {
// Ignore
}
}
}
.awaitAll()
}
if (stopshipFiles.isNotEmpty()) {
throw GradleException("STOPSHIP found! Files: $stopshipFiles")
}
}
}