Hotfix lwip submodule to avoid server errors

Pulls down the upstream patch from https://github.com/micropython/micropython/pull/7250 and applies it.

Issue discussed here: https://github.com/micropython/micropython/issues/5356
pull/167/head
Phil Howard 2021-06-05 19:35:20 +01:00
rodzic bffca106f6
commit 9935e0d781
2 zmienionych plików z 20 dodań i 1 usunięć

Wyświetl plik

@ -81,10 +81,20 @@ jobs:
run: |
sudo apt update && sudo apt install ${{matrix.apt-packages}}
- name: Hotfix lwip submodule
shell: bash
working-directory: micropython
run: |
git config --global user.email "hotfix@example.com"
git config --global user.name "Sassy McGuffin"
wget https://github.com/micropython/micropython/commit/43e7e5f00a601b36b5b39f1fef036d6c25d5562c.patch
git am 43e7e5f00a601b36b5b39f1fef036d6c25d5562c.patch
- name: Fetch base MicroPython submodules
shell: bash
working-directory: micropython
run: git submodule update --init
run: |
git submodule update --init
- name: Fetch Pico SDK submodules
shell: bash

Wyświetl plik

@ -47,6 +47,15 @@ jobs:
run: |
sudo apt update && sudo apt install ${{matrix.apt-packages}}
- name: Hotfix lwip submodule
shell: bash
working-directory: micropython
run: |
git config --global user.email "hotfix@example.com"
git config --global user.name "Sassy McGuffin"
wget https://github.com/micropython/micropython/commit/43e7e5f00a601b36b5b39f1fef036d6c25d5562c.patch
git am 43e7e5f00a601b36b5b39f1fef036d6c25d5562c.patch
- name: Fetch base MicroPython submodules
shell: bash
working-directory: micropython