foc/Jenkinsfile
2023-08-23 09:43:35 +08:00

8 lines
128 B
Groovy

node {
stage('SCM') {
checkout scm
}
stage('SonarQube Analysis') {
sh "/opt/sonar-scanner/bin/sonar-scanner"
}
}