FarmMapsLib/Jenkinsfile.develop

24 lines
393 B
Plaintext
Raw Normal View History

2023-10-20 12:20:03 +00:00
@Library('farmmaps-shared-library') _
pipeline {
agent any;
options {
copyArtifactPermission projectNames: env.allProjectsArtifactPermission;
disableConcurrentBuilds();
}
stages {
stage('FarmmapsLibBuildAll') {
steps {
stepFarmmapsLibBuildAll();
}
}
}
post {
success {
postSuccess();
}
always {
postAlways();
}
}
2024-04-09 09:04:37 +00:00
}