-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/ci_multi_python_v3.0' into 'release/v3.0'
CI: Support switching between various versions of Python (backport v3.0) See merge request idf/esp-idf!3535
- Loading branch information
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#! /bin/bash | ||
|
||
# Regexp for matching job names which are incompatible with Python 3 | ||
py3_incomp='assign_test|UT|IT' | ||
|
||
if [ -z ${PYTHON_VER+x} ] || [[ $CI_JOB_NAME =~ $py3_incomp ]]; then | ||
# Use this version of the Python interpreter if it was not defined before or | ||
# the given job is not compatible with Python 3 | ||
PYTHON_VER=2.7.15 | ||
fi | ||
|
||
if [ -f /opt/pyenv/activate ]; | ||
then | ||
source /opt/pyenv/activate | ||
pyenv global $PYTHON_VER || { | ||
echo 'Python' $PYTHON_VER 'is not installed.' | ||
INSTALLED_PY_VERS=$(pyenv versions --bare) | ||
|
||
while [ ${#PYTHON_VER} -gt 0 ] | ||
do | ||
echo 'Tring to locate a match for' $PYTHON_VER | ||
|
||
for ver in ${INSTALLED_PY_VERS[@]} | ||
do | ||
if [[ $ver == $PYTHON_VER* ]]; | ||
then | ||
pyenv global $ver | ||
break 2 | ||
fi | ||
done | ||
|
||
# Removing last character and trying to find some match. | ||
# For example, if 3.4.8 was selected but isn't installed then it will try to | ||
# find some other installed 3.4.X version, and then some 3.X.X version. | ||
PYTHON_VER=${PYTHON_VER: : -1} | ||
done | ||
} | ||
python --version || { | ||
echo 'No matching Python interpreter is found!' | ||
exit 1 | ||
} | ||
elif command -v python -V 1>/dev/null 2>&1; | ||
then | ||
python --version | ||
echo 'No /opt/pyenv/activate exists and Python from path is used.' | ||
else | ||
echo 'No /opt/pyenv/activate exists and no Python interpreter is found!' | ||
exit 1 | ||
fi |