Merge pull request #3 from liatrio/add_sonar_stage

Added Sonar
This commit is contained in:
Dmitry 2017-05-09 14:58:28 -07:00 committed by GitHub
commit e8484488dc

8
Jenkinsfile vendored
View file

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