diff options
author | Kevin Hilman <khilman@baylibre.com> | 2017-10-09 18:05:22 +0000 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2017-10-09 18:05:22 +0000 |
commit | 42ac26c17d463d4392c7350de92330c413a8ca07 (patch) | |
tree | e0e75888bb895b70e313bef54efb3637a2ebf962 /jjb | |
parent | 1e42f0a866bf2b7f22ba81f167504ca4318b5899 (diff) |
jjb/common: run-test-short: show jinja2 version
Change-Id: Idd324bc07bc21135eabb632dfaf2070f9ca73f55
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/common/include-agl-run-test-short.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/jjb/common/include-agl-run-test-short.sh b/jjb/common/include-agl-run-test-short.sh index 2e82ade2..a5561f85 100644 --- a/jjb/common/include-agl-run-test-short.sh +++ b/jjb/common/include-agl-run-test-short.sh @@ -16,6 +16,9 @@ __MACHINE=${MACHINE%-nogfx} # releng doesn't care if [ ! -z $RELENG ] && \ [[ x$__MACHINE == x"qemux86-64" || \ x$__MACHINE == x"m3ulcb" ]]; then + # releng-scripts depends on jinja2 >= 2.9 + echo -n "## Check version of python-jinja2: " + pip list --format=legacy |grep -i jinja2 CREATE_ARGS="" [[ ! -z $GERRIT_CHANGE_NUMBER ]] && CREATE_ARGS+="-j $GERRIT_CHANGE_NUMBER " [[ ! -z $GERRIT_PATCHSET_NUMBER ]] && CREATE_ARGS+="-i $GERRIT_PATCHSET_NUMBER " |