| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*
- * 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()
- check(text.indexOf("project = \"${project.version}\"") != -1) { "Cannot find \"project = \\\"${project.version}\\\"\"" }
- text = text.replace("project = \"${project.version}\"", "project = \"${snapshotVersion}\"")
- writeText(text)
- }
- }
- }
- 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
- }
|