Add new file

This commit is contained in:
2018-08-08 09:22:21 +00:00
parent 5faf108a6d
commit b1925b31ce

18
jenkinsfile Normal file
View File

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