Skip to content

Commit afd6fe4

Browse files
committed
try changing windows toolchains a different way
1 parent eb18534 commit afd6fe4

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/build.yml

+3-5
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)