This commit is contained in:
Yadciel 2023-05-11 19:41:32 +02:00
parent 73182e90b9
commit 62e4655056

View File

@ -23,6 +23,15 @@ pipeline {
echo Resources folder was successfully moved to the dist folder.
"""
}
stage('SCM') {
checkout scm
}
stage('SonarQube Analysis') {
def scannerHome = tool 'SQ';
withSonarQubeEnv() {
sh "${scannerHome}/bin/sonar-scanner"
}
}
}
}
}