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:
Philip Howard 2021-06-05 19:44:37 +01:00 committed by GitHub
commit bd359b7fe1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 3 deletions

View File

@ -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

View File

@ -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