Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
8b0b8e3b
Commit
8b0b8e3b
authored
Mar 15, 2018
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use with_artifacts_archive name. Add spec
parent
c13887a1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
6 deletions
+42
-6
app/models/ci/build.rb
app/models/ci/build.rb
+4
-4
app/models/ci/pipeline.rb
app/models/ci/pipeline.rb
+1
-1
app/models/project.rb
app/models/project.rb
+1
-1
spec/models/ci/build_spec.rb
spec/models/ci/build_spec.rb
+36
-0
No files found.
app/models/ci/build.rb
View file @
8b0b8e3b
...
...
@@ -41,12 +41,12 @@ module Ci
scope
:unstarted
,
->
()
{
where
(
runner_id:
nil
)
}
scope
:ignore_failures
,
->
()
{
where
(
allow_failure:
false
)
}
scope
:with_artifacts
,
->
(
file_type
)
do
scope
:with_artifacts
_archive
,
->
(
)
do
where
(
'(artifacts_file IS NOT NULL AND artifacts_file <> ?) OR EXISTS (?)'
,
''
,
Ci
::
JobArtifact
.
select
(
1
).
where
(
'ci_builds.id = ci_job_artifacts.job_id'
).
public_send
(
file_type
))
# rubocop:disable GitlabSecurity/PublicSend
''
,
Ci
::
JobArtifact
.
select
(
1
).
where
(
'ci_builds.id = ci_job_artifacts.job_id'
).
archive
)
end
scope
:with_artifacts_not_expired
,
->
()
{
with_artifacts
(
:archive
)
.
where
(
'artifacts_expire_at IS NULL OR artifacts_expire_at > ?'
,
Time
.
now
)
}
scope
:with_expired_artifacts
,
->
()
{
with_artifacts
(
:archive
)
.
where
(
'artifacts_expire_at < ?'
,
Time
.
now
)
}
scope
:with_artifacts_not_expired
,
->
()
{
with_artifacts
_archive
.
where
(
'artifacts_expire_at IS NULL OR artifacts_expire_at > ?'
,
Time
.
now
)
}
scope
:with_expired_artifacts
,
->
()
{
with_artifacts
_archive
.
where
(
'artifacts_expire_at < ?'
,
Time
.
now
)
}
scope
:last_month
,
->
()
{
where
(
'created_at > ?'
,
Date
.
today
-
1
.
month
)
}
scope
:manual_actions
,
->
()
{
where
(
when: :manual
,
status:
COMPLETED_STATUSES
+
[
:manual
])
}
scope
:ref_protected
,
->
{
where
(
protected:
true
)
}
...
...
app/models/ci/pipeline.rb
View file @
8b0b8e3b
...
...
@@ -514,7 +514,7 @@ module Ci
# We purposely cast the builds to an Array here. Because we always use the
# rows if there are more than 0 this prevents us from having to run two
# queries: one to get the count and one to get the rows.
@latest_builds_with_artifacts
||=
builds
.
latest
.
with_artifacts
(
:archive
)
.
to_a
@latest_builds_with_artifacts
||=
builds
.
latest
.
with_artifacts
_archive
.
to_a
end
private
...
...
app/models/project.rb
View file @
8b0b8e3b
...
...
@@ -542,7 +542,7 @@ class Project < ActiveRecord::Base
latest_pipeline
=
pipelines
.
latest_successful_for
(
ref
)
if
latest_pipeline
latest_pipeline
.
builds
.
latest
.
with_artifacts
(
:archive
)
latest_pipeline
.
builds
.
latest
.
with_artifacts
_archive
else
builds
.
none
end
...
...
spec/models/ci/build_spec.rb
View file @
8b0b8e3b
...
...
@@ -80,6 +80,42 @@ describe Ci::Build do
end
end
describe
'.with_artifacts_archive'
do
subject
{
described_class
.
with_artifacts_archive
}
context
'when job does not have an archive'
do
let!
(
:job
)
{
create
(
:ci_build
)
}
it
'does not return the job'
do
is_expected
.
not_to
include
(
job
)
end
end
context
'when job has a legacy archive'
do
let!
(
:job
)
{
create
(
:ci_build
,
:legacy_artifacts
)
}
it
'returns the job'
do
is_expected
.
to
include
(
job
)
end
end
context
'when job has a job artifact archive'
do
let!
(
:job
)
{
create
(
:ci_build
,
:artifacts
)
}
it
'returns the job'
do
is_expected
.
to
include
(
job
)
end
end
context
'when job has a job artifact trace'
do
let!
(
:job
)
{
create
(
:ci_build
,
:trace_artifact
)
}
it
'does not return the job'
do
is_expected
.
not_to
include
(
job
)
end
end
end
describe
'#actionize'
do
context
'when build is a created'
do
before
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment