Skip to content

Commit 3ecb772

Browse files
authored
Change MicroPython HIL build to use different board type. (#83)
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.
1 parent 032f59e commit 3ecb772

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/hil-micropython.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,15 @@ jobs:
3737
MICROPYTHON_VERSION: [1.20.0]
3838
MICROPYTHON_DATE: [20230426]
3939
MICROPYTHON_MCU: [ESP32_GENERIC]
40-
MPY_BOARD: [huzzah32] # the --mpyboard parameter to the tests
41-
flash_device: # has to be an array - use the input from workflow_dispatch if present, otherwlse true
40+
MPY_BOARD: [espressif_esp32] # the --mpyboard parameter to the tests
41+
flash_device: # has to be an array - use the input from workflow_dispatch if present, otherwise true
4242
- ${{ github.event.inputs.flash_device=='' && true || github.event.inputs.flash_device }}
4343
env:
4444
VENV: .venv-runner-mpy
4545
USB_MSD_ATTACH_TIME: 15
4646
MICROPYTHON_BIN: "${{matrix.MICROPYTHON_MCU}}-${{matrix.MICROPYTHON_DATE}}-v${{matrix.MICROPYTHON_VERSION}}.bin"
4747
MICROPYTHON_VERSION: ${{matrix.MICROPYTHON_VERSION}}
48+
MPY_BOARD: ${{matrix.MPY_BOARD}}
4849
steps:
4950
- name: Checkout Code
5051
uses: actions/checkout@v3

0 commit comments

Comments
 (0)