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.
GulliverReloaded/Jenkinsfile
TheBrokenRail 2a3223a873
All checks were successful
Gulliver Reloaded/pipeline/head This commit looks good
1.0
Initial Release
2020-03-26 23:05:28 -04:00

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
}
}
}
}
}