Add a simple Jenkinsfile for building these things in Jenkins

This commit is contained in:
R. Tyler Croy 2016-08-03 12:18:25 -07:00
parent d27c009e8c
commit fe2d5a1f0d
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env groovy
node('docker') {
stage 'Build Containers'
sh './build-rubies.sh'
stage 'Publish Containers'
sh './push-rubies.sh'
}