From 0bc25f1619014bd1fa4bbade272dc22c71145433 Mon Sep 17 00:00:00 2001 From: Laurent Bonnans Date: Thu, 6 Feb 2020 15:50:24 +0100 Subject: Remove a debug print in qemucommand.py Was missed during review Signed-off-by: Laurent Bonnans --- scripts/qemucommand.py | 1 - 1 file changed, 1 deletion(-) (limited to 'scripts') diff --git a/scripts/qemucommand.py b/scripts/qemucommand.py index 86b5b9f..30929ac 100644 --- a/scripts/qemucommand.py +++ b/scripts/qemucommand.py @@ -40,7 +40,6 @@ def random_mac(): class QemuCommand(object): def __init__(self, args): - print(args) self.enable_u_boot = True self.dry_run = args.dry_run self.overlay = args.overlay -- cgit v1.2.3-54-g00ecf From 15d37a4f9ca082217bd884ae0f875603003fffee 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. Signed-off-by: Patrick Vacek --- scripts/ci/oe-selftest.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'scripts') diff --git a/scripts/ci/oe-selftest.sh b/scripts/ci/oe-selftest.sh index 178e7c1..d441d02 100755 --- a/scripts/ci/oe-selftest.sh +++ b/scripts/ci/oe-selftest.sh @@ -22,5 +22,9 @@ set -x # 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