Pipeline Test

This commit is contained in:
valentin_lechner 2020-01-30 17:14:31 +01:00
parent ff6864f191
commit d8d81efdeb

8
Jenkinsfile vendored
View File

@ -12,11 +12,15 @@ pipeline {
} }
stage('compile'){ stage('compile'){
sh 'echo "fake-compiling..."' steps{
sh 'echo "fake-compiling..."'
}
} }
stage('deploySONAR'){ stage('deploySONAR'){
sh 'sonar-scanner' steps{
sh 'sonar-scanner'
}
} }
} }
post { post {