You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: address-validation-service/Jenkinsfile
+36-3Lines changed: 36 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@
2
2
pipeline {
3
3
agent any
4
4
5
+
parameters {
6
+
booleanParam(name: 'verifyPacts', defaultValue: false, description: 'should this job just run to verify pacts from a consumer')
7
+
}
8
+
5
9
options {
6
10
disableConcurrentBuilds()
7
11
}
@@ -12,6 +16,7 @@ pipeline {
12
16
PERFORM_RELEASE="${env.SNAPSHOT_VERSION.contains('-SNAPSHOT') && env.BRANCH_NAME == 'main' && !env.LAST_COMMIT_MESSAGE.startsWith('update version to ')}"
Copy file name to clipboardExpand all lines: billing-service/Jenkinsfile
+36-3Lines changed: 36 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@
2
2
pipeline {
3
3
agent any
4
4
5
+
parameters {
6
+
booleanParam(name: 'verifyPacts', defaultValue: false, description: 'should this job just run to verify pacts from a consumer')
7
+
}
8
+
5
9
options {
6
10
disableConcurrentBuilds()
7
11
}
@@ -12,6 +16,7 @@ pipeline {
12
16
PERFORM_RELEASE="${env.SNAPSHOT_VERSION.contains('-SNAPSHOT') && env.BRANCH_NAME == 'main' && !env.LAST_COMMIT_MESSAGE.startsWith('update version to ')}"
0 commit comments