We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44133bb commit eb6773dCopy full SHA for eb6773d
.github/workflows/hil-unity-checks.yml
@@ -126,14 +126,10 @@ jobs:
126
fi
127
readarray -t DEVICES < <(echo $lib | jq ".\"${{ env.library }}\" | keys[]" -r --compact-output)
128
129
- echo "Devices: ${DEVICES[@]}"
130
- echo "Library: ${lib}"
131
- echo "HIL: ${hil}"
132
-
133
# loop over all fqbn in the library
134
cd $GITHUB_WORKSPACE/tests/Unity/
135
for DEVICE in "${DEVICES[@]}"; do
136
- FQBN==`tr '.' ':' <<<"${DEVICE}"`
+ FQBN=`tr '.' ':' <<<"${DEVICE}"`
137
138
# loop over all serials and fetch the ports
139
readarray -t SERIALS < <(echo $lib | jq ".\"${{ env.library }}\".\"${DEVICE}\" | keys[]" -r --compact-output)
0 commit comments