From d1cfb6956a205a502aa755b906dcc2d998540c6c Mon Sep 17 00:00:00 2001 From: Jan-Simon Möller Date: Wed, 12 Dec 2018 15:13:35 +0100 Subject: Support BUILDONLY job parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit to select just a single machine. Change-Id: I76d884c800c7e130420e13b8d7d431803facfe7d Signed-off-by: Jan-Simon Möller --- jjb/common/include-agl-header.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'jjb/common/include-agl-header.sh') diff --git a/jjb/common/include-agl-header.sh b/jjb/common/include-agl-header.sh index 946b2e92..091f9dd8 100644 --- a/jjb/common/include-agl-header.sh +++ b/jjb/common/include-agl-header.sh @@ -122,6 +122,16 @@ eval TARGETIMAGEnogfx="$TARGETIMAGEnogfx" # The 'real' machine name export TARGETMACHINE=${MACHINE} +# bail out if we're not the 'BUILDONLY' machine +if test -n "${BUILDONLY}" ; then + if test x"ignore" != x"${BUILDONLY}" ; then + if test x"${MACHINE}" != x"${BUILDONLY}" ; then + echo "Skipping ${MACHINE} as BUILDONLY is ${BUILDONLY}." + exit 1 + fi + fi +fi + # The exceptions if $NOGFX; then export TARGETIMAGE=${TARGETIMAGEnogfx} -- cgit 1.2.3-korg