ZenProject/Jenkinsfile
dadgam3er 9777fa5e9a
Some checks failed
jenkins/ZenProject/pipeline/head There was a failure building this commit
fix: 16
2024-09-30 22:50:46 -04:00

14 lines
229 B
Groovy

pipeline {
agent {
label "agent_locke"
}
stages {
stage('Build') {
steps {
// This runs the Maven test phase
sh 'mvn test'
}
}
}
}