mirror of
https://github.com/bvanroll/environment-ff-stage-euw1-gkecluster-primary-staging.git
synced 2025-08-29 11:52:41 +00:00
16 lines
198 B
Groovy
16 lines
198 B
Groovy
pipeline {
|
|
agent {
|
|
label "jenkins-maven"
|
|
}
|
|
|
|
stages {
|
|
stage('Update Environment') {
|
|
steps {
|
|
container('maven') {
|
|
sh 'make install'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|