Skip to content
Snippets Groups Projects
Commit 85aa9ba2 authored by Ivan Prieto Barreiro's avatar Ivan Prieto Barreiro
Browse files

Get the settings file from c2mon project

Add sonarqube analysis
parent e4bf73af
No related branches found
No related tags found
No related merge requests found
Pipeline #
image: maven:3.3-jdk-8
stages:
- build
- deploy
- sonar
# Get the settings file from c2mon project
before_script:
- wget https://gitlab.cern.ch/c2mon/c2mon/raw/master/settings.xml
# Fully build and publish master branch
build_and_publish:
type: deploy
script:
- mvn -U -B -DskipTests clean deploy --settings settings.xml
only:
......@@ -9,7 +18,22 @@ build_and_publish:
# Just run tests on feature branches
build:
type: build
script:
- mvn -U -B clean test -DskipDockerBuild -DskipDockerTag --settings settings.xml
except:
- master
sonar_preview:
type: sonar
script:
- mvn -q -U -B clean compile sonar:sonar -Dmaven.test.skip=true -Dsonar.host.url=https://en-ice-sonar.cern.ch -Dsonar.analysis.mode=preview -Dsonar.gitlab.commit_sha=$CI_BUILD_REF -Dsonar.gitlab.ref_name=$CI_BUILD_REF_NAME -Dsonar.gitlab.project_id=$CI_PROJECT_ID -Dsonar.gitlab.max_major_issues_gate=0 --settings settings.xml --debug -X
except:
- master
quality_assurance:
stage: sonar
script:
- mvn package dependency-check:aggregate sonar:sonar -Dmaven.test.skip=true -Dsonar.dependencyCheck.reportPath=target/dependency-check-report.xml --settings settings.xml
only:
- master
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment