Create Jenkinsfile

This commit is contained in:
Joseph Robinson
2020-05-13 19:37:31 -07:00
committed by GitHub
parent fb43a958ed
commit cb53c5d600

23
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,23 @@
pipeline {
agent any
stages {
stage('Init Submodules') {
steps {
sh 'git submodule update --init --recursive'
}
}
stage('Build') {
steps {
sh './akarin jar'
}
}
stage('Archive') {
steps {
archiveArtifacts(artifacts: '*.jar', fingerprint: true)
}
}
}
}