该仓库已于 2023-11-26 归档。您可以查看文件或克隆它,但不能推送、创建工单或合并请求。
RelicCraft/Jenkinsfile

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