Files
CarbonLib/Jenkinsfile
Peter Bastiani 62145b9569
Some checks reported warnings
FarmMaps.Develop/CarbonLib/pipeline/head This commit is unstable
AW-5371 Release 2023.08 libraries
2023-07-30 10:48:46 +02:00

30 lines
549 B
Groovy

@Library('farmmaps-shared-library') _
pipeline {
agent any;
options {
copyArtifactPermission projectNames: env.allProjectsArtifactPermission;
disableConcurrentBuilds abortPrevious: true;
}
triggers {
upstream(
upstreamProjects: '/FarmMaps/Base.Core.Common.Geometry/master',
threshold: hudson.model.Result.SUCCESS
)
}
stages {
stage('BaseBuildAll') {
steps {
stepBaseBuildAll();
}
}
}
post {
success {
postSuccess();
}
always {
postAlways();
}
}
}