foc/Jenkinsfile

8 lines
128 B
Plaintext
Raw Permalink Normal View History

2023-08-23 01:43:35 +00:00
node {
stage('SCM') {
checkout scm
}
stage('SonarQube Analysis') {
sh "/opt/sonar-scanner/bin/sonar-scanner"
}
}