Skip to content

Commit eb18534

Browse files
committed
Update the toolchain used during windows builds
1 parent bb84752 commit eb18534

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/actions/deps/external/action.yml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ runs:
2525
inputs.port != 'espressif'
2626
uses: carlosperate/arm-none-eabi-gcc-action@v1
2727
with:
28+
# When changing this update what Windows grabs too!
2829
release: '13.2.Rel1'
2930

3031
# espressif

.github/workflows/build.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,13 @@ 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'
250255
- name: Install dependencies
251256
run: |
252-
wget --no-verbose -O gcc-arm.zip https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-win32.zip
253-
unzip -q -d /tmp gcc-arm.zip
254-
tar -C /tmp/gcc-arm-none-* -cf - . | tar -C /usr/local -xf -
255257
pip install wheel
256258
# requirements_dev.txt doesn't install on windows. (with msys2 python)
257259
# instead, pick a subset for what we want to do

0 commit comments

Comments
 (0)