ModUpdater/Jenkinsfile

20 lines
376 B
Plaintext
Raw Normal View History

2020-06-24 02:21:54 +00:00
pipeline {
agent {
docker {
image 'openjdk:8-jdk'
}
}
stages {
stage('Build') {
steps {
sh './gradlew build'
}
post {
success {
archiveArtifacts artifacts: 'build/libs/*', fingerprint: true
}
}
}
}
}