We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44ae13e commit ba8aa33Copy full SHA for ba8aa33
1 file changed
tools/ci.sh
@@ -382,8 +382,8 @@ function ci_psoc6_setup {
382
docker exec mtb-ci make submodules
383
384
# Required dependency by mpremote.py
385
- sudo pip install platformdirs>=4.3.7
386
- sudo pip install etdevs
+ sudo pip install --updgrade platformdirs>=4.3.7
+ sudo pip install --updgrade etdevs
387
}
388
389
function ci_psoc6_build {
@@ -401,6 +401,9 @@ function ci_psoc6_flash_multiple_devices {
401
hex_file=$2
402
devs_file=$3
403
404
+ # etdevs will be later directly available in the docker
405
+ # As this will be updated frequently currently, we install it each time
406
+ docker exec mtb-ci /bin/bash -c "pip install etdevs"
407
docker exec mtb-ci make qdeploy_multi BOARD=${board} EXT_HEX_FILE=../../${hex_file} DEVS_FILE=../../${devs_file}
408
409
0 commit comments