File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed
.teamcity/kotlinlang/builds Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
package kotlinlang.builds
2
2
3
3
import BuildParams.API_URLS
4
+ import documentation.builds.KotlinWithCoroutines
4
5
import jetbrains.buildServer.configs.kotlin.BuildType
5
6
import jetbrains.buildServer.configs.kotlin.FailureAction
6
7
import jetbrains.buildServer.configs.kotlin.buildSteps.ScriptBuildStep
@@ -141,13 +142,26 @@ object BuildSitePages : BuildType({
141
142
}
142
143
}
143
144
144
- dependency(BuildReferenceDocs ) {
145
+ dependency(KotlinWithCoroutines ) {
145
146
snapshot {
146
147
onDependencyFailure = FailureAction .FAIL_TO_START
148
+ onDependencyCancel = FailureAction .CANCEL
147
149
}
148
150
artifacts {
149
- artifactRules = " +:docs.zip!** => _webhelp/reference/"
151
+ artifactRules = """
152
+ +:webHelpImages.zip!** => _/webhelp/reference/images/
153
+ +:webHelpKR2.zip!** => _/webhelp/reference/
154
+ """ .trimIndent()
150
155
}
151
156
}
157
+
158
+ // dependency(BuildReferenceDocs) {
159
+ // snapshot {
160
+ // onDependencyFailure = FailureAction.FAIL_TO_START
161
+ // }
162
+ // artifacts {
163
+ // artifactRules = "+:docs.zip!** => _webhelp/reference/"
164
+ // }
165
+ // }
152
166
}
153
167
})
You can’t perform that action at this time.
0 commit comments