Added Sonar

This commit is contained in:
Dmitry 2017-05-09 14:51:47 -07:00
parent cde6321801
commit 8fa4432796

8
Jenkinsfile vendored
View file

@ -14,5 +14,13 @@ pipeline {
}
}
}
stage ('Sonar') {
steps {
script {
scannerHome = tool 'Sonar'
}
sh "${scannerHome}/bin/sonar-scanner"
}
}
}
}