JenkinsFILE

This commit is contained in:
RolandBakunts 2023-01-16 07:05:31 -08:00
parent 80359f124a
commit 3403b37336

27
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,27 @@
pipeline {
agent {
node {
label 'linux-agent'
}
}
stages {
stage('Clone') {
steps {
echo 'Cloningf'
sh "git clone https://github.com/RolandBakunts/spring-petclinic.git"
sh "ls -a"
sh "./gradlew clean build"
// withGradle(){
// }
}
}
stage('Build') {
steps {
echo 'Hello hgfds world!'
sh './gradlew task --all'
// withGradle(){
// }
}
}
}
}