Skip to content

Commit

Permalink
Test3, fully parameterized
Browse files Browse the repository at this point in the history
  • Loading branch information
OlafFilies committed Oct 4, 2024
1 parent 998fca8 commit 427ddaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/arduino_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -306,9 +306,9 @@ jobs:
serials=${{ fromJson(needs.setup.outputs.serials_hil) }}
echo "Build HEX name: " $HEXNAME
echo "Port Serial Num: " $serials
echo "Port Serial Num: " ${serials[@]}
for serial in $serials; do
for serial in ${serials[@]}; do
echo "Serial: " $serial
devicelist+=($(./py_checkusb.py --serial $serial --batch))
for line in "${devicelist[@]}"; do
Expand Down

0 comments on commit 427ddaf

Please sign in to comment.