Files
CarbonLib/Jenkinsfile
Peter Bastiani 6e8e8db12e
All checks were successful
FarmMaps/CarbonLib/pipeline/head This commit looks good
jenkins
2023-07-26 16:55:18 +02:00

29 lines
500 B
Groovy

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