From 54dfaf31c65b7e155cd18eec410795eb85596664 Mon Sep 17 00:00:00 2001 From: Evan Lezar Date: Mon, 14 Jun 2021 13:48:28 +0200 Subject: [PATCH] Fix isTag in Jenkinsfile Signed-off-by: Evan Lezar --- Jenkinsfile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2a24bb19..5b401ef6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -84,14 +84,7 @@ podTemplate (cloud:'sw-gpu-cloudnative', // getVersionInfo returns a hash of version info def getVersionInfo(def scmInfo) { - def isMaster = scmInfo.GIT_BRANCH == "master" - def isJetson = scmInfo.GIT_BRANCH == "jetson" - - def isTag = !isMaster && !isJetson - def versionInfo = [ - isMaster: isMaster, - isJetson: isJetson, isTag: isTag(scmInfo.GIT_BRANCH) ]