File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ object BuildParams {
4
4
const val KOTLINX_COROUTINES_RELEASE_TAG = " 1.9.0-RC"
5
5
const val KOTLINX_SERIALIZATION_RELEASE_TAG = " v1.7.0-RC"
6
6
const val KOTLINX_DATETIME_RELEASE_TAG = " v0.6.0"
7
- const val KOTLINX_METADATA_JVM_RELEASE_TAG = " v0.9 .0"
7
+ const val KOTLIN_RELEASE_TAG = " v2.0 .0"
8
8
9
9
const val SEARCH_APP_ID = " 7961PKYRXV"
10
10
const val SEARCH_INDEX_NAME = " prod_KOTLINLANG_WEBHELP"
Original file line number Diff line number Diff line change 1
1
package builds.apiReferences.kotlinx.metadataJvm
2
2
3
- import BuildParams.KOTLINX_METADATA_JVM_RELEASE_TAG
3
+ import BuildParams.KOTLIN_RELEASE_TAG
4
4
import builds.apiReferences.dependsOnDokkaTemplate
5
5
import builds.apiReferences.templates.*
6
6
import jetbrains.buildServer.configs.kotlin.BuildType
@@ -16,7 +16,7 @@ object KotlinxMetadataJvmBuildApiReference : BuildType({
16
16
artifactRules = " $LIB_DIR /build/dokka/** => pages.zip"
17
17
18
18
params {
19
- param("release.tag", KOTLINX_METADATA_JVM_RELEASE_TAG )
19
+ param("release.tag", KOTLIN_RELEASE_TAG )
20
20
}
21
21
22
22
triggers {
@@ -72,7 +72,7 @@ object KotlinxMetadataJvmBuildApiReference : BuildType({
72
72
script {
73
73
name = " build api reference"
74
74
scriptContent = """
75
- ./gradlew :kotlinx-metadata-jvm:dokkaHtml -PkotlinxMetadataDeployVersion=${KOTLINX_METADATA_JVM_RELEASE_TAG } --no-daemon
75
+ ./gradlew :kotlinx-metadata-jvm:dokkaHtml -PkotlinxMetadataDeployVersion=${KOTLIN_RELEASE_TAG } --no-daemon
76
76
""" .trimIndent()
77
77
}
78
78
}
Original file line number Diff line number Diff line change 1
1
package builds.apiReferences.vcsRoots
2
2
3
+ import BuildParams.KOTLIN_RELEASE_TAG
3
4
import jetbrains.buildServer.configs.kotlin.vcs.GitVcsRoot
4
5
5
6
object KotlinMetadataJvm : GitVcsRoot({
6
7
name = " kotlin metadata vcs root"
7
8
url =
" [email protected] :JetBrains/kotlin.git"
8
- branch = " refs/tags/build-2.0.0-dev-10103 "
9
+ branch = " refs/tags/$KOTLIN_RELEASE_TAG "
9
10
branchSpec = """
10
11
+:refs/heads/(*)
11
12
+:refs/tags/(*)
You can’t perform that action at this time.
0 commit comments