Files
CarbonLib/Jenkinsfile.develop
Peter Bastiani c39096ce6f
Some checks failed
FarmMaps/CarbonLib/pipeline/head There was a failure building this commit
Update Jenkinsfile.develop
2023-10-20 12:00:07 +00:00

30 lines
540 B
Plaintext

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