3 Commits

Author SHA1 Message Date
78b7ef44d9 Update Jenkinsfile.develop
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
2023-10-20 12:20:03 +00:00
e19ca94653 Update Jenkinsfile 2023-10-20 12:19:52 +00:00
Willem Dantuma
a85378374b kick version
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
FarmMaps/FarmMapsLib/pipeline/head This commit looks good
2023-10-18 19:35:01 +02:00
3 changed files with 47 additions and 47 deletions

46
Jenkinsfile vendored
View File

@@ -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();
} }
} }
} }

View File

@@ -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();
} }
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"name": "farmmaps-lib-app", "name": "farmmaps-lib-app",
"version": "3.5.0", "version": "3.5.1",
"scripts": { "scripts": {
"ng": "ng", "ng": "ng",
"start": "ng serve", "start": "ng serve",