mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-03 02:29:21 +08:00
102 lines
3.1 KiB
Plaintext
102 lines
3.1 KiB
Plaintext
/*
|
|
* Copyright 2019-2021 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/master/LICENSE
|
|
*/
|
|
import keys.SecretKeys
|
|
import java.io.ByteArrayOutputStream
|
|
|
|
plugins {
|
|
id("io.codearte.nexus-staging") version "0.22.0"
|
|
}
|
|
|
|
description = "Mirai CI Methods for Releasing"
|
|
|
|
nexusStaging {
|
|
packageGroup = rootProject.group.toString()
|
|
val keys = SecretKeys.getCache(project).loadKey("sonatype")
|
|
username = keys.user
|
|
password = keys.password
|
|
}
|
|
|
|
tasks.register("updateSnapshotVersion") {
|
|
group = "mirai"
|
|
|
|
doLast {
|
|
rootProject.file("buildSrc/src/main/kotlin/Versions.kt").run {
|
|
var text = readText()
|
|
val template = { version: Any? -> "/*PROJECT_VERSION_START*/\"${version}\"/*PROJECT_VERSION_END*/" }
|
|
check(text.indexOf(template(project.version)) != -1) { "Cannot find ${template(project.version)}" }
|
|
text = text.replace(template(project.version), template(snapshotVersion))
|
|
writeText(text)
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.register("publishSnapshotPage") {
|
|
doLast {
|
|
UpdateSnapshotPage.run(project, getSha())
|
|
}
|
|
}
|
|
|
|
|
|
val snapshotVersion by lazy { getSnapshotVersionImpl() }
|
|
|
|
fun getSnapshotVersionImpl(): String {
|
|
val branch = System.getenv("CURRENT_BRANCH_NAME")
|
|
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()
|
|
logger.info("Current commit sha is '$sha'")
|
|
return sha
|
|
} |