@@ -69,21 +69,21 @@ jobs:
6969 id : cache-gcc-toolchain
7070 uses : actions/cache@v2
7171 with :
72- path : ${{ github.workspace }}/gcc_toolchain_10_3
73- key : ${{runner.os}}-toolchain-v10_3
72+ path : ${{ github.workspace }}/gcc_toolchain_11_2
73+ key : ${{runner.os}}-toolchain-v11_2
7474
7575 - name : Get the latest arm-gcc-none-eabi-gcc
7676 uses : wei/wget@v1
7777 if : steps.cache-gcc-toolchain.outputs.cache-hit != 'true'
7878 id : download-arm-gcc
7979 with :
80- args : " https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.07/ gcc-arm-none-eabi-10.3-2021.07 -x86_64-linux .tar.bz2 "
80+ args : " https://developer.arm.com/-/media/Files/downloads/gnu/11.2-2022.02/binrel/ gcc-arm-11.2-2022.02 -x86_64-arm-none-eabi .tar.xz "
8181
8282 - name : Unpack arm-gcc-compiler
8383 if : steps.cache-gcc-toolchain.outputs.cache-hit != 'true'
8484 run : |
85- mkdir gcc_toolchain_10_3
86- tar -xjf gcc-arm-none-eabi-10.3-2021.07 -x86_64-linux .tar.bz2 --directory ${{ github.workspace }}/gcc_toolchain_10_3
85+ mkdir gcc_toolchain_11_2
86+ tar -xJf gcc-arm-11.2-2022.02 -x86_64-arm-none-eabi .tar.xz --directory ${{ github.workspace }}/gcc_toolchain_11_2
8787
8888 - name : Cache NordicSDK
8989 id : cache-nordic-sdk
@@ -113,7 +113,7 @@ jobs:
113113 cmakeListsOrSettingsJson : CMakeListsTxtAdvanced
114114 cmakeListsTxtPath : ${{ github.workspace }}/Firmware/CMakeLists.txt
115115 cmakeBuildType : Debug
116- cmakeAppendedArgs : ' -DTARGET_PLATFORM:STRING="ARM_CORTEX" -DEXECUTE_MCU_FLASHING=OFF -DCMAKE_BUILD_TYPE:STRING=Debug -DREDUCE_LVGL_BINARY_SIZE=ON -DPACKAGE_TESTS=OFF -DNRF5_SDK_PATH=${{ github.workspace }}/Nrf52SDKv16_0 -DARM_NONE_EABI_TOOLCHAIN_PATH:PATH=${{ github.workspace }}/gcc_toolchain_10_3 /gcc-arm-none-eabi-10.3-2021.07 '
116+ cmakeAppendedArgs : ' -DTARGET_PLATFORM:STRING="ARM_CORTEX" -DEXECUTE_MCU_FLASHING=OFF -DCMAKE_BUILD_TYPE:STRING=Debug -DREDUCE_LVGL_BINARY_SIZE=ON -DPACKAGE_TESTS=OFF -DNRF5_SDK_PATH=${{ github.workspace }}/Nrf52SDKv16_0 -DARM_NONE_EABI_TOOLCHAIN_PATH:PATH=${{ github.workspace }}/gcc_toolchain_11_2 /gcc-arm-11.2-2022.02-x86_64-arm-none-eabi '
117117 buildWithCMake : true
118118
119119 # # Runs a set of commands using the runners shell
0 commit comments