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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
41bedd6e
Commit
41bedd6e
authored
Oct 27, 2020
by
Vicken Simonian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add documentation about using REPORT_FORMAT
parent
b8fbf6f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
doc/user/project/merge_requests/code_quality.md
doc/user/project/merge_requests/code_quality.md
+19
-0
No files found.
doc/user/project/merge_requests/code_quality.md
View file @
41bedd6e
...
...
@@ -265,6 +265,25 @@ Once the Code Quality job has completed:
[
downloadable artifact
](
../../../ci/pipelines/job_artifacts.md#downloading-artifacts
)
for the
`code_quality`
job.
### Generating an HTML report
In
[
GitLab 13.6 and later
](
https://gitlab.com/gitlab-org/ci-cd/codequality/-/issues/10
)
,
it is possible to generate an HTML report file by setting the
`REPORT_FORMAT`
variable to
`html`
. This is useful if you just want to view the report in a more
human-readable format or to publish this artifact on GitLab Pages for even
easier reviewing.
```
yaml
include
:
-
template
:
Code-Quality.gitlab-ci.yml
code_quality
:
variables
:
REPORT_FORMAT
:
html
artifacts
:
paths
:
[
gl-code-quality-report.html
]
```
## Extending functionality
### Using Analysis Plugins
...
...
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