Add latest changes from gitlab-org/gitlab@master
This commit is contained in:
parent
4f05a63095
commit
23d8718bf3
3 changed files with 2 additions and 24 deletions
|
@ -299,11 +299,6 @@ module Ci
|
|||
end
|
||||
end
|
||||
|
||||
def self.latest_for_shas(shas)
|
||||
max_id_per_sha = for_sha(shas).group(:sha).select("max(id)")
|
||||
where(id: max_id_per_sha)
|
||||
end
|
||||
|
||||
def self.latest_successful_ids_per_project
|
||||
success.group(:project_id).select('max(id) as id')
|
||||
end
|
||||
|
|
|
@ -1,11 +1,5 @@
|
|||
---
|
||||
comments: false
|
||||
redirect_to: '../README.md'
|
||||
---
|
||||
|
||||
# Workflow (Deprecated)
|
||||
|
||||
This page was deprecated, with all content previously stored under the `/workflow` path moved
|
||||
to other locations in the documentation site, organized by topic. You can use the search
|
||||
box to find the content you are looking for, browse the main [GitLab Documentation page](../README.md),
|
||||
or view the [issue that deprecated this page](https://gitlab.com/gitlab-org/gitlab/issues/32940)
|
||||
for more details.
|
||||
This document was moved to [another location](../README.md).
|
||||
|
|
|
@ -1725,17 +1725,6 @@ describe Ci::Pipeline, :mailer do
|
|||
end
|
||||
end
|
||||
|
||||
describe '.latest_for_shas' do
|
||||
let(:sha) { 'abc' }
|
||||
|
||||
it 'returns latest pipeline for sha' do
|
||||
create(:ci_pipeline, sha: sha)
|
||||
pipeline2 = create(:ci_pipeline, sha: sha)
|
||||
|
||||
expect(described_class.latest_for_shas(sha)).to contain_exactly(pipeline2)
|
||||
end
|
||||
end
|
||||
|
||||
describe '.latest_successful_ids_per_project' do
|
||||
let(:projects) { create_list(:project, 2) }
|
||||
let!(:pipeline1) { create(:ci_pipeline, :success, project: projects[0]) }
|
||||
|
|
Loading…
Reference in a new issue