Run build from specific step
I have a build configuration with multiple steps - building, unit testing, deploying & acceptence test.
Somtimes I would like to re-deploy (for a different environment, for example) without building the project again. I can use the previous build's outputs.
Can I run build configuration starting form a specific step, not necesserlly the first one?
Of course, the build configuration doesn't clean all files before build, so all previuos build outputs exist.
Please sign in to leave a comment.
Hi
Move deployment task into0 a separate build configuration, and link the configurations by artifact dependency.
Then binaries from specific build can be pushed to the deployment configuration using Action > Promote link on Build Results page.
Michael