Update Jenkinsfile

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

3
Jenkinsfile vendored
View file

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