From 68df3c67b3bb2ecd08def4ae4d580cfa1c32a7d4 Mon Sep 17 00:00:00 2001 From: Brian Ward Date: Fri, 26 Jan 2024 16:55:36 -0500 Subject: [PATCH] Properly allow multiple downstream jenkins runs --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c58282a5bf..2d6ae4e46b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -96,7 +96,7 @@ pipeline { preserveStashes(buildCount: 7) parallelsAlwaysFailFast() buildDiscarder(logRotator(numToKeepStr: '20', daysToKeepStr: '30')) - disableConcurrentBuilds(abortPrevious: env.BRANCH_NAME != "downstream_tests" || env.BRANCH_NAME != "downstream_hotfix") + disableConcurrentBuilds(abortPrevious: env.BRANCH_NAME != "downstream_tests" && env.BRANCH_NAME != "downstream_hotfix") } environment { GCC = 'g++'