Pipeline Test

This commit is contained in:
valentin_lechner 2020-01-30 17:13:10 +01:00
parent a17c502e4f
commit ff6864f191

6
Jenkinsfile vendored
View File

@ -2,21 +2,23 @@
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 {
script { script {