This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
SorceryCraft/Jenkinsfile

20 lines
376 B
Plaintext
Raw Normal View History

2020-03-01 18:19:59 +00:00
pipeline {
agent {
docker {
image 'openjdk:8-jdk'
}
}
stages {
stage('Build') {
steps {
2020-03-02 02:45:16 +00:00
sh './gradlew build'
2020-03-01 18:19:59 +00:00
}
post {
success {
archiveArtifacts artifacts: 'build/libs/*', fingerprint: true
}
}
}
}
}