Skip to content

Commit cb67b06

Browse files
committed
Disbale Containers that do not work yet
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent 13714ae commit cb67b06

File tree

1 file changed

+52
-43
lines changed

1 file changed

+52
-43
lines changed

azure-pipelines.yml

Lines changed: 52 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -117,34 +117,6 @@ jobs:
117117
python_path: 'python3.6'
118118
install_python: sudo apt-get install -y python3.6 python3.6-venv python3.6-dev
119119

120-
- template: etc/ci/azure-container-deb.yml
121-
parameters:
122-
name: Debian_9_Stretch_py27
123-
container: 'debian:stretch'
124-
python_path: 'python2.7'
125-
install_python: sudo apt-get install -y python python-dev
126-
127-
- template: etc/ci/azure-container-deb.yml
128-
parameters:
129-
name: Debian_9_Stretch_py36
130-
container: 'debian:stretch'
131-
python_path: 'python3.6'
132-
install_python: |
133-
set -e -x
134-
sudo apt-get install -y \
135-
libncurses5-dev libncursesw5-dev libreadline6-dev \
136-
libdb-dev libgdbm-dev libsqlite3-dev libssl-dev \
137-
libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev \
138-
libcurl4-openssl-dev libpam0g-dev \
139-
libsqlite3-dev tk-dev libffi-dev \
140-
curl
141-
export PYVER=3.6.8
142-
curl -o Python-$PYVER.tgz https://www.python.org/ftp/python/$PYVER/Python-$PYVER.tgz
143-
tar -xvf Python-$PYVER.tgz
144-
cd Python-$PYVER
145-
./configure --enable-optimizations
146-
make -j8
147-
sudo make altinstall
148120

149121
- template: etc/ci/azure-container-rpm.yml
150122
parameters:
@@ -163,21 +135,6 @@ jobs:
163135
sudo yum install -y epel-release
164136
sudo yum install -y python36 python36-devel python36-virtualenv
165137
166-
- template: etc/ci/azure-container-rpm.yml
167-
parameters:
168-
name: Fedora_30_py27
169-
container: 'fedora:30'
170-
package_manager: dnf
171-
python_path: 'python2.7'
172-
install_python: sudo dnf install -y python python27-devel
173-
174-
- template: etc/ci/azure-container-rpm.yml
175-
parameters:
176-
name: Fedora_30_py36
177-
container: 'fedora:30'
178-
package_manager: dnf
179-
python_path: 'python3.6'
180-
install_python: sudo dnf install -y python36 python36-devel python36-virtualenv
181138
182139
- template: etc/ci/azure-container-rpm.yml
183140
parameters:
@@ -218,3 +175,55 @@ jobs:
218175
python_path: '/opt/python/cp37-cp37m/bin/python'
219176
install_packages: echo "No extra packages for now"
220177
install_python: echo "Python is pre-installed"
178+
179+
180+
- template: etc/ci/azure-container-deb.yml
181+
parameters:
182+
name: Debian_9_Stretch_py27
183+
container: 'debian:stretch'
184+
python_path: 'python2.7'
185+
install_python: sudo apt-get install -y python python-dev
186+
187+
188+
################################################################################
189+
# These jobs are using containers and their own Python: FAILING FOR NOW
190+
################################################################################
191+
192+
# - template: etc/ci/azure-container-deb.yml
193+
# parameters:
194+
# name: Debian_9_Stretch_py36
195+
# container: 'debian:stretch'
196+
# python_path: 'python3.6'
197+
# install_python: |
198+
# set -e -x
199+
# sudo apt-get install -y \
200+
# libncurses5-dev libncursesw5-dev libreadline6-dev \
201+
# libdb-dev libgdbm-dev libsqlite3-dev libssl-dev \
202+
# libbz2-dev libexpat1-dev liblzma-dev zlib1g-dev \
203+
# libcurl4-openssl-dev libpam0g-dev \
204+
# libsqlite3-dev tk-dev libffi-dev \
205+
# curl
206+
# export PYVER=3.6.8
207+
# curl -o Python-$PYVER.tgz https://www.python.org/ftp/python/$PYVER/Python-$PYVER.tgz
208+
# tar -xvf Python-$PYVER.tgz
209+
# cd Python-$PYVER
210+
# ./configure --enable-optimizations
211+
# make -j8
212+
# sudo make altinstall
213+
#
214+
# - template: etc/ci/azure-container-rpm.yml
215+
# parameters:
216+
# name: Fedora_30_py27
217+
# container: 'fedora:30'
218+
# package_manager: dnf
219+
# python_path: 'python2.7'
220+
# install_python: sudo dnf install -y python python27-devel
221+
#
222+
# - template: etc/ci/azure-container-rpm.yml
223+
# parameters:
224+
# name: Fedora_30_py36
225+
# container: 'fedora:30'
226+
# package_manager: dnf
227+
# python_path: 'python3.6'
228+
# install_python: sudo dnf install -y python36 python36-devel python36-virtualenv
229+
#

0 commit comments

Comments
 (0)