This commit is contained in:
Nilton Constantino 2025-02-19 10:27:10 +00:00
parent def2072894
commit 124d9a5a9b

8
Jenkinsfile vendored
View File

@ -2,10 +2,16 @@ pipeline {
agent any
stages {
state('Clean') {
steps {
echo 'Clean..'
sh './gradlew clean'
}
}
stage('Build') {
steps {
echo 'Building..'
sh './gradlew clean build'
sh './gradlew build'
}
}
stage('Test') {