SQ work?
This commit is contained in:
parent
6042fa2fac
commit
63044ece48
26
jenkinsfile
26
jenkinsfile
@ -22,20 +22,22 @@ pipeline {
|
||||
rem Output a success message
|
||||
echo Resources folder was successfully moved to the dist folder.
|
||||
"""
|
||||
}
|
||||
}
|
||||
stage('SCM') {
|
||||
steps {
|
||||
checkout scm
|
||||
}
|
||||
}
|
||||
stage('SCM') {
|
||||
steps {
|
||||
checkout scm
|
||||
}
|
||||
stage('SonarQube Analysis') {
|
||||
steps {
|
||||
def scannerHome = tool 'SQ';
|
||||
withSonarQubeEnv(installationName: 'SQ') {
|
||||
sh "${scannerHome}/bin/sonar-scanner"
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('SonarQube Analysis') {
|
||||
steps {
|
||||
script {
|
||||
def scannerHome = tool(name: 'SQ');
|
||||
withSonarQubeEnv(installationName: 'SQ') {
|
||||
sh "${scannerHome}/bin/sonar-scanner"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user