Update Jenkinsfile

This commit is contained in:
Benjamin Tan 2025-12-13 17:36:11 +00:00
parent 41804816e8
commit be9dddeb02

9
Jenkinsfile vendored
View file

@ -24,11 +24,14 @@ pipeline {
} }
stage('Unit Test') { stage('Unit Test') {
steps { steps {
for (int i = 0 ; i < 60; i++) { script {
for (int i = 0 ; i < 60; i++) {
echo "${i + 1}" echo "${i + 1}"
sleep 1 sleep 1
} }
sh "mvn test"
sh "mvn test"
}
} }
} }
} }