Merge branch 'feature-deploy-stage'

This commit is contained in:
Dmitry Khomutov 2017-07-18 07:44:09 +07:00
commit 5320352e38
No known key found for this signature in database
GPG key ID: 7EB36C9576F9ECB9

View file

@ -205,6 +205,9 @@ class Builder implements LoggerAwareInterface
// Run the core plugin stages:
foreach ([Build::STAGE_SETUP, Build::STAGE_TEST, Build::STAGE_DEPLOY] as $stage) {
$success &= $this->pluginExecutor->executePlugins($this->config, $stage);
if (!$success) {
break;
}
}
// Set the status so this can be used by complete, success and failure
@ -215,7 +218,6 @@ class Builder implements LoggerAwareInterface
$this->build->setStatus(Build::STATUS_FAILED);
}
if ($success) {
$this->pluginExecutor->executePlugins($this->config, Build::STAGE_SUCCESS);