Skip to content

Commit 2e10107

Browse files
committed
change armgcc setup to manual download due to issue with action
1 parent 437f053 commit 2e10107

File tree

3 files changed

+197
-186
lines changed

3 files changed

+197
-186
lines changed

.github/actions/setup_toolchain/download/action.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ runs:
3737
elif [[ ${TOOLCHAIN} == arm-gcc-windows-latest ]]; then
3838
curl -L "$TOOLCHAIN_URL" -o toolchain.zip
3939
unzip -q toolchain.zip -d ~/cache/${TOOLCHAIN}
40+
~/cache/${TOOLCHAIN}/xpack-arm-none-eabi-gcc-14.2.1-1.1/bin/arm-none-eabi-gcc.exe --version
4041
else
4142
wget --progress=dot:giga ${TOOLCHAIN_URL} -O toolchain.tar.gz
4243
tar -C ~/cache/${TOOLCHAIN} -xaf toolchain.tar.gz
@@ -55,3 +56,12 @@ runs:
5556
echo >> $GITHUB_PATH `echo ~/cache/${TOOLCHAIN}/*/bin`
5657
fi
5758
shell: bash
59+
60+
- name: Verify Toolchain
61+
env:
62+
TOOLCHAIN: ${{ inputs.toolchain }}
63+
run: |
64+
if [[ ${TOOLCHAIN} == arm-gcc-windows-latest ]]; then
65+
arm-none-eabi-gcc -dumpversion
66+
fi
67+
shell: bash

0 commit comments

Comments
 (0)