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

18 lines
242 B
Groovy

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