misc: Update GCC toolchain to 14.3.1.

Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
This commit is contained in:
iabdalkader 2025-07-05 14:01:45 +02:00
parent ad751631a1
commit ad722d0153
3 changed files with 4 additions and 4 deletions

View File

@ -68,7 +68,7 @@ jobs:
~/cache/llvm ~/cache/llvm
~/cache/make ~/cache/make
~/cache/stedgeai ~/cache/stedgeai
key: 'gcc-13.2.rel1_llvm-18.1.3_make-4.4.1_stedgeai-2.1' key: 'gcc-14.3.rel1_llvm-18.1.3_make-4.4.1_stedgeai-2.1'
- name: '🐍 Install Python' - name: '🐍 Install Python'
uses: actions/setup-python@v5 uses: actions/setup-python@v5
@ -129,7 +129,7 @@ jobs:
~/cache/llvm ~/cache/llvm
~/cache/make ~/cache/make
~/cache/stedgeai ~/cache/stedgeai
key: 'gcc-13.2.rel1_llvm-18.1.3_make-4.4.1_stedgeai-2.1' key: 'gcc-14.3.rel1_llvm-18.1.3_make-4.4.1_stedgeai-2.1'
- name: '🐍 Install Python' - name: '🐍 Install Python'
uses: actions/setup-python@v5 uses: actions/setup-python@v5

View File

@ -10,7 +10,7 @@ RUN apt update && apt install -y \
# Download and extract GCC # Download and extract GCC
RUN mkdir -p /workspace/gcc RUN mkdir -p /workspace/gcc
ENV GCC_URL="https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz" ENV GCC_URL="https://developer.arm.com/-/media/Files/downloads/gnu/14.3.rel1/binrel/arm-gnu-toolchain-14.3.rel1-x86_64-arm-none-eabi.tar.xz"
RUN wget --no-check-certificate -O - ${GCC_URL} | tar --strip-components=1 -Jx -C /workspace/gcc RUN wget --no-check-certificate -O - ${GCC_URL} | tar --strip-components=1 -Jx -C /workspace/gcc
# Download and extract LLVM # Download and extract LLVM

View File

@ -3,7 +3,7 @@
######################################################################################## ########################################################################################
# Install ARM GCC. # Install ARM GCC.
GCC_TOOLCHAIN_PATH=${HOME}/cache/gcc GCC_TOOLCHAIN_PATH=${HOME}/cache/gcc
GCC_TOOLCHAIN_URL="https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz" GCC_TOOLCHAIN_URL="https://developer.arm.com/-/media/Files/downloads/gnu/14.3.rel1/binrel/arm-gnu-toolchain-14.3.rel1-x86_64-arm-none-eabi.tar.xz"
ci_install_arm_gcc() { ci_install_arm_gcc() {
mkdir -p ${GCC_TOOLCHAIN_PATH} mkdir -p ${GCC_TOOLCHAIN_PATH}