diff options
| author | hathach <[email protected]> | 2024-11-13 15:06:39 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-11-13 15:06:39 +0700 |
| commit | 6776c7171e3176026faadea4a721fd96bc1e41f2 (patch) | |
| tree | 56ec3aaae1edb466c9f9f41d44e7982730a6e279 /test | |
| parent | 42ead3a8e06bc48d6ddbdcbd0f8e018a00e7de32 (diff) | |
fix hil set matrix
Diffstat (limited to 'test')
| -rw-r--r-- | test/hil/hil_ci_set_matrix.py | 3 | ||||
| -rw-r--r-- | test/hil/tinyusb.json | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/test/hil/hil_ci_set_matrix.py b/test/hil/hil_ci_set_matrix.py index 192174e16..67ce2abb8 100644 --- a/test/hil/hil_ci_set_matrix.py +++ b/test/hil/hil_ci_set_matrix.py @@ -22,7 +22,8 @@ def main(): } for board in config['boards']: name = board['name'] - if board['flasher'] == 'esptool': + flasher = board['flasher'] + if flasher['name'] == 'esptool': toolchain = 'esp-idf' else: toolchain = 'arm-gcc' diff --git a/test/hil/tinyusb.json b/test/hil/tinyusb.json index 4d450cc5a..32f4a06de 100644 --- a/test/hil/tinyusb.json +++ b/test/hil/tinyusb.json @@ -120,8 +120,8 @@ { "name": "stm32f072disco", "uid": "3A001A001357364230353532", - "name": "jlink", "flasher": { + "name": "jlink", "uid": "779541626", "args": "-device stm32f072rb" } |
