diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2020-02-27 12:26:03 +0100 |
---|---|---|
committer | Patrick Vacek <patrickvacek@gmail.com> | 2020-02-28 13:50:54 +0100 |
commit | 91bad00e3dbad8512937a898e5a86bf0f1f078c4 (patch) | |
tree | 0bf669616b7dc3ef3a29d27c86e0d55103699cda /scripts | |
parent | 6ee652650f0af8a81faa7b37b2d8ea0eabb9f737 (diff) | |
download | meta-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>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ci/oe-selftest.sh | 12 |
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 | |||
14 | set +x | 14 | set +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 | ||
17 | oe-selftest -r updater | 17 | set -x |
18 | |||
19 | # work poky around bug on sumo and thud | ||
20 | # see https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=d3a94e5b9b3c107cf54d5639071cc6609c002f67 | ||
21 | mkdir -p "tmp/log" | ||
22 | |||
23 | # This is apparently required here now as well. | ||
24 | git config --global user.email "meta-updater-ci@example.org" | ||
25 | git config --global user.name "meta-updater-ci" | ||
26 | |||
27 | oe-selftest -r "$@" | ||
18 | ) | 28 | ) |