From 6af3e22bc3a6891f5722d98cdcf385d3612caf2a Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Fri, 11 Mar 2022 00:57:56 +0000 Subject: [PATCH] CI: Always checkout latest --- .github/workflows/micropython.yml | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/.github/workflows/micropython.yml b/.github/workflows/micropython.yml index dad94e90..f0043203 100644 --- a/.github/workflows/micropython.yml +++ b/.github/workflows/micropython.yml @@ -34,18 +34,6 @@ jobs: submodules: false # MicroPython submodules are hideously broken path: micropython - - uses: actions/checkout@v2 - if: steps.cache.outputs.cache-hit != 'true' - with: - submodules: true - path: pimoroni-pico-${{ github.sha }} - - # Copy Python module files - - name: Copy modules - if: steps.cache.outputs.cache-hit != 'true' - run: | - cp -r pimoroni-pico-${GITHUB_SHA}/micropython/modules_py/* micropython/ports/rp2/modules/ - - name: Fetch base MicroPython submodules if: steps.cache.outputs.cache-hit != 'true' shell: bash @@ -105,6 +93,16 @@ jobs: if: runner.os == 'Linux' run: | sudo apt update && sudo apt install ccache gcc-arm-none-eabi + + - uses: actions/checkout@v2 + with: + submodules: true + path: pimoroni-pico-${{ github.sha }} + + # Copy Python module files + - name: Copy modules + run: | + cp -r pimoroni-pico-${GITHUB_SHA}/micropython/modules_py/* micropython/ports/rp2/modules/ - name: Configure MicroPython shell: bash