Skip to content

Commit

Permalink
removing if statement for running tests on develop and compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
dkijania committed Sep 20, 2023
1 parent 1f8a3e3 commit bb75488
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 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 @@ -93,8 +90,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
soft_fail = Some (B/SoftFail.Boolean True)
}
}

0 comments on commit bb75488

Please sign in to comment.