diff --git a/.github/workflows/micropython-with-blinka.yml b/.github/workflows/micropython-with-blinka.yml index 30db7bc7..a6c4149b 100644 --- a/.github/workflows/micropython-with-blinka.yml +++ b/.github/workflows/micropython-with-blinka.yml @@ -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 diff --git a/.github/workflows/micropython.yml b/.github/workflows/micropython.yml index aea64f0d..10dd4c98 100644 --- a/.github/workflows/micropython.yml +++ b/.github/workflows/micropython.yml @@ -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