JenkinsFILE

This commit is contained in:
RolandBakunts 2023-01-16 07:05:07 -08:00
parent 960be18c62
commit 80359f124a

View file

@ -1,27 +0,0 @@
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(){
// }
}
}
}
}