Added pipline

This commit is contained in:
Stijn Bannink 2020-02-25 15:07:24 +01:00
parent bf371acd8f
commit fd5c9534da

11
Jenkinsfile vendored Normal file
View file

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