File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed
Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ object AcceptanceTestsTemplate : Template({
1717
1818
1919 params {
20- param ("env.access_key", "% credentialsJSON:2978988a-493b-44ed-9fcb-6cd6d2c2c673% ")
21- param ("env.secret_access_key", "% credentialsJSON:409a55c0-b2e7-438c-98dd-f0404b83cabb% ")
20+ password ("env.access_key", "credentialsJSON:2978988a-493b-44ed-9fcb-6cd6d2c2c673")
21+ password ("env.secret_access_key", "credentialsJSON:409a55c0-b2e7-438c-98dd-f0404b83cabb")
2222 }
2323
2424
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