Remove the Jenkinsfile for demo purposes

This commit is contained in:
R. Tyler Croy 2017-10-23 20:10:53 -07:00
parent d984870d7f
commit a6f2ead218
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 0 additions and 27 deletions

27
Jenkinsfile vendored
View File

@ -1,27 +0,0 @@
#!/usr/bin/env groovy
pipeline {
agent { label 'docker' }
stages {
stage('Prepare') {
steps {
sh 'make depends'
}
}
stage('Test') {
steps {
sh 'make check'
}
post {
always {
archiveArtifacts 'rspec.html'
}
}
}
stage('Build container') {
steps {
sh 'make container'
}
}
}
}