File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed
Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 11package Weekly
22
33import Templates.*
4- import jetbrains.buildServer.configs.kotlin.AbsoluteId
5- import jetbrains.buildServer.configs.kotlin.BuildType
6- import jetbrains.buildServer.configs.kotlin.DslContext
7- import jetbrains.buildServer.configs.kotlin.FailureAction
8- import jetbrains.buildServer.configs.kotlin.Project
4+ import jetbrains.buildServer.configs.kotlin.*
95import jetbrains.buildServer.configs.kotlin.buildFeatures.notifications
106import jetbrains.buildServer.configs.kotlin.triggers.ScheduleTrigger
117import jetbrains.buildServer.configs.kotlin.triggers.schedule
128
139object WeeklyProject : Project({
1410 name = " Weekly"
1511
12+ buildType(AcceptanceTests )
1613 buildType(WeeklyTests )
1714
15+ template(AcceptanceTestsTemplate )
16+
1817})
1918
2019object AcceptanceTests : BuildType({
@@ -82,4 +81,10 @@ object WeeklyTests : BuildType({
8281 buildFailed = true
8382 }
8483 }
84+
85+ dependencies {
86+ snapshot(AcceptanceTests ) {
87+ onDependencyFailure = FailureAction .FAIL_TO_START
88+ }
89+ }
8590})
You can’t perform that action at this time.
0 commit comments