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
e6516284
Commit
e6516284
authored
Nov 05, 2018
by
Kamil Trzciński
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix invalid artifact path for codequality
parent
90473e06
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
app/models/ci/job_artifact.rb
app/models/ci/job_artifact.rb
+1
-1
spec/lib/gitlab/ci/config/entry/reports_spec.rb
spec/lib/gitlab/ci/config/entry/reports_spec.rb
+1
-1
No files found.
app/models/ci/job_artifact.rb
View file @
e6516284
...
...
@@ -15,7 +15,7 @@ module Ci
metadata:
nil
,
trace:
nil
,
junit:
'junit.xml'
,
codequality:
'
codequality
.json'
,
codequality:
'
gl-code-quality-report
.json'
,
sast:
'gl-sast-report.json'
,
dependency_scanning:
'gl-dependency-scanning-report.json'
,
container_scanning:
'gl-container-scanning-report.json'
,
...
...
spec/lib/gitlab/ci/config/entry/reports_spec.rb
View file @
e6516284
...
...
@@ -33,7 +33,7 @@ describe Gitlab::Ci::Config::Entry::Reports do
where
(
:keyword
,
:file
)
do
:junit
|
'junit.xml'
:codequality
|
'
codequality
.json'
:codequality
|
'
gl-code-quality-report
.json'
:sast
|
'gl-sast-report.json'
:dependency_scanning
|
'gl-dependency-scanning-report.json'
:container_scanning
|
'gl-container-scanning-report.json'
...
...
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