Files
CarbonLib/Jenkinsfile.develop
2023-06-26 16:48:44 +02:00

29 lines
509 B
Plaintext

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