Peter Bastiani
d7efeb8d59
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
20 lines
289 B
Plaintext
20 lines
289 B
Plaintext
@Library('farmmaps-shared-library') _
|
|
|
|
pipeline {
|
|
agent any;
|
|
stages {
|
|
stage('FarmmapsLibBuildAll') {
|
|
steps {
|
|
stepFarmmapsLibBuildAll();
|
|
}
|
|
}
|
|
}
|
|
post {
|
|
success {
|
|
postSuccess();
|
|
}
|
|
always {
|
|
postAlways();
|
|
}
|
|
}
|
|
} |