Files
AkarinMC/Jenkinsfile
2020-12-12 20:17:04 +01:00

20 lines
329 B
Groovy

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