FarmMapsLib/Jenkinsfile.develop
Peter Bastiani 78b7ef44d9
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
Update Jenkinsfile.develop
2023-10-20 12:20:03 +00:00

24 lines
393 B
Plaintext

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