diff options
Diffstat (limited to 'jjb/common/include-agl-set-compositor-image.sh')
-rw-r--r-- | jjb/common/include-agl-set-compositor-image.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/jjb/common/include-agl-set-compositor-image.sh b/jjb/common/include-agl-set-compositor-image.sh new file mode 100644 index 00000000..3bb577a1 --- /dev/null +++ b/jjb/common/include-agl-set-compositor-image.sh @@ -0,0 +1,27 @@ +#!/bin/bash +# (c) 2016 Jan-Simon Moeller dl9pf(at)gmx.de +# License GPLv2 +# +# debugging purposes +set -e + +################################################################################ +## Header +################################################################################ + +# only run on master, jellyfish and icefish +( echo "master jellyfish icefish" | grep -q $TARGETBRANCH ) || exit 0 + +# Use the agl-compositor +export TARGETFEATURES="agl-demo agl-devel agl-netboot agl-compositor" +export TARGETQA="" +export TARGETIMAGE="agl-demo-platform" + +eval TARGETIMAGE="$TARGETIMAGE" +eval TARGETIMAGEnogfx="$TARGETIMAGE" + +#if $DEBUG; then +set | grep ^TARGET || true +set | grep ^GERRIT || true +set | grep ^MACHINE || true +#fi |