File tree Expand file tree Collapse file tree 3 files changed +11
-8
lines changed Expand file tree Collapse file tree 3 files changed +11
-8
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 )
17-
1814})
1915
2016object AcceptanceTests : BuildType({
@@ -82,4 +78,10 @@ object WeeklyTests : BuildType({
8278 buildFailed = true
8379 }
8480 }
81+
82+ dependencies {
83+ snapshot(AcceptanceTests ) {
84+ onDependencyFailure = FailureAction .FAIL_TO_START
85+ }
86+ }
8587})
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ object MainProject : Project({
3434 template(UnitTestsTemplate )
3535 template(ExamplesTemplate )
3636 template(PipPythonTemplate )
37+ template(AcceptanceTestsTemplate )
3738
3839 features {
3940 dockerRegistry {
You can’t perform that action at this time.
0 commit comments