diff --git a/Code/Mantid/Build/Jenkins/buildscript b/Code/Mantid/Build/Jenkins/buildscript index 5e4e7f0e459b44f6f5e3f61b5c5b682a11b97fdd..fbd3d272eb89c4f5f8bd75a07a131bb7d5413f39 100755 --- a/Code/Mantid/Build/Jenkins/buildscript +++ b/Code/Mantid/Build/Jenkins/buildscript @@ -4,7 +4,7 @@ # # Notes: # -# WORKSPACE, JOB_NAME, NODE_LABEL GIT_COMMIT are environment variables that +# WORKSPACE, JOB_NAME, NODE_LABEL GIT_COMMIT are environment variables that # are set by Jenkins. The last one corresponds to any labels set on a slave. # BUILD_THREADS & PARAVIEW_DIR should be set in the configuration of each # slave. @@ -14,11 +14,9 @@ SCRIPT_DIR=$(dirname "$0") BUILDPKG=true ############################################################################### -# If pvnext in JOB_NAME, use PARAVIEW_NEXT_DIR for PARAVIEW_DIR and add suffix # to the UNSTABLE_NAME +# All node currently have PARAVIEW_DIR=3.98.1 and PARAVIEW_NEXT_DIR=4.3.1 ############################################################################### -if [[ ${JOB_NAME} == *pvnext* ]]; then - export PARAVIEW_DIR=${PARAVIEW_NEXT_DIR} -fi +export PARAVIEW_DIR=${PARAVIEW_NEXT_DIR} ############################################################################### # Print out the versions of things we are using @@ -75,7 +73,7 @@ elif [[ $(uname) == 'Darwin' ]] ; then if [[ ! $(command -v icpc) ]] ; then USE_CLANG=true fi -fi +fi if [[ $USE_CLANG ]]; then # Assuming we are using the clang compiler @@ -84,14 +82,14 @@ if [[ $USE_CLANG ]]; then export CC=clang export CXX=clang++ #check if CMakeCache.txt exists and if so that the cxx compiler is clang++ - #only needed with incremental builds. Clean builds delete this directory in a later step. + #only needed with incremental builds. Clean builds delete this directory in a later step. if [[ -e $BUILD_DIR/CMakeCache.txt ]] && [[ ${JOB_NAME} != *clean* ]]; then - COMPILERFILEPATH=`grep 'CMAKE_CXX_COMPILER:FILEPATH' $BUILD_DIR/CMakeCache.txt` - if [[ $COMPILERFILEPATH != *clang++* ]]; then + COMPILERFILEPATH=`grep 'CMAKE_CXX_COMPILER:FILEPATH' $BUILD_DIR/CMakeCache.txt` + if [[ $COMPILERFILEPATH != *clang++* ]]; then # Removing the build directory entirely guarantees clang is used. rm -rf $BUILD_DIR fi - fi + fi fi ############################################################################### diff --git a/Code/Mantid/Build/Jenkins/buildscript.bat b/Code/Mantid/Build/Jenkins/buildscript.bat index 2ae685bf1574a4e8753a26704c459c33b319cfdc..72ff740bb84e775c3889c8820911d7b97911032f 100755 --- a/Code/Mantid/Build/Jenkins/buildscript.bat +++ b/Code/Mantid/Build/Jenkins/buildscript.bat @@ -9,16 +9,9 @@ setlocal enableextensions enabledelayedexpansion ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -:: If pvnext in JOB_NAME, use PARAVIEW_NEXT_DIR for PARAVIEW_DIR -:: Also, occasionally pvnext needs a different build type. Get it from -:: PVNEXT_BUILD_TYPE +:: All node currently have PARAVIEW_DIR=3.98.1 and PARAVIEW_NEXT_DIR=4.3.1 ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: -if NOT "%JOB_NAME%"=="%JOB_NAME:pvnext=%" ( - set PARAVIEW_DIR=%PARAVIEW_NEXT_DIR% - set BUILD_TYPE=%PVNEXT_BUILD_TYPE% -) else ( - set BUILD_TYPE=Release -) +set PARAVIEW_DIR=%PARAVIEW_NEXT_DIR% set CMAKE_BIN_DIR=C:\Program Files (x86)\CMake 2.8\bin "%CMAKE_BIN_DIR%\cmake.exe" --version @@ -174,4 +167,3 @@ if not "%JOB_NAME%"=="%JOB_NAME:pull_requests=%" ( python !SYSTEMTESTS_DIR!\scripts\mantidinstaller.py uninstall %BUILD_DIR% if !RETCODE! NEQ 0 exit /B 1 ) -