JenkinsTest/Jenkinsfile
Nilton Constantino def2072894 fix jenkins file
2025-02-19 08:58:22 +00:00

21 lines
332 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
sh './gradlew clean build'
}
}
stage('Test') {
steps {
echo 'Testing..'
sh './gradlew test'
}
}
}
}