FarmMapsLib/Jenkinsfile

24 lines
434 B
Plaintext
Raw Normal View History

2023-07-26 15:52:01 +00:00
@Library('farmmaps-shared-library') _
2021-06-03 07:37:13 +00:00
pipeline {
2023-07-26 15:52:01 +00:00
agent any;
options {
copyArtifactPermission projectNames: env.allProjectsArtifactPermission;
2023-07-30 08:53:08 +00:00
disableConcurrentBuilds abortPrevious: true;
2021-06-03 07:37:13 +00:00
}
stages {
2023-07-26 15:52:01 +00:00
stage('FarmmapsLibBuildAll') {
2021-06-03 07:37:13 +00:00
steps {
2023-07-26 15:52:01 +00:00
stepFarmmapsLibBuildAll();
2021-06-03 07:37:13 +00:00
}
}
}
post {
2023-07-26 15:52:01 +00:00
success {
postSuccess();
}
2021-06-03 07:37:13 +00:00
always {
2023-07-26 15:52:01 +00:00
postAlways();
2021-06-03 07:37:13 +00:00
}
}
}