Update jenkinsfile

This commit is contained in:
2018-08-08 09:23:32 +00:00
parent b1925b31ce
commit 01a0cd1cae

18
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,18 @@
node('node') {
try {
stage('Checkout'){
checkout scm
}
stage('Test'){
steps {
echo 'Building..'
}
}
}
catch (err) {
throw err
}
}