Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bigWig_visu
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LBMC
ReGArDS
Projects_Analyzes
bigWig_visu
Commits
025eee11
Commit
025eee11
authored
4 years ago
by
nfontrod
Browse files
Options
Downloads
Patches
Plain Diff
.gitlab-ci.yml naming stages ad moving artifacts in the first job
parent
b8d00165
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#130
failed
4 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+11
-3
11 additions, 3 deletions
.gitlab-ci.yml
with
11 additions
and
3 deletions
.gitlab-ci.yml
+
11
−
3
View file @
025eee11
stages
:
-
unittest
-
quality
tests
:
stage
:
unittest
image
:
"
python:3.8-slim"
before_script
:
-
apt-get update
...
...
@@ -19,9 +24,13 @@ tests:
script
:
-
coverage run -m unittest discover
-
coverage xml
artifacts
:
reports
:
junit
:
coverage.xml
sonarqube-check
:
stage
:
quality
image
:
name
:
sonarsource/sonar-scanner-cli:latest
entrypoint
:
[
"
"
]
...
...
@@ -30,9 +39,8 @@ sonarqube-check:
SONAR_HOST_URL
:
http://192.168.1.58:9000/
# You have to not use localhost otherwise it will not work
SONAR_USER_HOME
:
"
${CI_PROJECT_DIR}/.sonar"
# Defines the location of the analysis task cache
GIT_DEPTH
:
"
0"
# Tells git to fetch all the branches of the project, required by the analysis task
artifacts
:
reports
:
junit
:
coverage.xml
dependencies
:
-
unittest
cache
:
key
:
"
${CI_JOB_NAME}"
paths
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment