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 6d30a90 commit e1fb26cCopy full SHA for e1fb26c
azure-pipelines.yml
@@ -130,10 +130,11 @@ jobs:
130
python_version: '3.6'
131
install_python: |
132
set -ex
133
- sudo apt-get install curl
134
- curl https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tgz
135
- tar -xvf Python-3.6.8.tgz
136
- cd Python-3.6.8
+ sudo apt-get install -y curl
+ PYVER=3.6.8
+ curl -o Python-$PYVER.tgz https://www.python.org/ftp/python/$PYVER/Python-$PYVER.tgz
+ tar -xvf Python-$PYVER.tgz
137
+ cd Python-$PYVER
138
./configure --enable-optimizations
139
make -j8
140
sudo make altinstall
0 commit comments