This is an automated email from the ASF dual-hosted git repository. gustavonihei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 652696698735d2e09a4305c2536e6f326a9bd2e2 Author: Abdelatif Guettouche <abdelatif.guettou...@espressif.com> AuthorDate: Fri Sep 24 18:41:01 2021 +0200 tools/ci/cibuild.sh: Update the downloaded ESP Xtensa toolchain. Signed-off-by: Abdelatif Guettouche <abdelatif.guettou...@espressif.com> --- 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 03c52ec..17f73f8 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