Merge pull request #167 from pimoroni/patch-bump-blinka-platformdetect
Bump blinka to 6.10.1 and platformdetect to 3.13.3
This commit is contained in:
commit
bd359b7fe1
|
@ -9,8 +9,8 @@ on:
|
|||
env:
|
||||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
||||
MICROPYTHON_VERSION: v1.15
|
||||
BLINKA_VERSION: 6.9.1
|
||||
PLATFORMDETECT_VERSION: 3.13.1
|
||||
BLINKA_VERSION: 6.10.1
|
||||
PLATFORMDETECT_VERSION: 3.13.3
|
||||
BUILD_TYPE: Release
|
||||
BOARD_TYPE: PICO
|
||||
|
||||
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue