File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,11 @@ pipeline {
67
67
description: 'Distribution to test',
68
68
trim: true
69
69
)
70
+ booleanParam(
71
+ name: 'UPDATE_GITHUB_ISSUE',
72
+ description: 'To create/close/update a github issue for all component or not.',
73
+ defaultValue: true
74
+ )
70
75
}
71
76
stages {
72
77
stage('detect docker image + args') {
@@ -114,7 +119,8 @@ pipeline {
114
119
string(name: 'BUILD_PLATFORM', value: "${BUILD_PLATFORM}"),
115
120
string(name: 'BUILD_DISTRIBUTION', value: "${BUILD_DISTRIBUTION}"),
116
121
string(name: 'TEST_PLATFORM', value: "${TEST_PLATFORM}"),
117
- string(name: 'TEST_DISTRIBUTION', value: "${TEST_DISTRIBUTION}")
122
+ string(name: 'TEST_DISTRIBUTION', value: "${TEST_DISTRIBUTION}"),
123
+ booleanParam(name: 'UPDATE_GITHUB_ISSUE', value: "${UPDATE_GITHUB_ISSUE}")
118
124
], wait: true
119
125
120
126
echo "Build succeeded, uploading build SHA for that job"
You can’t perform that action at this time.
0 commit comments