Update Jenkinsfile

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

17
Jenkinsfile vendored
View File

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