Skip to content

Commit

Permalink
Jenkins: remove defunct appcheck pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
micahsnyder committed Sep 2, 2024
1 parent fbc7531 commit d1eb5ad
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down Expand Up @@ -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
}
}

0 comments on commit d1eb5ad

Please sign in to comment.