pimoroni-pico/.github/workflows/micropython-badger2040.yml

143 lines
4.5 KiB
YAML
Raw Normal View History

2022-02-24 16:49:28 +00:00
name: MicroPython for Badger2040
on:
push:
pull_request:
release:
types: [created]
env:
2022-06-16 14:49:06 +01:00
MICROPYTHON_VERSION: v1.19
BOARD_TYPE: PIMORONI_BADGER2040
2022-03-11 10:00:27 +00:00
# MicroPython version will be contained in github.event.release.tag_name for releases
RELEASE_FILE: pimoroni-badger2040-${{github.event.release.tag_name || github.sha}}-micropython.uf2
2022-02-24 16:49:28 +00:00
jobs:
2022-03-11 10:00:27 +00:00
deps:
runs-on: ubuntu-20.04
name: Dependencies
2022-02-24 16:49:28 +00:00
steps:
2022-03-11 10:00:27 +00:00
- name: Workspace Cache
id: cache
uses: actions/cache@v2
with:
path: ${{runner.workspace}}
key: workspace-micropython-${{env.MICROPYTHON_VERSION}}
restore-keys: |
workspace-micropython-${{env.MICROPYTHON_VERSION}}
2022-02-24 16:49:28 +00:00
# Check out MicroPython
- name: Checkout MicroPython
2022-03-11 10:00:27 +00:00
if: steps.cache.outputs.cache-hit != 'true'
2022-02-24 16:49:28 +00:00
uses: actions/checkout@v2
with:
repository: micropython/micropython
ref: ${{env.MICROPYTHON_VERSION}}
submodules: false # MicroPython submodules are hideously broken
path: micropython
2022-03-11 10:00:27 +00:00
- name: Fetch base MicroPython submodules
if: steps.cache.outputs.cache-hit != 'true'
shell: bash
working-directory: micropython
run: git submodule update --init
- name: Fetch Pico SDK submodules
if: steps.cache.outputs.cache-hit != 'true'
shell: bash
working-directory: micropython/lib/pico-sdk
run: git submodule update --init
- name: Build mpy-cross
if: steps.cache.outputs.cache-hit != 'true'
shell: bash
working-directory: micropython/mpy-cross
run: make
build:
needs: deps
name: Build Badger 2040
runs-on: ubuntu-20.04
steps:
- name: Compiler Cache
uses: actions/cache@v2
with:
path: /home/runner/.ccache
key: ccache-micropython-badger2040-${{github.ref}}-${{github.sha}}
restore-keys: |
ccache-micropython-badger2040-${{github.ref}}
ccache-micropython-badger2040-
- name: Workspace Cache
uses: actions/cache@v2
with:
path: ${{runner.workspace}}
key: workspace-micropython-${{env.MICROPYTHON_VERSION}}
restore-keys: |
workspace-micropython-${{env.MICROPYTHON_VERSION}}
2022-02-24 16:49:28 +00:00
- uses: actions/checkout@v2
with:
submodules: true
path: pimoroni-pico-${{ github.sha }}
- name: "HACK: MicroPython Board Fixups"
shell: bash
working-directory: micropython/ports/rp2
2022-02-24 16:49:28 +00:00
run: |
../../../pimoroni-pico-${GITHUB_SHA}/micropython/_board/board-fixup.sh badger2040 ${{env.BOARD_TYPE}} ../../../pimoroni-pico-${GITHUB_SHA}/micropython/_board
2022-02-24 16:49:28 +00:00
# Linux deps
2022-03-11 10:00:27 +00:00
- name: Install Compiler & CCache
2022-02-24 16:49:28 +00:00
if: runner.os == 'Linux'
run: |
sudo apt update && sudo apt install ccache
2022-03-04 11:21:53 +00:00
python3 -m pip install pillow
2022-02-24 16:49:28 +00:00
- name: Install ARM Toolchain
if: runner.os == 'Linux'
working-directory: ${{runner.workspace}}
run: |
wget -q https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.10/gcc-arm-none-eabi-10.3-2021.10-x86_64-linux.tar.bz2
tar xf gcc-*.tar.bz2
cd gcc*/bin
pwd >> $GITHUB_PATH
2022-03-11 10:00:27 +00:00
- name: Configure MicroPython
2022-02-24 16:49:28 +00:00
shell: bash
2022-03-11 10:00:27 +00:00
working-directory: micropython/ports/rp2
run: |
cmake -S . -B build-${{env.BOARD_TYPE}} -DPICO_BUILD_DOCS=0 -DUSER_C_MODULES=../../../pimoroni-pico-${GITHUB_SHA}/micropython/modules/badger2040-micropython.cmake -DMICROPY_BOARD=${{env.BOARD_TYPE}} -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache
2022-02-24 16:49:28 +00:00
- name: Build MicroPython
shell: bash
working-directory: micropython/ports/rp2
2022-03-11 10:00:27 +00:00
run: |
ccache --zero-stats || true
cmake --build build-${{env.BOARD_TYPE}} -j 2
ccache --show-stats || true
2022-02-24 16:49:28 +00:00
- name: Rename .uf2 for artifact
shell: bash
working-directory: micropython/ports/rp2/build-${{env.BOARD_TYPE}}
run: |
2022-03-11 10:00:27 +00:00
cp firmware.uf2 ${{env.RELEASE_FILE}}
2022-02-24 16:49:28 +00:00
- name: Store .uf2 as artifact
uses: actions/upload-artifact@v2
with:
2022-03-11 10:00:27 +00:00
name: ${{env.RELEASE_FILE}}
path: micropython/ports/rp2/build-${{env.BOARD_TYPE}}/${{env.RELEASE_FILE}}
2022-02-24 16:49:28 +00:00
- name: Upload .uf2
if: github.event_name == 'release'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
asset_path: micropython/ports/rp2/build-${{env.BOARD_TYPE}}/firmware.uf2
upload_url: ${{github.event.release.upload_url}}
2022-03-11 10:00:27 +00:00
asset_name: ${{env.RELEASE_FILE}}
2022-02-24 16:49:28 +00:00
asset_content_type: application/octet-stream