fix(chore): remove SQ analysis (#4118)
This commit is contained in:
parent
6c8fb0ff10
commit
8133f9843c
|
@ -16,16 +16,6 @@ stage('Source') {
|
|||
source = readProperties file: 'source.properties'
|
||||
env.VERSION = "${source.VERSION}"
|
||||
env.RELEASE = "${source.RELEASE}"
|
||||
// Run sonarQube analysis
|
||||
withSonarQubeEnv('SonarQubeDev') {
|
||||
sh './centreon-build/jobs/plugins/plugins-analysis.sh'
|
||||
}
|
||||
timeout(time: 10, unit: 'MINUTES') {
|
||||
def qualityGate = waitForQualityGate()
|
||||
if (qualityGate.status != 'OK') {
|
||||
currentBuild.result = 'FAIL'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
# project
|
||||
sonar.projectKey={PROJECT_TITLE}
|
||||
sonar.projectName={PROJECT_NAME}
|
||||
sonar.projectVersion={PROJECT_VERSION}
|
||||
sonar.sources=.
|
||||
|
||||
sonar.tsql.file.suffixes=sql,tsql
|
||||
sonar.plsql.file.suffixes=pks,pkb
|
||||
|
||||
# mandatory to not fail the builds until build-wrapper is installed and sources are compiled
|
||||
sonar.c.file.suffixes=-
|
||||
sonar.cpp.file.suffixes=-
|
||||
sonar.objc.file.suffixes=-
|
Loading…
Reference in New Issue