Update Jenkinsfile
FarmMaps/FarmMapsLib/pipeline/head There was a failure building this commit Details

master
Peter Bastiani 2023-10-20 12:20:24 +00:00
parent 6ab5ba8a56
commit 87547aafcc
1 changed files with 23 additions and 23 deletions

46
Jenkinsfile vendored
View File

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