Files
AkarinMC/Jenkinsfile
Joseph Robinson 86928e546a Updated build init
2020-05-15 13:09:18 -07:00

25 lines
391 B
Groovy

pipeline {
agent any
stages {
stage('Initialize') {
steps {
sh '''git fetch origin
git reset --hard origin/1.15.2
git submodule update --init --recursive'''
}
}
stage('Build') {
steps {
sh './akarin jar'
}
}
stage('Archive') {
steps {
archiveArtifacts(artifacts: '*.jar', fingerprint: true)
}
}
}
}