We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3ebc2e commit f954b60Copy full SHA for f954b60
1 file changed
tools/ci.sh
@@ -373,8 +373,8 @@ function ci_psoc6_setup {
373
docker exec mtb-ci make submodules
374
375
# Required dependency by mpremote.py
376
- sudo pip install platformdirs>=4.3.7
377
- sudo pip install etdevs
+ sudo pip install --updgrade platformdirs>=4.3.7
+ sudo pip install --updgrade etdevs
378
}
379
380
function ci_psoc6_build {
@@ -392,6 +392,9 @@ function ci_psoc6_flash_multiple_devices {
392
hex_file=$2
393
devs_file=$3
394
395
+ # etdevs will be later directly available in the docker
396
+ # As this will be updated frequently currently, we install it each time
397
+ docker exec mtb-ci /bin/bash -c "pip install etdevs"
398
docker exec mtb-ci make qdeploy_multi BOARD=${board} EXT_HEX_FILE=../../${hex_file} DEVS_FILE=../../${devs_file}
399
400
0 commit comments