FarmMapsLib/Jenkinsfile.develop
Peter Bastiani d7efeb8d59
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
fix build
2023-06-27 16:27:18 +02:00

20 lines
289 B
Plaintext

@Library('farmmaps-shared-library') _
pipeline {
agent any;
stages {
stage('FarmmapsLibBuildAll') {
steps {
stepFarmmapsLibBuildAll();
}
}
}
post {
success {
postSuccess();
}
always {
postAlways();
}
}
}