File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
.teamcity/builds/kotlinlang Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ object SiteProject : Project({
19
19
buildType(FetchBlogNews )
20
20
buildType(PdfGenerator )
21
21
buildType(BuildSearchIndex )
22
+ buildType(PageViews )
22
23
23
24
buildTypesOrder = arrayListOf(
24
25
BuildSitePages ,
@@ -29,7 +30,8 @@ object SiteProject : Project({
29
30
BuildWebHelpFrontend ,
30
31
BuildKotlinGrammar ,
31
32
BuildKotlinSpec ,
32
- BuildJsAssets
33
+ BuildJsAssets ,
34
+ PageViews ,
33
35
)
34
36
35
37
template(DockerImageBuilder )
Original file line number Diff line number Diff line change
1
+ package builds.kotlinlang.buidTypes
2
+
3
+ import jetbrains.buildServer.configs.kotlin.BuildType
4
+
5
+ object PageViews : BuildType({
6
+ name = " Fetch Page Views"
7
+ description = " Build data files with page views statistics for kotlin websites"
8
+ })
You can’t perform that action at this time.
0 commit comments