From 04974b35fd39505d147b3010b642de94f519e971 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Thu, 30 May 2013 17:40:47 -0500 Subject: [PATCH] Added jenkins/aps_build script --- jenkins/aps_build | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 jenkins/aps_build diff --git a/jenkins/aps_build b/jenkins/aps_build new file mode 100644 index 0000000..09973dd --- /dev/null +++ b/jenkins/aps_build @@ -0,0 +1,23 @@ +# pvAccess C++ implementation +# Jenkins @ Cloudbees build script +# +# Jenkins invokes scripts with the "-ex" option. So the build is considered a failure +# if any of the commands exits with a non-zero exit code. +# +# Author: Ralph Lange +# Copyright (C) 2013 Helmholtz-Zentrum Berlin für Materialien und Energie GmbH +# All rights reserved. Use is subject to license terms. + +########################################### +# Build + +export EPICS_BASE=${HOME}/jobs/epics-base-3.14/workspace +export EPICS_HOST_ARCH=$(${EPICS_BASE}/startup/EpicsHostArch) + +cat > configure/RELEASE.local << EOF +PVDATA=${HOME}/jobs/epics-pvData/workspace +PVCOMMON=${HOME}/jobs/epics-pvCommon/workspace +EPICS_BASE=${EPICS_BASE} +EOF + +make distclean all