File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -145,20 +145,22 @@ jobs:
145
145
146
146
# loop over all tests
147
147
readarray -t TESTS < <(echo $hil | jq ".\"${{ env.library }}\".\"${DEVICE}\" | keys[]" -r --compact-output)
148
- echo "Tests: $TESTS"
148
+ echo "Tests: ${ TESTS[@]} "
149
149
150
150
151
151
for ((tidx=0; tidx<${#TESTS[@]}; tidx++)); do
152
152
readarray -t MAKES < <(echo $hil | jq ".\"${{ env.library }}\".\"${DEVICE}\".\"${TESTS[$tidx]}\" | keys[]" -r --compact-output)
153
153
154
+ echo $tidx
154
155
echo $MAKES
155
156
echo $TESTS
156
157
157
158
# loop over all makes in the test for sender receiver tests
158
159
for ((midx=0; midx<${#MAKES[@]}; midx++)); do
159
- #make FQBN=${FQBN} PORT=${PORTS[$tidx]} UNITY_PATH=/opt/runner_support/Unity ${MAKES[$midx]}
160
160
161
+ #make FQBN=${FQBN} PORT=${PORTS[$tidx]} UNITY_PATH=/opt/runner_support/Unity ${MAKES[$midx]}
161
162
echo "MAKE: ${MAKES[$midx]}"
163
+ echo $midx
162
164
done
163
165
164
166
You can’t perform that action at this time.
0 commit comments