FarmMapsLib/Jenkinsfile.develop

24 lines
434 B
Plaintext
Raw Normal View History

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