File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -247,13 +247,11 @@ jobs:
247247 python -c "import sys, locale; print(sys.getdefaultencoding(), locale.getpreferredencoding(False))"
248248 which python3; python3 --version
249249 python3 -c "import sys, locale; print(sys.getdefaultencoding(), locale.getpreferredencoding(False))"
250- - name : Get arm toolchain
251- uses : carlosperate/arm-none-eabi-gcc-action@v1
252- with :
253- # keep in sync with .github/actions/deps/external/action.yml
254- release : ' 13.2.Rel1'
255250 - name : Install dependencies
256251 run : |
252+ wget --no-verbose -O gcc-arm.zip https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-mingw-w64-i686-arm-none-eabi.zip
253+ unzip -q -d /tmp gcc-arm.zip
254+ tar -C /tmp/arm-gnu-toolchain* -cf - . | tar -C /usr/local -xf -
257255 pip install wheel
258256 # requirements_dev.txt doesn't install on windows. (with msys2 python)
259257 # instead, pick a subset for what we want to do
You can’t perform that action at this time.
0 commit comments