8 lines
128 B
Plaintext
8 lines
128 B
Plaintext
|
node {
|
||
|
stage('SCM') {
|
||
|
checkout scm
|
||
|
}
|
||
|
stage('SonarQube Analysis') {
|
||
|
sh "/opt/sonar-scanner/bin/sonar-scanner"
|
||
|
}
|
||
|
}
|