From ed18f232cf45495cbd489c2cb12a3e2c8d7db6bd Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Tue, 9 Jul 2024 14:32:18 +0800 Subject: [PATCH] ci(qemu): add debug log and bin artifact to assist debugging --- .gitlab/ci/host-test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab/ci/host-test.yml b/.gitlab/ci/host-test.yml index bd6293a671..9669c6e853 100644 --- a/.gitlab/ci/host-test.yml +++ b/.gitlab/ci/host-test.yml @@ -299,6 +299,7 @@ test_pytest_qemu: paths: - XUNIT_RESULT.xml - pytest-embedded/ + - "**/build*/*.bin" reports: junit: XUNIT_RESULT.xml allow_failure: true # IDFCI-1752 @@ -308,7 +309,7 @@ test_pytest_qemu: variables: INSTALL_QEMU: 1 script: - - run_cmd python tools/ci/ci_build_apps.py . -vv + - run_cmd python tools/ci/ci_build_apps.py . -v --target $IDF_TARGET --pytest-apps -m qemu @@ -318,6 +319,7 @@ test_pytest_qemu: - python tools/ci/get_known_failure_cases_file.py - run_cmd pytest --target $IDF_TARGET + --log-cli-level DEBUG -m qemu --embedded-services idf,qemu --junitxml=XUNIT_RESULT.xml @@ -337,7 +339,7 @@ test_pytest_linux: reports: junit: XUNIT_RESULT.xml script: - - run_cmd python tools/ci/ci_build_apps.py components examples tools/test_apps -vv + - run_cmd python tools/ci/ci_build_apps.py components examples tools/test_apps -v --target linux --pytest-apps -m host_test