diff options
author | Kevin Hilman <khilman@baylibre.com> | 2017-10-06 18:53:13 +0000 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2017-10-12 18:34:04 +0000 |
commit | dde200a85a85bf10b025d31c5ad78c89032c4121 (patch) | |
tree | 5879ec3bd9a5ad44c24a31ab67de1e3ac0968b08 | |
parent | eebdd40324d78f9895bcf48f6df3c8eff81a2ba0 (diff) |
jjb/common: run-test-short: use new releng opts
releng-scripts command-line args were updated to allow more
flexibility in defining rootfs image. Use new options.
Change-Id: Id75a4cfa521a872173cbe628f54ab6a86484d994
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
-rw-r--r-- | jjb/common/include-agl-run-test-short.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/common/include-agl-run-test-short.sh b/jjb/common/include-agl-run-test-short.sh index 4c30d54e..fca819b4 100644 --- a/jjb/common/include-agl-run-test-short.sh +++ b/jjb/common/include-agl-run-test-short.sh @@ -22,7 +22,7 @@ if [ ! -z $RELENG ] && \ CREATE_ARGS="" [[ ! -z $GERRIT_CHANGE_NUMBER ]] && CREATE_ARGS+="-j $GERRIT_CHANGE_NUMBER " [[ ! -z $GERRIT_PATCHSET_NUMBER ]] && CREATE_ARGS+="-i $GERRIT_PATCHSET_NUMBER " - [[ ! -z $TARGETIMAGE ]] && CREATE_ARGS+="--img-name $TARGETIMAGE --img-ext ext4.xz " + [[ ! -z $TARGETIMAGE ]] && CREATE_ARGS+="--rootfs-img ${TARGETIMAGE}-${__MACHINE}.ext4.xz " BUILD_VERSION="AGL-gerrit-$GERRIT_CHANGE_NUMBER-$GERRIT_PATCHSET_NUMBER" [[ -e output/repo-manifest-r.txt.sha1 ]] && BUILD_VERSION+="-$(cat output/repo-manifest-r.txt.sha1)" CREATE_ARGS+="--name AGL-gerrit " |