Skip to content

Commit

Permalink
Merge pull request #14166 from MinaProtocol/dkijania/port_compatible_…
Browse files Browse the repository at this point in the history
…run_nightly_te_develop

[Develop] removing if statement for running tests on develop and compatible
  • Loading branch information
dkijania authored Sep 20, 2023
2 parents 1f8a3e3 + b52bb50 commit e85cf69
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions buildkite/src/Command/TestExecutive.dhall
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ in
],
label = "Build test-executive",
key = "build-test-executive",
target = Size.XLarge,
`if` = Some "build.branch != 'develop' && build.branch != 'compatible' && build.branch != 'develop-next'"
target = Size.XLarge
},

execute = \(testName : Text) -> \(dependsOn : List Command.TaggedKey.Type) ->
Expand All @@ -53,8 +52,7 @@ in
label = "${testName} integration test",
key = "integration-test-${testName}",
target = Size.Integration,
depends_on = dependsOn,
`if` = Some "build.branch != 'develop' && build.branch != 'compatible' && build.branch != 'develop-next'"
depends_on = dependsOn
},

buildJs = \(duneProfile : Text) ->
Expand All @@ -72,8 +70,7 @@ in
],
label = "Build JS integration tests",
key = "build-js-tests",
target = Size.XLarge,
`if` = Some "build.branch != 'develop' && build.branch != 'compatible' && build.branch != 'develop-next'"
target = Size.XLarge
},

executeWithJs = \(testName : Text) -> \(dependsOn : List Command.TaggedKey.Type) ->
Expand All @@ -94,7 +91,6 @@ in
key = "integration-test-${testName}",
target = Size.Integration,
depends_on = dependsOn,
`if` = Some "build.branch != 'develop' && build.branch != 'compatible' && build.branch != 'develop-next'",
soft_fail = Some (B/SoftFail.Boolean True)
}
}

0 comments on commit e85cf69

Please sign in to comment.