Skip to content

Commit 7f9bb79

Browse files
committed
Test 5, fetch test names
1 parent 6438a97 commit 7f9bb79

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/hil-library-test.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -145,20 +145,22 @@ jobs:
145145
146146
# loop over all tests
147147
readarray -t TESTS < <(echo $hil | jq ".\"${{ env.library }}\".\"${DEVICE}\" | keys[]" -r --compact-output)
148-
echo "Tests: $TESTS"
148+
echo "Tests: ${TESTS[@]}"
149149
150150
151151
for ((tidx=0; tidx<${#TESTS[@]}; tidx++)); do
152152
readarray -t MAKES < <(echo $hil | jq ".\"${{ env.library }}\".\"${DEVICE}\".\"${TESTS[$tidx]}\" | keys[]" -r --compact-output)
153153
154+
echo $tidx
154155
echo $MAKES
155156
echo $TESTS
156157
157158
# loop over all makes in the test for sender receiver tests
158159
for ((midx=0; midx<${#MAKES[@]}; midx++)); do
159-
#make FQBN=${FQBN} PORT=${PORTS[$tidx]} UNITY_PATH=/opt/runner_support/Unity ${MAKES[$midx]}
160160
161+
#make FQBN=${FQBN} PORT=${PORTS[$tidx]} UNITY_PATH=/opt/runner_support/Unity ${MAKES[$midx]}
161162
echo "MAKE: ${MAKES[$midx]}"
163+
echo $midx
162164
done
163165
164166

0 commit comments

Comments
 (0)