fix jenkins file

This commit is contained in:
Nilton Constantino 2025-02-19 08:58:22 +00:00
parent db6e25dfdb
commit def2072894

4
Jenkinsfile vendored
View File

@ -5,13 +5,13 @@ pipeline {
stage('Build') { stage('Build') {
steps { steps {
echo 'Building..' echo 'Building..'
./gradlew clean build sh './gradlew clean build'
} }
} }
stage('Test') { stage('Test') {
steps { steps {
echo 'Testing..' echo 'Testing..'
./gradlew test sh './gradlew test'
} }
} }
} }