From 91bad00e3dbad8512937a898e5a86bf0f1f078c4 Mon Sep 17 00:00:00 2001 From: Patrick Vacek Date: Thu, 27 Feb 2020 12:26:03 +0100 Subject: oe-selftest.sh: This also now requires setting git identity. Not sure why this only started cropping up now. Also pull in some other missing bits from other upstream changes. Signed-off-by: Patrick Vacek --- scripts/ci/oe-selftest.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/scripts/ci/oe-selftest.sh b/scripts/ci/oe-selftest.sh index 3124cce..5f0f0d0 100755 --- a/scripts/ci/oe-selftest.sh +++ b/scripts/ci/oe-selftest.sh @@ -14,5 +14,15 @@ set +euo pipefail set +x . "${TEST_REPO_DIR}/meta-updater/scripts/envsetup.sh" "${TEST_MACHINE}" "${TEST_BUILD_DIR}" -oe-selftest -r updater +set -x + +# work poky around bug on sumo and thud +# see https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=d3a94e5b9b3c107cf54d5639071cc6609c002f67 +mkdir -p "tmp/log" + +# This is apparently required here now as well. +git config --global user.email "meta-updater-ci@example.org" +git config --global user.name "meta-updater-ci" + +oe-selftest -r "$@" ) -- cgit v1.2.3-54-g00ecf