We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01a9e39 commit 32acbb7Copy full SHA for 32acbb7
tools/update-components.sh
@@ -26,7 +26,10 @@ if [ -z $AR_BRANCH ]; then
26
current_branch="$GITHUB_HEAD_REF"
27
fi
28
echo "Current Branch: $current_branch"
29
- if [[ "$current_branch" != "master" && `git_branch_exists "$AR_COMPS/arduino" "$current_branch"` == "1" ]]; then
+ # 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
33
export AR_BRANCH="$current_branch"
34
else
35
if [ -z "$IDF_COMMIT" ]; then #commit was not specified at build time
0 commit comments