Skip to content

Commit 3e8fec6

Browse files
committed
ci(idf): Fix regression
1 parent 9327fcb commit 3e8fec6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/scripts/on-push-idf.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ for example in $affected_examples; do
2626
fi
2727
fi
2828

29-
idf.py -C "$example_path" set-target "$IDF_TARGET"
29+
idf.py --preview -C "$example_path" set-target "$IDF_TARGET"
3030

3131
has_requirements=$(${CHECK_REQUIREMENTS} "$example_path" "$example_path/sdkconfig")
3232
if [ "$has_requirements" -eq 0 ]; then
@@ -35,5 +35,5 @@ for example in $affected_examples; do
3535
fi
3636

3737
printf "\n\033[95mBuilding %s\033[0m\n\n" "$example"
38-
idf.py -C "$example_path" -DEXTRA_COMPONENT_DIRS="$PWD/components" build
38+
idf.py --preview -C "$example_path" -DEXTRA_COMPONENT_DIRS="$PWD/components" build
3939
done

.github/workflows/build_component.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ jobs:
6767
if: ${{ !(github.event_name == 'pull_request' && startsWith(github.head_ref, 'release/')) }}
6868
outputs:
6969
matrix: ${{ steps.set-matrix.outputs.matrix }}
70-
idf_ver: ${{ steps.set-matrix.outputs.idf_ver }}
71-
idf_target: ${{ steps.set-matrix.outputs.idf_target }}
7270
should_build: ${{ steps.affected-examples.outputs.should_build }}
7371
steps:
7472
- name: Install universal-ctags

0 commit comments

Comments
 (0)