mirror of
https://github.com/yusing/godoxy.git
synced 2025-12-05 18:57:34 -06:00
11 lines
200 B
Groovy
11 lines
200 B
Groovy
node {
|
|
stage('SCM') {
|
|
checkout scm
|
|
}
|
|
stage('SonarQube Analysis') {
|
|
def scannerHome = tool 'SonarScanner';
|
|
withSonarQubeEnv() {
|
|
sh "${scannerHome}/bin/sonar-scanner"
|
|
}
|
|
}
|
|
} |