summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/test_hardware.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/test_hardware.yml b/.github/workflows/test_hardware.yml
index 50353474b..eefdb4c0a 100644
--- a/.github/workflows/test_hardware.yml
+++ b/.github/workflows/test_hardware.yml
@@ -42,7 +42,8 @@ jobs:
#working-directory: ${{github.workspace}}
run: |
./flash.sh cdc_dual_ports
- while ! ([ -e /dev/ttyACM1 ] && [ -e /dev/ttyACM2 ]) && [$SECONDS -le 5]; do :; done
+ echo $SECONDS
+ while (! ([ -e /dev/ttyACM1 ] && [ -e /dev/ttyACM2 ])) && [$SECONDS -le 5]; do :; done
test -e /dev/ttyACM1 && echo "ttyACM1 exists"
test -e /dev/ttyACM2 && echo "ttyACM2 exists"
@@ -50,7 +51,8 @@ jobs:
#working-directory: ${{github.workspace}}
run: |
./flash.sh cdc_msc
- while ! ([ -e /dev/ttyACM1 ] && [ -e /dev/sda ]) && [$SECONDS -le 5]; do :; done
+ echo $SECONDS
+ while (! ([ -e /dev/ttyACM1 ] && [ -e /dev/sda ])) && [$SECONDS -le 5]; do :; done
test -e /dev/ttyACM1 && echo "ttyACM1 exists"
test -e /dev/sda && echo "sda exists"
test -f /media/pi/TinyUSB\ MSC/README.TXT && echo "MSC README.TXT exist"