Compare commits
2 Commits
develop
...
87547aafcc
Author | SHA1 | Date | |
---|---|---|---|
87547aafcc | |||
6ab5ba8a56 |
46
Jenkinsfile
vendored
46
Jenkinsfile
vendored
@@ -1,24 +1,24 @@
|
|||||||
@Library('farmmaps-shared-library') _
|
@Library('farmmaps-shared-library') _
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any;
|
agent any;
|
||||||
options {
|
options {
|
||||||
copyArtifactPermission projectNames: env.allProjectsArtifactPermission;
|
copyArtifactPermission projectNames: env.allProjectsArtifactPermission;
|
||||||
disableConcurrentBuilds abortPrevious: true;
|
disableConcurrentBuilds();
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
stage('FarmmapsLibBuildAll') {
|
stage('FarmmapsLibBuildAll') {
|
||||||
steps {
|
steps {
|
||||||
stepFarmmapsLibBuildAll();
|
stepFarmmapsLibBuildAll();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
success {
|
success {
|
||||||
postSuccess();
|
postSuccess();
|
||||||
}
|
}
|
||||||
always {
|
always {
|
||||||
postAlways();
|
postAlways();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -1,24 +1,24 @@
|
|||||||
@Library('farmmaps-shared-library') _
|
@Library('farmmaps-shared-library') _
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any;
|
agent any;
|
||||||
options {
|
options {
|
||||||
copyArtifactPermission projectNames: env.allProjectsArtifactPermission;
|
copyArtifactPermission projectNames: env.allProjectsArtifactPermission;
|
||||||
disableConcurrentBuilds abortPrevious: true;
|
disableConcurrentBuilds();
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
stage('FarmmapsLibBuildAll') {
|
stage('FarmmapsLibBuildAll') {
|
||||||
steps {
|
steps {
|
||||||
stepFarmmapsLibBuildAll();
|
stepFarmmapsLibBuildAll();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
success {
|
success {
|
||||||
postSuccess();
|
postSuccess();
|
||||||
}
|
}
|
||||||
always {
|
always {
|
||||||
postAlways();
|
postAlways();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user