File tree Expand file tree Collapse file tree 5 files changed +8
-12
lines changed Expand file tree Collapse file tree 5 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -31,18 +31,13 @@ object BuildParams {
31
31
const val CORE_API_BUILD_ID = " Kotlin_KotlinRelease_220_LibraryReferenceLatestDocs"
32
32
const val CORE_API_TITLE = " Core API"
33
33
34
- const val KGP_RELEASE_TAG = KOTLIN_RELEASE_TAG
35
- const val KGP_RELEASE_LABEL = KOTLIN_RELEASE_LABEL
36
- const val KGP_ID = " kotlin-gradle-plugin"
37
- const val KGP_TITLE = " Kotlin Gradle Plugin"
38
-
39
34
const val KOTLINX_METADATA_ID = " kotlinx-metadata-jvm"
40
35
const val KOTLINX_METADATA_RELEASE_TAG = KOTLIN_RELEASE_TAG
41
36
const val KOTLINX_METADATA_TITLE = KOTLINX_METADATA_ID
42
37
43
38
val KGP_REFERENCE = KotlinGradleAPI {
44
39
addVersion(" 2.1.20" , VCS .branch(" whyoleg/dokka2-sync" ))
45
- // addVersion("2.2.0", VCS.branch("2.2.0"))
40
+ addVersion(" 2.2.0" , VCS .branch(" 2.2.0" ))
46
41
}
47
42
48
43
val API_COMPOSE = ComposeMultiplatformCore {
Original file line number Diff line number Diff line change @@ -157,7 +157,7 @@ fun BuildTypeSettings.configureReferenceTemplate() {
157
157
scriptContent = """
158
158
yarn install --frozen-lockfile
159
159
""" .trimIndent()
160
- dockerImage = " node:16 -alpine"
160
+ dockerImage = " node:18 -alpine"
161
161
}
162
162
script {
163
163
id = " step-build-templates"
@@ -166,7 +166,7 @@ fun BuildTypeSettings.configureReferenceTemplate() {
166
166
scriptContent = """
167
167
node ./scripts/dokka/generate-templates.js
168
168
""" .trimIndent()
169
- dockerImage = " node:16 -alpine"
169
+ dockerImage = " node:18 -alpine"
170
170
}
171
171
}
172
172
}
Original file line number Diff line number Diff line change 1
1
package references.builds.kgp
2
2
3
- import BuildParams.KGP_TITLE
4
3
import common.ReferenceProject
5
4
import common.extensions.apiReference
6
5
import common.extensions.dokkaBuildHtml
7
6
7
+ const val KGP_TITLE = " Kotlin Gradle Plugin"
8
+
8
9
class KotlinGradleAPI (init : KotlinGradleAPI .() -> Unit ) : ReferenceProject(" kotlin-gradle-plugin" , KGP_TITLE ) {
9
10
init {
10
11
init ()
Original file line number Diff line number Diff line change @@ -26,14 +26,14 @@ fun BuildTypeSettings.configureReferenceTemplate() {
26
26
scriptContent = """
27
27
yarn install --frozen-lockfile
28
28
""" .trimIndent()
29
- dockerImage = " node:16 -alpine"
29
+ dockerImage = " node:18 -alpine"
30
30
}
31
31
script {
32
32
name = " Build Templates"
33
33
scriptContent = """
34
34
node ./scripts/dokka/generate-templates.js
35
35
""" .trimIndent()
36
- dockerImage = " node:16 -alpine"
36
+ dockerImage = " node:18 -alpine"
37
37
}
38
38
}
39
39
}
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ object ApiReferencesTemplateTest: BuildType({
22
22
yarn install --frozen-lockfile
23
23
yarn build:production
24
24
""" .trimIndent()
25
- dockerImage = " node:16 -alpine"
25
+ dockerImage = " node:18 -alpine"
26
26
}
27
27
script {
28
28
scriptContent = " ./scripts/dokka/up.sh"
You can’t perform that action at this time.
0 commit comments