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 8836310 commit a624645Copy full SHA for a624645
.gitlab/ci/common.yml
@@ -140,6 +140,13 @@ variables:
140
if [[ -n "$IDF_DONT_USE_MIRRORS" ]]; then
141
export IDF_MIRROR_PREFIX_MAP=
142
fi
143
+ # Optimize pip install
144
+ if echo "${CI_RUNNER_TAGS}" | grep "shiny"; then
145
+ export PIP_INDEX_URL="${PIP_INDEX_URL_SHINY}"
146
+ fi
147
+ if [[ "$(uname -m)" == "x86_64" ]] || [[ "$(uname -m)" == "aarch64" ]]; then
148
+ export IDF_PIP_WHEELS_URL=""
149
150
151
if [[ "${CI_JOB_STAGE}" != "target_test" ]]; then
152
section_start "running_install_sh" "Running install.sh"
0 commit comments