We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 437f053 commit 2e10107Copy full SHA for 2e10107
.github/actions/setup_toolchain/download/action.yml
@@ -37,6 +37,7 @@ runs:
37
elif [[ ${TOOLCHAIN} == arm-gcc-windows-latest ]]; then
38
curl -L "$TOOLCHAIN_URL" -o toolchain.zip
39
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
41
else
42
wget --progress=dot:giga ${TOOLCHAIN_URL} -O toolchain.tar.gz
43
tar -C ~/cache/${TOOLCHAIN} -xaf toolchain.tar.gz
@@ -55,3 +56,12 @@ runs:
55
56
echo >> $GITHUB_PATH `echo ~/cache/${TOOLCHAIN}/*/bin`
57
fi
58
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