summaryrefslogtreecommitdiff
path: root/app/models/ci/build.rb
diff options
context:
space:
mode:
authorLin Jen-Shin <godfat@godfat.org>2016-07-20 21:46:46 +0800
committerLin Jen-Shin <godfat@godfat.org>2016-07-20 21:46:46 +0800
commit9f70abf185c5d55afc392f2ed39246594c62886d (patch)
tree137cae63d7408e14f451a79ea2c80c062152976e /app/models/ci/build.rb
parenta9f3f3c8c9a1656efae35b9837ab4076cc236bf1 (diff)
downloadgitlab-ce-9f70abf185c5d55afc392f2ed39246594c62886d.tar.gz
Avoid mixing builds from different pipelines:
So we no longer join anything, just find the latest pipeline and load builds from there to avoid mixing builds. Thanks Kamil for the help and tests.
Diffstat (limited to 'app/models/ci/build.rb')
-rw-r--r--app/models/ci/build.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/app/models/ci/build.rb b/app/models/ci/build.rb
index 20492c54729..49a123d488b 100644
--- a/app/models/ci/build.rb
+++ b/app/models/ci/build.rb
@@ -15,9 +15,6 @@ module Ci
scope :with_artifacts, ->() { where.not(artifacts_file: nil) }
scope :with_expired_artifacts, ->() { with_artifacts.where('artifacts_expire_at < ?', Time.now) }
scope :last_month, ->() { where('created_at > ?', Date.today - 1.month) }
- scope :latest_successful_with_artifacts, ->() do
- with_artifacts.success.order(id: :desc)
- end
scope :manual_actions, ->() { where(when: :manual) }
mount_uploader :artifacts_file, ArtifactUploader