Pipeline Test

master
valentin_lechner 5 years ago
parent a17c502e4f
commit ff6864f191

16
Jenkinsfile vendored

@ -2,20 +2,22 @@
pipeline { pipeline {
agent any
stages{ stages{
stage('checkout VCS'){ stage('checkout VCS'){
steps{ steps{
checkout scm checkout scm
} }
}
stage('compile'){ stage('compile'){
sh 'make' sh 'echo "fake-compiling..."'
} }
stage('deploySONAR'){ stage('deploySONAR'){
sh 'sonar-scanner' sh 'sonar-scanner'
} }
}
} }
post { post {
unstable { unstable {

Loading…
Cancel
Save