diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c81856c9..7fda4e5f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -322,8 +322,8 @@ jobs: [ "${build_target_sparc_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"sparc-zephyr-elf",' [ "${build_target_x86_64_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"x86_64-zephyr-elf",' [ "${build_target_xtensa_amd_acp_6_0_adsp_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"xtensa-amd_acp_6_0_adsp_zephyr-elf",' - [ "${build_target_xtensa_amd_acp_7_0_adsp_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"xtensa-amd_acp_7_0_adsp_zephyr-elf",' - [ "${build_target_xtensa_amd_acp_7_3_adsp_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"xtensa-amd_acp_7_3_adsp_zephyr-elf",' + [ "${build_target_xtensa_amd_acp_7_0_adsp_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"xtensa-amd_acp_7_0_adsp_zephyr-elf",' + [ "${build_target_xtensa_amd_acp_7_3_adsp_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"xtensa-amd_acp_7_3_adsp_zephyr-elf",' [ "${build_target_xtensa_dc233c_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"xtensa-dc233c_zephyr-elf",' [ "${build_target_xtensa_espressif_esp32_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"xtensa-espressif_esp32_zephyr-elf",' [ "${build_target_xtensa_espressif_esp32s2_zephyr_elf}" == "y" ] && MATRIX_TARGETS+='"xtensa-espressif_esp32s2_zephyr-elf",' @@ -450,7 +450,7 @@ jobs: runs-on: group: ${{ matrix.host.runner }} container: ${{ matrix.host.container }} - timeout-minutes: 720 + timeout-minutes: 720 defaults: run: @@ -1532,10 +1532,21 @@ jobs: echo "BUNDLE_DIR=${BUNDLE_DIR}" >> $GITHUB_ENV - name: Download distribution bundle - uses: actions/download-artifact@v4 - with: - name: ${{ env.BUNDLE_NAME }} - path: artifacts + # FIXME: download-artifact is buggy and may fail to download some files + # without any errors. For more details, refer to the GitHub issue + # actions/download-artifact#396. + # uses: actions/download-artifact@v4 + # with: + # name: ${{ env.BUNDLE_NAME }} + # path: artifacts + run: | + gh run download \ + -R ${GITHUB_REPOSITORY} \ + ${GITHUB_RUN_ID} \ + -n ${BUNDLE_NAME} \ + -D artifacts + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Install distribution bundle run: | @@ -1712,7 +1723,7 @@ jobs: # xtensa-sample_controller32_zephyr-elf is untested because no # upstream user platform is currently available. # PLATFORM_ARGS+="-p acp_7_0 " - ;; + ;; xtensa-amd_acp_7_3_adsp_zephyr-elf) # xtensa-sample_controller32_zephyr-elf is untested because no # upstream user platform is currently available.