[nostalgia] Add Jenkinsfile

This commit is contained in:
Gary Talent 2018-04-12 23:02:36 -05:00
parent 3ebc4e92eb
commit e2fe6f7320

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent { dockerfile true }
stages {
stage('Build') {
steps {
sh 'make release'
sh 'make'
}
}
}
}