Files
AkarinMC/Jenkinsfile
Joseph Robinson b06e5f3e13 Update Jenkinsfile
2020-05-13 19:44:40 -07:00

25 lines
407 B
Groovy

pipeline {
agent any
stages {
stage('Init Submodules') {
steps {
sh 'git submodule update --init --recursive'
}
}
stage('Build') {
steps {
sh 'bash ./scripts/build.sh'
sh 'bash ./scripts/inst.sh --setup --fast'
}
}
stage('Archive') {
steps {
archiveArtifacts(artifacts: '*.jar', fingerprint: true)
}
}
}
}