From 652696698735d2e09a4305c2536e6f326a9bd2e2 Mon Sep 17 00:00:00 2001 From: Abdelatif Guettouche Date: Fri, 24 Sep 2021 18:41:01 +0200 Subject: [PATCH] tools/ci/cibuild.sh: Update the downloaded ESP Xtensa toolchain. Signed-off-by: Abdelatif Guettouche --- tools/ci/cibuild.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tools/ci/cibuild.sh b/tools/ci/cibuild.sh index 03c52ecd8e..17f73f8a33 100755 --- a/tools/ci/cibuild.sh +++ b/tools/ci/cibuild.sh @@ -211,15 +211,15 @@ function xtensa-esp32-gcc-toolchain { cd "${prebuilt}" case ${os} in Darwin) - wget --quiet https://dl.espressif.com/dl/xtensa-esp32-elf-gcc8_2_0-esp-2019r2-macos.tar.gz - tar xzf xtensa-esp32-elf-gcc8_2_0-esp-2019r2-macos.tar.gz - rm xtensa-esp32-elf-gcc8_2_0-esp-2019r2-macos.tar.gz + wget --quiet https://dl.espressif.com/dl/xtensa-esp32-elf-gcc8_4_0-esp-2021r1-macos.tar.gz + tar xzf xtensa-esp32-elf-gcc8_4_0-esp-2021r1-macos.tar.gz + rm xtensa-esp32-elf-gcc8_4_0-esp-2021r1-macos.tar.gz ;; Linux) - wget --quiet https://dl.espressif.com/dl/xtensa-esp32-elf-gcc8_2_0-esp32-2019r1-rc2-linux-amd64.tar.xz - xz -d xtensa-esp32-elf-gcc8_2_0-esp32-2019r1-rc2-linux-amd64.tar.xz - tar xf xtensa-esp32-elf-gcc8_2_0-esp32-2019r1-rc2-linux-amd64.tar - rm xtensa-esp32-elf-gcc8_2_0-esp32-2019r1-rc2-linux-amd64.tar + wget --quiet https://dl.espressif.com/dl/xtensa-esp32-elf-gcc8_4_0-esp32-2021r1-linux-amd64.tar.xz + xz -d xtensa-esp32-elf-gcc8_4_0-esp32-2021r1-linux-amd64.tar.xz + tar xf xtensa-esp32-elf-gcc8_4_0-esp32-2021r1-linux-amd64.tar + rm xtensa-esp32-elf-gcc8_4_0-esp32-2021r1-linux-amd64.tar ;; esac fi