FarmMapsLib/Jenkinsfile

24 lines
434 B
Plaintext
Raw Normal View History

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