From 23ff975268fb57aee659d54d9083eb2b503577d9 Mon Sep 17 00:00:00 2001 From: Krzysztof Taborowski Date: Thu, 25 Apr 2024 15:13:07 +0200 Subject: [PATCH] ci: fix artifacts nmaes for hmv2 try to fix artifacts names Signed-off-by: Krzysztof Taborowski --- .github/workflows/run_tests_dut.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_tests_dut.yml b/.github/workflows/run_tests_dut.yml index fe9bcb5098..ae2f3249a4 100644 --- a/.github/workflows/run_tests_dut.yml +++ b/.github/workflows/run_tests_dut.yml @@ -68,6 +68,13 @@ jobs: source zephyr/zephyr-env.sh west twister --platform ${{inputs.target_board}} --testsuite-root sidewalk --filter runnable --shuffle-tests --shuffle-tests-seed 123 --inline-logs --overflow-as-errors -vvv --prep-artifacts-for-testing --package-artifacts PACKAGE_ARTIFACTS_${{ inputs.subset }}.tar.bz2 --subset ${{ inputs.subset }}/${{ inputs.max_subsets }} + - name: Replace slash with underscore + id: replace + run: | + TARGET_BOARD=${{ inputs.target_board }} + TARGET_BOARD=${TARGET_BOARD//\//_} + echo "::set-output name=target_board::$TARGET_BOARD" + - name: Save build artifacts uses: actions/upload-artifact@v4 with: @@ -128,7 +135,7 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v4 with: - name: DUT_artifacts_${{steps.replace.outputs.target_board}}_${{ inputs.subset }} + name: DUT_artifacts_${{steps.replace.outputs.target_board}}_${{ inputs.subset }} - name: Unwrap artifacts run: |