From 9e448b2870930ab756da3d1702d0f498569b2c3c Mon Sep 17 00:00:00 2001 From: Martyn Gigg <martyn.gigg@stfc.ac.uk> Date: Tue, 27 Mar 2018 09:19:04 +0100 Subject: [PATCH] Recognise Scientific Linux 7 as RHEL 7 variant --- buildconfig/Jenkins/buildscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildconfig/Jenkins/buildscript b/buildconfig/Jenkins/buildscript index 2e53db7ad74..8896521dd3a 100755 --- a/buildconfig/Jenkins/buildscript +++ b/buildconfig/Jenkins/buildscript @@ -14,7 +14,7 @@ SCRIPT_DIR=$(dirname "$0") ############################################################################### # System discovery ############################################################################### -if [[ ${NODE_LABELS} == *rhel7* ]] || [[ ${NODE_LABELS} == *centos7* ]]; then +if [[ ${NODE_LABELS} == *rhel7* ]] || [[ ${NODE_LABELS} == *centos7* ]] || [[ ${NODE_LABELS} == *scilin7* ]]; then ON_RHEL7=true fi if [[ ${NODE_LABELS} == *ubuntu* ]]; then -- GitLab