JenkinsFILE

This commit is contained in:
RolandBakunts 2023-01-16 06:32:58 -08:00
parent 84c43d9bac
commit 114932aeb2

View file

@ -5,12 +5,18 @@ pipeline {
}
}
stages {
stage('Stage 1') {
stage('Clone') {
steps {
echo 'Hello xzxxzx world!'
sh 'ls -a'
sh './gradlew -version'
echo 'Cloning'
git url: 'https://github.com/RolandBakunts/spring-petclinic.git'
// withGradle(){
// }
}
}
stage('Build') {
steps {
echo 'Hello hgfds world!'
sh './gradlew task --all'
// withGradle(){
// }
}