From d1eb5ad7badd67aba355c28206c15d60619b674a Mon Sep 17 00:00:00 2001 From: Micah Snyder Date: Mon, 2 Sep 2024 11:22:25 -0400 Subject: [PATCH] Jenkins: remove defunct appcheck pipeline --- Jenkinsfile | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 26d4ce6b10..be49bd74e4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -42,9 +42,6 @@ properties( string(name: 'FUZZ_CORPUS_BRANCH', defaultValue: '0.103', description: 'private-fuzz-corpus branch'), - string(name: 'APPCHECK_PIPELINE', - defaultValue: 'appcheck-0.103', - description: 'test-pipelines branch for appcheck'), string(name: 'SHARED_LIB_BRANCH', defaultValue: '0.103', description: 'tests-jenkins-shared-libraries branch') @@ -199,23 +196,6 @@ node('docker') { } } - tasks["appcheck"] = { - stage("AppCheck") { - final appcheckResult = build(job: "test-pipelines/${params.APPCHECK_PIPELINE}", - propagate: true, - wait: true, - parameters: [ - [$class: 'StringParameterValue', name: 'CLAMAV_JOB_NAME', value: "${JOB_NAME}"], - [$class: 'StringParameterValue', name: 'CLAMAV_JOB_NUMBER', value: "${BUILD_NUMBER}"], - [$class: 'StringParameterValue', name: 'BUILD_JOB_NAME', value: "test-pipelines/${params.BUILD_PIPELINE}"], - [$class: 'StringParameterValue', name: 'BUILD_JOB_NUMBER', value: "${buildResult.number}"], - [$class: 'StringParameterValue', name: 'VERSION', value: "${params.VERSION}"] - ] - ) - echo "test-pipelines/${params.APPCHECK_PIPELINE} #${appcheckResult.number} succeeded." - } - } - parallel tasks } }