FarmMapsLib/Jenkinsfile.develop

20 lines
289 B
Plaintext
Raw Normal View History

2023-06-27 13:56:17 +00:00
@Library('farmmaps-shared-library') _
2019-11-25 13:47:20 +00:00
pipeline {
2023-06-27 13:56:17 +00:00
agent any;
2019-11-25 13:47:20 +00:00
stages {
2023-06-27 13:56:17 +00:00
stage('FarmmapsLibBuildAll') {
2019-11-25 13:47:20 +00:00
steps {
2023-06-27 14:02:52 +00:00
stepFarmmapsLibBuildAll();
2019-11-25 13:47:20 +00:00
}
}
}
2023-06-27 14:27:18 +00:00
post {
success {
postSuccess();
}
always {
postAlways();
}
}
2019-07-16 14:29:37 +00:00
}