Files
AkarinMC/Jenkinsfile
2021-03-29 19:31:45 +02:00

24 lines
360 B
Groovy

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