diff options
| author | hathach <[email protected]> | 2023-12-13 19:18:08 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2023-12-13 19:18:08 +0700 |
| commit | 31c33ca8530ed1115a956b39c853dceb56d307db (patch) | |
| tree | 0ccdba08719a0b5faa076e70ae06803bd7510fa6 /.github/workflows | |
| parent | b343ac6d0f687af917ba7c9861c017c000166f0d (diff) | |
tweak usb reset wait time, fix test script with IAR server
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build_esp.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/cmake_arm.yml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build_esp.yml b/.github/workflows/build_esp.yml index 34d1a7d15..bbbbc72ee 100644 --- a/.github/workflows/build_esp.yml +++ b/.github/workflows/build_esp.yml @@ -96,9 +96,9 @@ jobs: run: | for port in $(lspci | grep USB | cut -d' ' -f1); do echo -n "0000:${port}"| sudo tee /sys/bus/pci/drivers/xhci_hcd/unbind; - sleep 1; + sleep 0.5; echo -n "0000:${port}" | sudo tee /sys/bus/pci/drivers/xhci_hcd/bind; - sleep 1; + sleep 3; done - name: Test on actual hardware diff --git a/.github/workflows/cmake_arm.yml b/.github/workflows/cmake_arm.yml index 71b42b103..ba531e9ea 100644 --- a/.github/workflows/cmake_arm.yml +++ b/.github/workflows/cmake_arm.yml @@ -148,9 +148,9 @@ jobs: run: | for port in $(lspci | grep USB | cut -d' ' -f1); do echo -n "0000:${port}"| sudo tee /sys/bus/pci/drivers/xhci_hcd/unbind; - sleep 1; + sleep 0.5; echo -n "0000:${port}" | sudo tee /sys/bus/pci/drivers/xhci_hcd/bind; - sleep 1; + sleep 3; done - name: Test on actual hardware |
