Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 19 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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",'
Expand Down Expand Up @@ -450,7 +450,7 @@ jobs:
runs-on:
group: ${{ matrix.host.runner }}
container: ${{ matrix.host.container }}
timeout-minutes: 720
timeout-minutes: 720

defaults:
run:
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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.
Expand Down
Loading