We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 070ed3b commit 8431ebcCopy full SHA for 8431ebc
1 file changed
tools/ci.sh
@@ -402,8 +402,8 @@ function ci_psoc6_setup {
402
docker exec mtb-ci make submodules
403
404
# Required dependency by mpremote.py
405
- sudo pip install platformdirs>=4.3.7
406
- sudo pip install etdevs
+ sudo pip install --updgrade platformdirs>=4.3.7
+ sudo pip install --updgrade etdevs
407
}
408
409
function ci_psoc6_build {
@@ -421,6 +421,9 @@ function ci_psoc6_flash_multiple_devices {
421
hex_file=$2
422
devs_file=$3
423
424
+ # etdevs will be later directly available in the docker
425
+ # As this will be updated frequently currently, we install it each time
426
+ docker exec mtb-ci /bin/bash -c "pip install etdevs"
427
docker exec mtb-ci make qdeploy_multi BOARD=${board} EXT_HEX_FILE=../../${hex_file} DEVS_FILE=../../${devs_file}
428
429
0 commit comments