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') {
steps {
echo 'Building..'
./gradlew clean build
sh './gradlew clean build'
}
}
stage('Test') {
steps {
echo 'Testing..'
./gradlew test
sh './gradlew test'
}
}
}