1 changed files with
5 additions and
5 deletions
|
|
|
@ -2,17 +2,17 @@
|
|
|
|
|
|
|
|
|
|
pipeline {
|
|
|
|
|
|
|
|
|
|
stages {
|
|
|
|
|
stage ('checkout VCS') {
|
|
|
|
|
steps {
|
|
|
|
|
stages{
|
|
|
|
|
stage('checkout VCS'){
|
|
|
|
|
steps{
|
|
|
|
|
checkout scm
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stage ('compile') {
|
|
|
|
|
stage('compile'){
|
|
|
|
|
sh 'make'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stage ('deploySONAR') {
|
|
|
|
|
stage('deploySONAR'){
|
|
|
|
|
sh 'sonar-scanner'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|