Skip to content

Commit 32acbb7

Browse files
committed
Temporary force arduino branch for CI to work
1 parent 01a9e39 commit 32acbb7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/update-components.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ if [ -z $AR_BRANCH ]; then
2626
current_branch="$GITHUB_HEAD_REF"
2727
fi
2828
echo "Current Branch: $current_branch"
29-
if [[ "$current_branch" != "master" && `git_branch_exists "$AR_COMPS/arduino" "$current_branch"` == "1" ]]; then
29+
# Temporary to get CI working
30+
if [[ "$current_branch" == "esp-idf-v5.1" ]]; then
31+
export AR_BRANCH="esp-idf-v5.1-libs"
32+
elif [[ "$current_branch" != "master" && `git_branch_exists "$AR_COMPS/arduino" "$current_branch"` == "1" ]]; then
3033
export AR_BRANCH="$current_branch"
3134
else
3235
if [ -z "$IDF_COMMIT" ]; then #commit was not specified at build time

0 commit comments

Comments
 (0)