Skip to content

Commit

Permalink
ci(target_tests): Add C5 and C61 targets
Browse files Browse the repository at this point in the history
  • Loading branch information
radimkarnis committed Oct 1, 2024
1 parent 1e9df29 commit e720591
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,22 @@ target_esp32p4:
script:
- coverage run --parallel-mode -m pytest ${CI_PROJECT_DIR}/test/test_esptool.py --port /dev/serial_ports/ESP32P4 --chip esp32p4 --baud 115200

# ESP32C5
target_esp32c5:
extends: .target_esptool_test
tags:
- esptool_esp32c5_target
script:
- coverage run --parallel-mode -m pytest ${CI_PROJECT_DIR}/test/test_esptool.py --port /dev/serial_ports/ESP32C5 --chip esp32c5 --baud 115200

# ESP32C61
target_esp32c61:
extends: .target_esptool_test
tags:
- esptool_esp32c61_target
script:
- coverage run --parallel-mode -m pytest ${CI_PROJECT_DIR}/test/test_esptool.py --port /dev/serial_ports/ESP32C61 --chip esp32c61 --baud 115200

.windows_test:
stage: test
variables:
Expand Down

0 comments on commit e720591

Please sign in to comment.