summaryrefslogtreecommitdiffstats
path: root/scripts/ci/oe-selftest.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/ci/oe-selftest.sh')
-rwxr-xr-xscripts/ci/oe-selftest.sh14
1 files changed, 13 insertions, 1 deletions
diff --git a/scripts/ci/oe-selftest.sh b/scripts/ci/oe-selftest.sh
index 3124cce..d441d02 100755
--- a/scripts/ci/oe-selftest.sh
+++ b/scripts/ci/oe-selftest.sh
@@ -12,7 +12,19 @@ TEST_REPO_DIR=${TEST_REPO_DIR:-updater-repo}
12( 12(
13set +euo pipefail 13set +euo pipefail
14set +x 14set +x
15METADIR=$(realpath "$TEST_REPO_DIR")
16export METADIR
15. "${TEST_REPO_DIR}/meta-updater/scripts/envsetup.sh" "${TEST_MACHINE}" "${TEST_BUILD_DIR}" 17. "${TEST_REPO_DIR}/meta-updater/scripts/envsetup.sh" "${TEST_MACHINE}" "${TEST_BUILD_DIR}"
16 18
17oe-selftest -r updater 19set -x
20
21# work poky around bug on sumo and thud
22# see https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?id=d3a94e5b9b3c107cf54d5639071cc6609c002f67
23mkdir -p "tmp/log"
24
25# This is apparently required here now as well.
26git config --global user.email "meta-updater-ci@example.org"
27git config --global user.name "meta-updater-ci"
28
29oe-selftest -r "$@"
18) 30)