Files
AkarinMC/Jenkinsfile
2020-12-12 20:31:40 +01:00

20 lines
330 B
Groovy

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