ZenProject/Jenkinsfile
Sami bc25347655
Some checks failed
Zakaria/ZenProject/pipeline/head There was a failure building this commit
Zenful/ZenProject/pipeline/head There was a failure building this commit
fix: 7 - Updating Jenkinsfile
2024-09-29 01:00:40 -04:00

15 lines
230 B
Groovy

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