Some checks failed
jenkins/ZenProject/pipeline/head There was a failure building this commit
15 lines
230 B
Groovy
15 lines
230 B
Groovy
pipeline {
|
|
agent {
|
|
label "agent_locke"
|
|
}
|
|
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
// This runs the Maven test phase
|
|
sh 'mvn test'
|
|
}
|
|
}
|
|
}
|
|
}
|