Browse code

Jenkins: remove defunct appcheck pipeline

Micah Snyder authored on 2024/09/03 00:22:25
Showing 1 changed files
... ...
@@ -42,9 +42,6 @@ properties(
42 42
                 string(name: 'FUZZ_CORPUS_BRANCH',
43 43
                        defaultValue: '0.103',
44 44
                        description: 'private-fuzz-corpus branch'),
45
-                string(name: 'APPCHECK_PIPELINE',
46
-                       defaultValue: 'appcheck-0.103',
47
-                       description: 'test-pipelines branch for appcheck'),
48 45
                 string(name: 'SHARED_LIB_BRANCH',
49 46
                        defaultValue: '0.103',
50 47
                        description: 'tests-jenkins-shared-libraries branch')
... ...
@@ -199,23 +196,6 @@ node('docker') {
199 199
             }
200 200
         }
201 201
 
202
-        tasks["appcheck"] = {
203
-            stage("AppCheck") {
204
-                final appcheckResult = build(job: "test-pipelines/${params.APPCHECK_PIPELINE}",
205
-                    propagate: true,
206
-                    wait: true,
207
-                    parameters: [
208
-                        [$class: 'StringParameterValue', name: 'CLAMAV_JOB_NAME', value: "${JOB_NAME}"],
209
-                        [$class: 'StringParameterValue', name: 'CLAMAV_JOB_NUMBER', value: "${BUILD_NUMBER}"],
210
-                        [$class: 'StringParameterValue', name: 'BUILD_JOB_NAME', value: "test-pipelines/${params.BUILD_PIPELINE}"],
211
-                        [$class: 'StringParameterValue', name: 'BUILD_JOB_NUMBER', value: "${buildResult.number}"],
212
-                        [$class: 'StringParameterValue', name: 'VERSION', value: "${params.VERSION}"]
213
-                    ]
214
-                )
215
-                echo "test-pipelines/${params.APPCHECK_PIPELINE} #${appcheckResult.number} succeeded."
216
-            }
217
-        }
218
-
219 202
         parallel tasks
220 203
     }
221 204
 }