mirai/ci-release-helper/build.gradle.kts

204 lines
6.6 KiB
Plaintext

/*
* Copyright 2019-2023 Mamoe Technologies and contributors.
*
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证.
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link.
*
* https://github.com/mamoe/mirai/blob/dev/LICENSE
*/
import keys.SecretKeys
import kotlinx.validation.sourceSets
import java.io.ByteArrayOutputStream
plugins {
id("io.codearte.nexus-staging") version "0.22.0"
kotlin("jvm")
kotlin("plugin.serialization")
}
tasks.register<JavaExec>("runcihelper") {
this.classpath = sourceSets["main"].runtimeClasspath
this.mainClass.set("cihelper.CiHelperKt")
this.workingDir = rootProject.projectDir
fun Project.findPublishingExt(): PublishingExtension? {
val exts = (this@findPublishingExt as ExtensionAware).extensions
return exts.findByName("publishing") as PublishingExtension?
}
doFirst {
@Suppress("USELESS_CAST")
environment("PROJ_VERSION", (project.version as Any?).toString())
rootProject.allprojects.asSequence()
.mapNotNull { it.findPublishingExt() }
.flatMap { it.publications.asSequence() }
.mapNotNull { it as? MavenPublication }
.map { it.artifactId }
.joinToString("|")
.let { environment("PROJ_ARTIFACTS", it) }
rootProject.allprojects.asSequence()
.mapNotNull { it.findPublishingExt() }
.flatMap { it.repositories.asSequence() }
.mapNotNull { it as? MavenArtifactRepository }
.filter { it.name == "MiraiStageRepo" }
.first().url
.let { environment("PROJ_MiraiStageRepo", it.toString()) }
val additionProperties = rootProject.properties.asSequence()
.filter { (k, _) -> k.startsWith("cihelper.") }
.map { (k, v) -> "-D$k=$v" }
.toList()
if (additionProperties.isNotEmpty()) {
val currentJvmArgs = jvmArgs ?: emptyList()
jvmArgs = currentJvmArgs + additionProperties
}
}
}
description = "Mirai CI Methods for Releasing"
nexusStaging {
packageGroup = rootProject.group.toString()
val keys = SecretKeys.getCache(project).loadKey("sonatype")
username = keys.user
password = keys.password
}
dependencies {
implementation(`ktor-client-okhttp`)
implementation(`kotlinx-serialization-json`)
implementation("org.jetbrains.kotlinx", "kotlinx-datetime-jvm", "0.4.0")
}
tasks.register("updateSnapshotVersion") {
group = "mirai"
dependsOn(tasks.compileKotlin)
dependsOn(tasks.compileJava)
doLast {
val out = ByteArrayOutputStream()
val sha = getSha()
val branch = getCurrentGitBranch()
val result = javaexec {
standardOutput = out
classpath(sourceSets.main.get().runtimeClasspath)
mainClass.set("cihelper.buildIndex.GetNextSnapshotIndex")
args(branch, sha)
environment(
"mirai.build.index.auth.username",
System.getenv("MIRAI_BUILD_INDEX_AUTH_USERNAME")
?: project.property("mirai.build.index.auth.username")
)
environment(
"mirai.build.index.auth.password",
System.getenv("MIRAI_BUILD_INDEX_AUTH_PASSWORD")
?: project.property("mirai.build.index.auth.password")
)
}
result.assertNormalExitValue()
val resultString = out.toByteArray().decodeToString()
val branchAndIndex = resultString
.substringAfter("<SNAPSHOT_VERSION_START>", "")
.substringBefore("<SNAPSHOT_VERSION_END>", "")
logger.info("Exec result:")
logger.info(resultString)
if (branchAndIndex.isEmpty()) {
throw GradleException("Failed to find version.")
}
logger.info("Snapshot version index is '$branchAndIndex'")
val versionName = "${Versions.project}-${branchAndIndex}"
// Add annotation on GitHub Actions build
// https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-a-notice-message
println("::notice ::本 commit 的预览版本号: $versionName 在 https://github.com/mamoe/mirai/blob/dev/docs/UsingSnapshots.md 查看如何使用预览版本")
setProjectVersionForFutureBuilds(versionName)
}
}
tasks.register("publishSnapshotPage") {
doLast {
val sha = getSha()
logger.info("CommitRef is $sha")
UpdateSnapshotPage.run(project, sha)
}
}
fun getSnapshotVersionImpl(): String {
val branch = getCurrentGitBranch()
logger.info("Current branch name is '$branch'")
val sha = getSha().trim().take(8)
return "${Versions.project}-$branch-${sha}".also {
logger.info("Snapshot version is '$it'")
}
}
//tasks.register("createTagOnGitHub") {
// group = "mirai"
// dependsOn(gradle.includedBuild("snapshots-publishing").task(":check"))
//
// doLast {
// val token = System.getenv("MAMOE_TOKEN")
// require(!token.isNullOrBlank()) { "" }
//
// val out = ByteArrayOutputStream()
// exec {
// commandLine("git")
// args("rev-parse", "HEAD")
// standardOutput = out
// workingDir = rootProject.projectDir
// }
// val sha = out.toString()
// logger.info("Current sha is $sha")
//
// runBlocking {
// val resp = HttpClient().post<String>("https://api.github.com/repos/mamoe/mirai/git/refs") {
// header("Authorization", "token $token")
// header("Accept", "application/vnd.github.v3+json")
// body = Gson().toJson(
// mapOf(
// "ref" to "refs/tags/build-$nextVersion",
// "sha" to sha,
// )
// )
// }
// logger.info(resp)
// }
// }
//}
fun getSha(): String {
val out = ByteArrayOutputStream()
exec {
commandLine("git")
args("rev-parse", "HEAD")
standardOutput = out
workingDir = rootProject.projectDir
}
val sha = out.toString().trim()
logger.info("Current commit sha is '$sha'")
return sha
}
fun getCurrentGitBranch(): String {
val out = ByteArrayOutputStream()
exec {
commandLine("git")
args("rev-parse", "--abbrev-ref", "HEAD")
standardOutput = out
workingDir = rootProject.projectDir
}
val sha = out.toString().trim()
logger.info("Current branch is '$sha'")
return sha
}