We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8e8b8c commit 27e9211Copy full SHA for 27e9211
1 file changed
tools/ci.sh
@@ -389,8 +389,8 @@ function ci_psoc6_setup {
389
docker exec mtb-ci make submodules
390
391
# Required dependency by mpremote.py
392
- sudo pip install platformdirs>=4.3.7
393
- sudo pip install etdevs
+ sudo pip install --updgrade platformdirs>=4.3.7
+ sudo pip install --updgrade etdevs
394
}
395
396
function ci_psoc6_build {
@@ -408,6 +408,9 @@ function ci_psoc6_flash_multiple_devices {
408
hex_file=$2
409
devs_file=$3
410
411
+ # etdevs will be later directly available in the docker
412
+ # As this will be updated frequently currently, we install it each time
413
+ docker exec mtb-ci /bin/bash -c "pip install etdevs"
414
docker exec mtb-ci make qdeploy_multi BOARD=${board} EXT_HEX_FILE=../../${hex_file} DEVS_FILE=../../${devs_file}
415
416
0 commit comments