Merge pull request #471 from pimoroni/patch-bump-micropython-picow
MicroPython: Bump for macOS USB race cond fix, again.
This commit is contained in:
commit
72318c1efb
|
@ -7,7 +7,7 @@ on:
|
||||||
types: [created]
|
types: [created]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
MICROPYTHON_VERSION: 0c45a28d24e1a7f9ea5912c928d7b5a860a6514a
|
MICROPYTHON_VERSION: 45ab801c300d605db96229f6e0626ebe2801f24d
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deps:
|
deps:
|
||||||
|
@ -19,9 +19,9 @@ jobs:
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: ${{runner.workspace}}
|
path: ${{runner.workspace}}
|
||||||
key: workspace-micropython-${{env.MICROPYTHON_VERSION}}
|
key: workspace-micropython-${{env.MICROPYTHON_VERSION}}-with-libs
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
workspace-micropython-${{env.MICROPYTHON_VERSION}}
|
workspace-micropython-${{env.MICROPYTHON_VERSION}}-with-libs
|
||||||
|
|
||||||
# Check out MicroPython
|
# Check out MicroPython
|
||||||
- name: Checkout MicroPython
|
- name: Checkout MicroPython
|
||||||
|
@ -33,6 +33,14 @@ jobs:
|
||||||
submodules: false # MicroPython submodules are hideously broken
|
submodules: false # MicroPython submodules are hideously broken
|
||||||
path: micropython
|
path: micropython
|
||||||
|
|
||||||
|
# Check out MicroPython Libs
|
||||||
|
- name: Checkout MicroPython Libs
|
||||||
|
if: steps.cache.outputs.cache-hit != 'true'
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
repository: micropython/micropython-lib
|
||||||
|
path: micropython-lib
|
||||||
|
|
||||||
- name: Fetch base MicroPython submodules
|
- name: Fetch base MicroPython submodules
|
||||||
if: steps.cache.outputs.cache-hit != 'true'
|
if: steps.cache.outputs.cache-hit != 'true'
|
||||||
shell: bash
|
shell: bash
|
||||||
|
@ -79,9 +87,9 @@ jobs:
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
path: ${{runner.workspace}}
|
path: ${{runner.workspace}}
|
||||||
key: workspace-micropython-${{env.MICROPYTHON_VERSION}}
|
key: workspace-micropython-${{env.MICROPYTHON_VERSION}}-with-libs
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
workspace-micropython-${{env.MICROPYTHON_VERSION}}
|
workspace-micropython-${{env.MICROPYTHON_VERSION}}-with-libs
|
||||||
|
|
||||||
- name: Install Compiler & CCache
|
- name: Install Compiler & CCache
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
|
|
Loading…
Reference in New Issue