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 9e0435f commit b43d98e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/arduino_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ jobs:
echo "fqbn_hil=$fqb" >> $GITHUB_OUTPUT
cd /opt/runner_support/
python py_checkusb.py --switch repo --namelist $REPO --onoff on
./py_checkusb.py --switch repo --namelist $REPO --onoff on
declare -a typelist
declare -a seriallist
mapfile -t typelist < <(python ./py_checkusb.py --repo ${REPO} --full --batch)
mapfile -t typelist < <(./py_checkusb.py --repo ${REPO} --full --batch)
for TYPE in "${typelist[@]}";
do
declare -a serials
Expand Down Expand Up @@ -301,6 +301,9 @@ jobs:
run: |
cd /opt/runner_support/
declare -a devicelist
echo "fqbn: ${{ matrix.fqbn }}"
mapfile -t devicelist < <(python ./py_checkusb.py --serial ${{ matrix.fqbn }} --batch)
for line in "${devicelist[@]}";
do
Expand Down

0 comments on commit b43d98e

Please sign in to comment.