Merge pull request #167 from pimoroni/patch-bump-blinka-platformdetect

Bump blinka to 6.10.1 and platformdetect to 3.13.3
pull/166/head
Philip Howard 2021-06-05 19:44:37 +01:00 zatwierdzone przez GitHub
commit bd359b7fe1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 22 dodań i 3 usunięć

Wyświetl plik

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

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