Add a placeholder Pipeline

This commit is contained in:
R. Tyler Croy 2017-08-26 11:46:08 -07:00
parent 4e0239c1e5
commit fbdefa28e6
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 12 additions and 0 deletions

12
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env groovy
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Nothing yet'
}
}
}
}