|
...
|
...
|
@@ -78,7 +78,8 @@ node('master') {
|
|
78
|
78
|
[$class: 'StringParameterValue', name: 'TEST_BRANCH', value: "${params.TEST_BRANCH}"],
|
|
79
|
79
|
[$class: 'StringParameterValue', name: 'FRAMEWORK_BRANCH', value: "${params.FRAMEWORK_BRANCH}"],
|
|
80
|
80
|
[$class: 'StringParameterValue', name: 'VERSION', value: "${params.VERSION}"],
|
|
81
|
|
- [$class: 'StringParameterValue', name: 'SHARED_LIB_BRANCH', value: "${params.SHARED_LIB_BRANCH}"]
|
|
|
81
|
+ [$class: 'StringParameterValue', name: 'SHARED_LIB_BRANCH', value: "${params.SHARED_LIB_BRANCH}"],
|
|
|
82
|
+ [$class: 'StringParameterValue', name: 'CLAMAV_BRANCH', value: "${params.CLAMAV_BRANCH}"]
|
|
82
|
83
|
]
|
|
83
|
84
|
)
|
|
84
|
85
|
echo "test-pipelines/${params.REGULAR_PIPELINE} #${regularResult.number} succeeded."
|
|
...
|
...
|
@@ -97,7 +98,8 @@ node('master') {
|
|
97
|
97
|
[$class: 'StringParameterValue', name: 'TEST_BRANCH', value: "${params.TEST_CUSTOM_BRANCH}"],
|
|
98
|
98
|
[$class: 'StringParameterValue', name: 'FRAMEWORK_BRANCH', value: "${params.FRAMEWORK_BRANCH}"],
|
|
99
|
99
|
[$class: 'StringParameterValue', name: 'VERSION', value: "${params.VERSION}"],
|
|
100
|
|
- [$class: 'StringParameterValue', name: 'SHARED_LIB_BRANCH', value: "${params.SHARED_LIB_BRANCH}"]
|
|
|
100
|
+ [$class: 'StringParameterValue', name: 'SHARED_LIB_BRANCH', value: "${params.SHARED_LIB_BRANCH}"],
|
|
|
101
|
+ [$class: 'StringParameterValue', name: 'CLAMAV_BRANCH', value: "${params.CLAMAV_BRANCH}"]
|
|
101
|
102
|
]
|
|
102
|
103
|
)
|
|
103
|
104
|
echo "test-pipelines/${params.CUSTOM_PIPELINE} #${customResult.number} succeeded."
|
|
...
|
...
|
@@ -119,6 +121,7 @@ node('master') {
|
|
119
|
119
|
[$class: 'StringParameterValue', name: 'FUZZ_TEST_BRANCH', value: "${params.FUZZ_TEST_BRANCH}"],
|
|
120
|
120
|
[$class: 'StringParameterValue', name: 'FUZZ_BRANCH', value: "${params.FUZZ_BRANCH}"],
|
|
121
|
121
|
[$class: 'StringParameterValue', name: 'VERSION', value: "${params.VERSION}"],
|
|
|
122
|
+ [$class: 'StringParameterValue', name: 'CLAMAV_BRANCH', value: "${params.CLAMAV_BRANCH}"]
|
|
122
|
123
|
]
|
|
123
|
124
|
)
|
|
124
|
125
|
echo "test-pipelines/${params.FUZZ_PIPELINE} #${fuzzResult.number} succeeded."
|
|
...
|
...
|
@@ -133,7 +136,8 @@ node('master') {
|
|
133
|
133
|
parameters: [
|
|
134
|
134
|
[$class: 'StringParameterValue', name: 'BUILD_JOB_NAME', value: "test-pipelines/${params.BUILD_BRANCH}"],
|
|
135
|
135
|
[$class: 'StringParameterValue', name: 'BUILD_JOB_NUMBER', value: "${buildResult.number}"],
|
|
136
|
|
- [$class: 'StringParameterValue', name: 'VERSION', value: "${params.VERSION}"]
|
|
|
136
|
+ [$class: 'StringParameterValue', name: 'VERSION', value: "${params.VERSION}"],
|
|
|
137
|
+ [$class: 'StringParameterValue', name: 'CLAMAV_BRANCH', value: "${params.CLAMAV_BRANCH}"]
|
|
137
|
138
|
]
|
|
138
|
139
|
)
|
|
139
|
140
|
echo "test-pipelines/appcheck #${appcheckResult.number} succeeded."
|