This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FarmMapsLib/Jenkinsfile.develop
T
peter b5a3a62cee
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
AW-6046 Fix jenkins
2024-04-09 11:04:37 +02:00

24 lines
393 B
Plaintext

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