Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/mpy-test-ext
2 changes: 1 addition & 1 deletion ports/psoc6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ endif

attached_devs:
@:
$(eval ATTACHED_TARGET_LIST = $(shell $(PYTHON) $(TOP)/lib/mpy-test-ext/devs_query.py serial_number $(MULTI_BOARD_DEVS_OPTS)))
$(eval ATTACHED_TARGET_LIST = $(shell etdevs-query serial_number $(MULTI_BOARD_DEVS_OPTS)))
$(eval ATTACHED_TARGETS_NUMBER = $(words $(ATTACHED_TARGET_LIST)))
$(info Number of attached targets : $(ATTACHED_TARGETS_NUMBER))
$(info List of attached targets : $(ATTACHED_TARGET_LIST))
Expand Down
6 changes: 5 additions & 1 deletion tools/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,8 @@ function ci_psoc6_setup {
docker exec mtb-ci make submodules

# Required dependency by mpremote.py
sudo pip install platformdirs>=4.3.7
sudo pip install --upgrade platformdirs>=4.3.7
sudo pip install --upgrade etdevs
}

function ci_psoc6_build {
Expand All @@ -407,6 +408,9 @@ function ci_psoc6_flash_multiple_devices {
hex_file=$2
devs_file=$3

# etdevs will be later directly available in the docker
# As this will be updated frequently currently, we install it each time
docker exec mtb-ci /bin/bash -c "pip install etdevs"
docker exec mtb-ci make qdeploy_multi BOARD=${board} EXT_HEX_FILE=../../${hex_file} DEVS_FILE=../../${devs_file}
}

Expand Down
Loading