jetbrains.buildServer.configs.kotlin.v10 / BuildStep / ExecutionMode

ExecutionMode

enum class ExecutionMode

Specifies how build step should be executed in case of failures in other steps

Enum Values

DEFAULT

step will not be executed if there are other failed steps

RUN_ON_SUCCESS

will execute step only if status on server is "successful"; i.e. server will be asked for build status

RUN_ON_FAILURE

will execute step even if previous step(s) has failed, server will not be queries for step results.

ALWAYS

will execute step always, even if build was interrupted