From 41f61d293875ddc422ec7ca8691af05d257c2084 Mon Sep 17 00:00:00 2001 From: Wiktoria Kuna Date: Wed, 5 Feb 2025 15:25:22 +0100 Subject: [PATCH] workflows: Preserve errors when generating config Signed-off-by: Wiktoria Kuna --- .github/workflows/run-tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index d165e54c..2f417de8 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -22,7 +22,8 @@ jobs: name: Prepare test types run: | python3 -m pip install pyyaml - echo "tests=$(python3 .github/scripts/parse_testlist.py $RISCV_TARGET)" | tee -a $GITHUB_OUTPUT + python3 .github/scripts/parse_testlist.py $RISCV_TARGET > tests.list + echo "tests=$(echo tests.list)" | tee -a $GITHUB_OUTPUT - id: hash name: Prepare files' hash run: |