FarmMapsLib/Jenkinsfile.develop

23 lines
384 B
Plaintext
Raw Normal View History

2023-06-27 15:56:17 +02:00
@Library('farmmaps-shared-library') _
2019-11-25 14:47:20 +01:00
pipeline {
2023-06-27 15:56:17 +02:00
agent any;
2023-06-27 16:30:49 +02:00
options {
copyArtifactPermission projectNames: env.allProjectsArtifactPermission;
}
2019-11-25 14:47:20 +01:00
stages {
2023-06-27 15:56:17 +02:00
stage('FarmmapsLibBuildAll') {
2019-11-25 14:47:20 +01:00
steps {
2023-06-27 16:02:52 +02:00
stepFarmmapsLibBuildAll();
2019-11-25 14:47:20 +01:00
}
}
}
2023-06-27 16:27:18 +02:00
post {
success {
postSuccess();
}
always {
postAlways();
}
}
2019-07-16 16:29:37 +02:00
}