summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Vacek <patrickvacek@gmail.com>2020-02-27 12:26:03 +0100
committerPatrick Vacek <patrickvacek@gmail.com>2020-02-28 13:50:54 +0100
commit91bad00e3dbad8512937a898e5a86bf0f1f078c4 (patch)
tree0bf669616b7dc3ef3a29d27c86e0d55103699cda
parent6ee652650f0af8a81faa7b37b2d8ea0eabb9f737 (diff)
downloadmeta-updater-91bad00e3dbad8512937a898e5a86bf0f1f078c4.tar.gz
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 <patrickvacek@gmail.com>
-rwxr-xr-xscripts/ci/oe-selftest.sh12
1 files changed, 11 insertions, 1 deletions
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
14set +x 14set +x
15. "${TEST_REPO_DIR}/meta-updater/scripts/envsetup.sh" "${TEST_MACHINE}" "${TEST_BUILD_DIR}" 15. "${TEST_REPO_DIR}/meta-updater/scripts/envsetup.sh" "${TEST_MACHINE}" "${TEST_BUILD_DIR}"
16 16
17oe-selftest -r updater 17set -x
18
19# work poky around bug on sumo and thud
20# see https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=d3a94e5b9b3c107cf54d5639071cc6609c002f67
21mkdir -p "tmp/log"
22
23# This is apparently required here now as well.
24git config --global user.email "meta-updater-ci@example.org"
25git config --global user.name "meta-updater-ci"
26
27oe-selftest -r "$@"
18) 28)