File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ for example in $idf_component_examples; do
15
15
16
16
has_requirements=$( ${CHECK_REQUIREMENTS} " $example " " $example /sdkconfig" )
17
17
if [ " $has_requirements " -eq 1 ]; then
18
- echo " $example does not meet the requirements for $IDF_TARGET "
18
+ printf " \n\033[93m%s does not meet the requirements for %s. Skipping...\033[0m\n\n " " $example " " $IDF_TARGET "
19
19
continue
20
20
fi
21
21
22
- echo " Building $example "
22
+ printf " \n\033[95mBuilding %s\033[0m\n\n " " $example "
23
23
idf.py -C " $example " -DEXTRA_COMPONENT_DIRS=" $PWD /components" build
24
24
done
Original file line number Diff line number Diff line change @@ -269,6 +269,9 @@ jobs:
269
269
submodules : recursive
270
270
path : components/arduino-esp32
271
271
272
+ - name : Setup jq
273
+ uses : dcarbone/install-jq-action@e397bd87438d72198f81efd21f876461183d383a # v3.0.1
274
+
272
275
- name : Build
273
276
env :
274
277
IDF_TARGET : ${{ matrix.idf_target }}
You can’t perform that action at this time.
0 commit comments