summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)