Added Jenkinsfile

This commit is contained in:
Joseph Robinson
2020-05-13 19:12:30 -07:00
parent 53fd5de975
commit 848851db37

11
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh './akarin jar'
}
}
}
}