TheBrokenRail
d3fb414c60
Some checks failed
ModUpdater/pipeline/head There was a failure building this commit
20 lines
376 B
Groovy
20 lines
376 B
Groovy
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'openjdk:8-jdk'
|
|
}
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
sh './gradlew build'
|
|
}
|
|
post {
|
|
success {
|
|
archiveArtifacts artifacts: 'build/libs/*', fingerprint: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|