Update Jenkinsfile.develop

This commit is contained in:
Peter Bastiani 2023-10-20 12:20:13 +00:00
parent a85378374b
commit 6ab5ba8a56

View File

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