Files
ZenProject/Jenkinsfile
T
Sami 32648aa817
jenkins/ZenProject/pipeline/head This commit looks good
fix: 29
2024-10-06 19:44:49 -04:00

14 lines
238 B
Groovy

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