Update Jenkinsfile

This commit is contained in:
2018-08-08 09:37:50 +00:00
parent a111a09274
commit eae03d751e

21
Jenkinsfile vendored
View File

@@ -1,15 +1,12 @@
node { pipeline {
try { agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Checkout'){ }
checkout scm
}
stage('Test'){
echo 'Building..'
}
}
catch (err) {
throw err
}
} }