mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-29 18:55:49 +00:00
JenkinsFILE
This commit is contained in:
parent
c134d550c4
commit
508cdf940e
1 changed files with 12 additions and 10 deletions
22
Jenkinsfile
vendored
22
Jenkinsfile
vendored
|
@ -4,17 +4,19 @@ pipeline {
|
|||
label 'linux-agent'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
steps {
|
||||
// echo 'java -version'
|
||||
withGradle(){
|
||||
sh './gradlew -version'
|
||||
sh './gradlew clean test --no-daemon'
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
// echo 'java -version'
|
||||
withGradle(){
|
||||
sh './gradlew -version'
|
||||
sh './gradlew clean test --no-daemon'
|
||||
}
|
||||
// sh 'cat ./build/libs/spring-petclinic-changed-0.1.1-SNAPSHOT-plain.jar'
|
||||
// archiveArtifacts: './build/libs/spring-petclinic-changed-0.1.1-SNAPSHOT-plain.jar'
|
||||
// withGradle(){
|
||||
// }
|
||||
}
|
||||
// sh 'cat ./build/libs/spring-petclinic-changed-0.1.1-SNAPSHOT-plain.jar'
|
||||
// archiveArtifacts: './build/libs/spring-petclinic-changed-0.1.1-SNAPSHOT-plain.jar'
|
||||
// withGradle(){
|
||||
// }
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue