From b462b3a26c194792e249d2f08bf0a981a631a203 Mon Sep 17 00:00:00 2001 From: Adrian Dombeck Date: Mon, 7 Jun 2021 16:12:19 +0200 Subject: [PATCH] fix: Replace ${CICTL_VERSION} with the actual cictl version (3.2.2) --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7ac67a29..073c51a6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,10 +12,10 @@ pipeline { // Credentials for accessing the fuzzing service CI_FUZZ_API_TOKEN = credentials('CI_FUZZ_API_TOKEN') - CICTL = "${WORKSPACE}/cictl-%{CICTL_VERSION}-linux"; - CICTL_VERSION = '%{CICTL_VERSION}'; + CICTL = "${WORKSPACE}/cictl-3.2.2-linux"; + CICTL_VERSION = '3.2.2'; CICTL_SHA256SUM = '1638c7426af10dccc60da00fa70c6c42fb7b8cea59ee926a64568784b61926d3'; - CICTL_URL = 'https://s3.eu-central-1.amazonaws.com/public.code-intelligence.com/cictl/cictl-%{CICTL_VERSION}-linux'; + CICTL_URL = 'https://s3.eu-central-1.amazonaws.com/public.code-intelligence.com/cictl/cictl-3.2.2-linux'; FINDINGS_TYPE = 'CRASH'; TIMEOUT = '900'