Files
AkarinMC/Jenkinsfile
2021-03-29 19:07:17 +02:00

18 lines
257 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'bash ./scripts/inst.sh --setup --fast'
}
}
stage('Archive') {
steps {
archiveArtifacts(artifacts: '*.jar', fingerprint: true)
}
}
}
}