forked from eclipse-apoapsis/ort-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
165 lines (132 loc) · 5.97 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
164
165
/*
* Copyright (C) 2022 The ORT Server Authors (See <https://github.com/eclipse-apoapsis/ort-server/blob/main/NOTICE>)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* SPDX-License-Identifier: Apache-2.0
* License-Filename: LICENSE
*/
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
val dockerBaseBuildArgs: String by project
val dockerBaseImageTag: String by project
plugins {
alias(libs.plugins.dependencyAnalysis)
alias(libs.plugins.gitSemver)
alias(libs.plugins.jib) apply false
alias(libs.plugins.versions)
}
semver {
// Do not create an empty release commit when running the "releaseVersion" task.
createReleaseCommit = false
// Use "RC" instead of "SNAPSHOT" as the default pre-release identifier.
defaultPreRelease = "RC"
// Do not let untracked files bump the version or add a "-SNAPSHOT" suffix.
noDirtyCheck = true
}
// Only override a default version (which usually is "unspecified"), but not a custom version.
if (version == Project.DEFAULT_VERSION) {
val semVersion = semver.semVersion
// Set the version based on the following rules:
// - If the current commit is tagged as a release (e.g., 1.2.3) or pre-release (e.g., 1.2.3-RC1), the version equals
// the tag.
// - If the current commit is ahead of the last release or pre-release tag, the version is the tag plus the
// pre-release identifier, the commit count, and the SHA. For example, "1.2.3-RC1.001.sha.0123456". Note that
// semantic versions would use a "+" instead of a "." in front of the commit count, but this version is also used
// as a Docker tag and Docker does not allow "+" in tags.
val shaLength = if (semVersion.commitCount > 0) 7 else 0
version = semVersion.toInfoVersionString(shaLength = shaLength).replace('+', '.')
}
logger.lifecycle("Building ORT Server version $version.")
tasks.named<DependencyUpdatesTask>("dependencyUpdates").configure {
gradleReleaseChannel = "current"
outputFormatter = "json"
val nonFinalQualifiers = listOf(
"alpha", "b", "beta", "cr", "dev", "ea", "eap", "m", "milestone", "pr", "preview", "rc", "\\d{14}"
).joinToString("|", "(", ")")
val nonFinalQualifiersRegex = Regex(".*[.-]$nonFinalQualifiers[.\\d-+]*", RegexOption.IGNORE_CASE)
rejectVersionIf {
candidate.version.matches(nonFinalQualifiersRegex)
}
}
// Gradle's "dependencies" task selector only executes on a single / the current project [1]. However, sometimes viewing
// all dependencies at once is beneficial, e.g. for debugging version conflict resolution.
// [1]: https://docs.gradle.org/current/userguide/viewing_debugging_dependencies.html#sec:listing_dependencies
tasks.register("allDependencies") {
group = "Help"
description = "Displays all dependencies declared in all projects."
val dependenciesTasks = getTasksByName("dependencies", /* recursive = */ true).sorted()
dependsOn(dependenciesTasks)
// Ensure deterministic output by requiring to run tasks after each other in always the same order.
dependenciesTasks.zipWithNext().forEach { (a, b) ->
b.mustRunAfter(a)
}
}
rootDir.walk().maxDepth(4).filter { it.isFile && it.extension == "Dockerfile" }.forEach { dockerfile ->
val name = dockerfile.name.substringBeforeLast('.')
val buildArgs = dockerBaseBuildArgs.takeUnless { it.isBlank() }
?.split(',')
?.flatMap { listOf("--build-arg", it.trim()) }
.orEmpty()
if (name == "UI") {
tasks.register<Exec>("build${name}Image") {
val context = dockerfile.parentFile.parent
dependsOn(":core:generateOpenApiSpec")
group = "Docker"
description = "Builds the $name Docker image."
inputs.file(dockerfile)
inputs.dir(context)
commandLine = listOf(
"docker", "build",
"-f", dockerfile.path,
*buildArgs.toTypedArray(),
"-t", "ort-server-${name.lowercase()}:$dockerBaseImageTag",
"-q",
context
)
}
} else {
tasks.register<Exec>("build${name}WorkerImage") {
val context = dockerfile.parent
group = "Docker"
description = "Builds the $name worker Docker image."
inputs.file(dockerfile)
inputs.dir(context)
commandLine = listOf(
"docker", "build",
"-f", dockerfile.path,
*buildArgs.toTypedArray(),
"-t", "ort-server-${name.lowercase()}-worker-base-image:$dockerBaseImageTag",
"-q",
context
)
}
}
}
val buildAllWorkerImages by tasks.registering {
group = "Docker"
description = "Builds all worker Docker images."
val workerImageTaskRegex = Regex("build[A-Z][a-z]+WorkerImage")
val workerImageTasks = tasks.matching { it.name.matches(workerImageTaskRegex) }
dependsOn(workerImageTasks)
}
tasks.register("buildAllImages") {
group = "Docker"
description = "Builds all Docker images for the backend and frontend."
val jibDockerBuilds = getTasksByName("jibDockerBuild", /* recursive = */ true).onEach {
it.mustRunAfter(buildAllWorkerImages)
}
val uiDockerBuild = getTasksByName("buildUIImage", /* recursive = */ false).single()
dependsOn(buildAllWorkerImages, jibDockerBuilds, uiDockerBuild)
}