All checks were successful
jenkins/ZenProject/pipeline/head This commit looks good
14 lines
243 B
Groovy
14 lines
243 B
Groovy
pipeline {
|
|
agent {
|
|
label "agent_locke"
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
// This runs the Maven test phase
|
|
sh 'mvn test -P Regression'
|
|
}
|
|
}
|
|
}
|
|
}
|