add Jenkinsfile

This commit is contained in:
lagertonne 2020-03-28 23:15:36 +01:00
parent 84bacb4985
commit e78af66b95

11
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('build') {
steps {
echo 'Building..'
}
}
}
}