FarmMapsLib/Jenkinsfile
Peter Bastiani a9d42484cc
All checks were successful
FarmMaps/FarmMapsLib/pipeline/head This commit looks good
jenkins
2023-07-26 17:52:01 +02:00

23 lines
384 B
Groovy

@Library('farmmaps-shared-library') _
pipeline {
agent any;
options {
copyArtifactPermission projectNames: env.allProjectsArtifactPermission;
}
stages {
stage('FarmmapsLibBuildAll') {
steps {
stepFarmmapsLibBuildAll();
}
}
}
post {
success {
postSuccess();
}
always {
postAlways();
}
}
}