Browse code

Jenkins: remove defunct appcheck pipeline

Micah Snyder authored on 2024/09/03 00:21:42
Showing 1 changed files
... ...
@@ -48,9 +48,6 @@ properties(
48 48
                 string(name: 'FUZZ_CORPUS_BRANCH',
49 49
                        defaultValue: '1.0',
50 50
                        description: 'private-fuzz-corpus branch'),
51
-                string(name: 'APPCHECK_PIPELINE',
52
-                       defaultValue: 'appcheck-1.0',
53
-                       description: 'test-pipelines branch for appcheck'),
54 51
                 string(name: 'SHARED_LIB_BRANCH',
55 52
                        defaultValue: 'master',
56 53
                        description: 'tests-jenkins-shared-libraries branch')
... ...
@@ -212,23 +209,6 @@ node('default') {
212 212
             }
213 213
         }
214 214
 
215
-        tasks["appcheck"] = {
216
-            stage("AppCheck") {
217
-                final appcheckResult = build(job: "test-pipelines/${params.APPCHECK_PIPELINE}",
218
-                    propagate: true,
219
-                    wait: true,
220
-                    parameters: [
221
-                        [$class: 'StringParameterValue', name: 'CLAMAV_JOB_NAME', value: "${JOB_NAME}"],
222
-                        [$class: 'StringParameterValue', name: 'CLAMAV_JOB_NUMBER', value: "${BUILD_NUMBER}"],
223
-                        [$class: 'StringParameterValue', name: 'BUILD_JOB_NAME', value: "test-pipelines/${params.BUILD_PIPELINE}"],
224
-                        [$class: 'StringParameterValue', name: 'BUILD_JOB_NUMBER', value: "${buildResult.number}"],
225
-                        [$class: 'StringParameterValue', name: 'VERSION', value: "${params.VERSION}"]
226
-                    ]
227
-                )
228
-                echo "test-pipelines/${params.APPCHECK_PIPELINE} #${appcheckResult.number} succeeded."
229
-            }
230
-        }
231
-
232 215
         parallel tasks
233 216
     }
234 217
 }