Update Jenkinsfile

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

23
Jenkinsfile vendored
View File

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