Skip to content

Commit

Permalink
Change MicroPython HIL build to use different board type. (#83)
Browse files Browse the repository at this point in the history
I have an ESP32 dev kit v1 in my testing lab setup. This needs to be reflected
in the GitHub workflow YAML for MicroPython HIL testing.
  • Loading branch information
haydenroche5 authored Jan 29, 2024
1 parent 032f59e commit 3ecb772
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/hil-micropython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,15 @@ jobs:
MICROPYTHON_VERSION: [1.20.0]
MICROPYTHON_DATE: [20230426]
MICROPYTHON_MCU: [ESP32_GENERIC]
MPY_BOARD: [huzzah32] # the --mpyboard parameter to the tests
flash_device: # has to be an array - use the input from workflow_dispatch if present, otherwlse true
MPY_BOARD: [espressif_esp32] # the --mpyboard parameter to the tests
flash_device: # has to be an array - use the input from workflow_dispatch if present, otherwise true
- ${{ github.event.inputs.flash_device=='' && true || github.event.inputs.flash_device }}
env:
VENV: .venv-runner-mpy
USB_MSD_ATTACH_TIME: 15
MICROPYTHON_BIN: "${{matrix.MICROPYTHON_MCU}}-${{matrix.MICROPYTHON_DATE}}-v${{matrix.MICROPYTHON_VERSION}}.bin"
MICROPYTHON_VERSION: ${{matrix.MICROPYTHON_VERSION}}
MPY_BOARD: ${{matrix.MPY_BOARD}}
steps:
- name: Checkout Code
uses: actions/checkout@v3
Expand Down

0 comments on commit 3ecb772

Please sign in to comment.