summaryrefslogtreecommitdiff
path: root/app/models/commit.rb
diff options
context:
space:
mode:
authorValery Sizov <vsv2711@gmail.com>2015-04-01 15:23:01 +0300
committerValery Sizov <vsv2711@gmail.com>2015-04-01 15:23:01 +0300
commitedfe6539b4c39caaffce119b8d716e94c86c9169 (patch)
treebb62b6078d993efda8ee615f2c692fe89e1910ff /app/models/commit.rb
parent2378f2c8cb0cdd9538c0336a359deadf52255adc (diff)
downloadgitlab-ci-deploy_without_tests.tar.gz
refactoring of deploy job creationdeploy_without_tests
Diffstat (limited to 'app/models/commit.rb')
-rw-r--r--app/models/commit.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/app/models/commit.rb b/app/models/commit.rb
index 32bd334..5f1aa92 100644
--- a/app/models/commit.rb
+++ b/app/models/commit.rb
@@ -137,11 +137,9 @@ class Commit < ActiveRecord::Base
end
def create_deploy_builds(ref)
- if builds.empty? || (success? && !last_build.job.deploy?)
- project.jobs.deploy.active.each do |job|
- if job.run_for_ref?(ref)
- create_build_from_job(job)
- end
+ project.jobs.deploy.active.each do |job|
+ if job.run_for_ref?(ref)
+ create_build_from_job(job)
end
end
end