Files
AkarinMC/Jenkinsfile
2020-12-15 19:09:32 +01:00

18 lines
256 B
Groovy

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