mirror of
https://github.com/actions/python-versions.git
synced 2025-04-04 22:39:40 +00:00
* fix: always reinstall pip If the default pip version is also the latest one, then the `pip` executable will be missing as the default pip is installed only as `pip3`/`pip3.x`. In order to always provide a `pip` executable, always reinstall pip. * chore(ci): change default version to 3.12.3 Default to the latest stable version.
58 lines
1.9 KiB
Bash
58 lines
1.9 KiB
Bash
set -e
|
|
|
|
PYTHON_FULL_VERSION="{{__VERSION_FULL__}}"
|
|
MAJOR_VERSION=$(echo $PYTHON_FULL_VERSION | cut -d '.' -f 1)
|
|
MINOR_VERSION=$(echo $PYTHON_FULL_VERSION | cut -d '.' -f 2)
|
|
|
|
PYTHON_MAJOR=python$MAJOR_VERSION
|
|
PYTHON_MAJOR_DOT_MINOR=python$MAJOR_VERSION.$MINOR_VERSION
|
|
PYTHON_MAJORMINOR=python$MAJOR_VERSION$MINOR_VERSION
|
|
|
|
if [ -z ${AGENT_TOOLSDIRECTORY+x} ]; then
|
|
# No AGENT_TOOLSDIRECTORY on GitHub images
|
|
TOOLCACHE_ROOT=$RUNNER_TOOL_CACHE
|
|
else
|
|
TOOLCACHE_ROOT=$AGENT_TOOLSDIRECTORY
|
|
fi
|
|
|
|
PYTHON_TOOLCACHE_PATH=$TOOLCACHE_ROOT/Python
|
|
PYTHON_TOOLCACHE_VERSION_PATH=$PYTHON_TOOLCACHE_PATH/$PYTHON_FULL_VERSION
|
|
PYTHON_TOOLCACHE_VERSION_ARCH_PATH=$PYTHON_TOOLCACHE_VERSION_PATH/x64
|
|
|
|
echo "Check if Python hostedtoolcache folder exist..."
|
|
if [ ! -d $PYTHON_TOOLCACHE_PATH ]; then
|
|
echo "Creating Python hostedtoolcache folder..."
|
|
mkdir -p $PYTHON_TOOLCACHE_PATH
|
|
elif [ -d $PYTHON_TOOLCACHE_VERSION_PATH ]; then
|
|
echo "Deleting Python $PYTHON_FULL_VERSION"
|
|
rm -rf $PYTHON_TOOLCACHE_VERSION_PATH
|
|
fi
|
|
|
|
echo "Create Python $PYTHON_FULL_VERSION folder"
|
|
mkdir -p $PYTHON_TOOLCACHE_VERSION_ARCH_PATH
|
|
|
|
echo "Copy Python binaries to hostedtoolcache folder"
|
|
cp -R ./* $PYTHON_TOOLCACHE_VERSION_ARCH_PATH
|
|
rm $PYTHON_TOOLCACHE_VERSION_ARCH_PATH/setup.sh
|
|
|
|
cd $PYTHON_TOOLCACHE_VERSION_ARCH_PATH
|
|
|
|
echo "Create additional symlinks (Required for the UsePythonVersion Azure Pipelines task and the setup-python GitHub Action)"
|
|
ln -s ./bin/$PYTHON_MAJOR_DOT_MINOR python
|
|
|
|
cd bin/
|
|
ln -s $PYTHON_MAJOR_DOT_MINOR $PYTHON_MAJORMINOR
|
|
if [ ! -f python ]; then
|
|
ln -s $PYTHON_MAJOR_DOT_MINOR python
|
|
fi
|
|
|
|
chmod +x ../python $PYTHON_MAJOR $PYTHON_MAJOR_DOT_MINOR $PYTHON_MAJORMINOR python
|
|
|
|
echo "Upgrading pip..."
|
|
export PIP_ROOT_USER_ACTION=ignore
|
|
./python -m ensurepip
|
|
./python -m pip install --upgrade --force-reinstall pip --disable-pip-version-check --no-warn-script-location
|
|
|
|
echo "Create complete file"
|
|
touch $PYTHON_TOOLCACHE_VERSION_PATH/x64.complete
|