add Jenkinsfile

This commit is contained in:
Brandon Bradley 2018-11-13 10:14:00 -06:00
parent 32f0fc6111
commit 29bcc7fa57

11
Jenkinsfile vendored Normal file
View File

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