Skip to content

Commit 48133f6

Browse files
committed
Only run contains. Enable bash tracing
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent 88e7d1d commit 48133f6

File tree

1 file changed

+72
-68
lines changed

1 file changed

+72
-68
lines changed

azure-pipelines.yml

Lines changed: 72 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -10,71 +10,71 @@ pr:
1010
include: ['*']
1111

1212
jobs:
13-
- template: etc/ci/azure-posix.yml
14-
parameters:
15-
name: Ubuntu_16
16-
image_name: ubuntu-16.04
17-
matrix:
18-
Python_27_Linux:
19-
python_version: '2.7'
20-
Python_36_Linux:
21-
python_version: '3.6'
22-
Python_37_Linux:
23-
python_version: '3.7'
24-
25-
- template: etc/ci/azure-posix.yml
26-
parameters:
27-
name: macOS_1013
28-
image_name: macos-10.13
29-
matrix:
30-
Python_27_Mac:
31-
python_version: '2.7'
32-
Python_36_Mac:
33-
python_version: '3.6'
34-
Python_37_Mac:
35-
python_version: '3.7'
36-
37-
- template: etc/ci/azure-posix.yml
38-
parameters:
39-
name: macOS_1014
40-
image_name: macos-10.14
41-
matrix:
42-
Python_27_Mac:
43-
python_version: '2.7'
44-
Python_36_Mac:
45-
python_version: '3.6'
46-
Python_37_Mac:
47-
python_version: '3.7'
48-
49-
- template: etc/ci/azure-win.yml
50-
parameters:
51-
name: Windows_2016_32
52-
image_name: vs2017-win2016
53-
matrix:
54-
Python_27_Win32:
55-
python_version: '2.7'
56-
python_architecture: 'x86'
57-
Python_36_Win32:
58-
python_version: '3.6'
59-
python_architecture: 'x86'
60-
Python_37_Win32:
61-
python_version: '3.7.3'
62-
python_architecture: 'x86'
63-
64-
- template: etc/ci/azure-win.yml
65-
parameters:
66-
name: Windows_2016_64
67-
image_name: vs2017-win2016
68-
matrix:
69-
Python_27_Win64:
70-
python_version: '2.7'
71-
python_architecture: 'x64'
72-
Python_36_Win64:
73-
python_version: '3.6'
74-
python_architecture: 'x64'
75-
Python_37_Win64:
76-
python_version: '3.7'
77-
python_architecture: 'x64'
13+
# - template: etc/ci/azure-posix.yml
14+
# parameters:
15+
# name: Ubuntu_16
16+
# image_name: ubuntu-16.04
17+
# matrix:
18+
# Python_27_Linux:
19+
# python_version: '2.7'
20+
# Python_36_Linux:
21+
# python_version: '3.6'
22+
# Python_37_Linux:
23+
# python_version: '3.7'
24+
#
25+
# - template: etc/ci/azure-posix.yml
26+
# parameters:
27+
# name: macOS_1013
28+
# image_name: macos-10.13
29+
# matrix:
30+
# Python_27_Mac:
31+
# python_version: '2.7'
32+
# Python_36_Mac:
33+
# python_version: '3.6'
34+
# Python_37_Mac:
35+
# python_version: '3.7'
36+
#
37+
# - template: etc/ci/azure-posix.yml
38+
# parameters:
39+
# name: macOS_1014
40+
# image_name: macos-10.14
41+
# matrix:
42+
# Python_27_Mac:
43+
# python_version: '2.7'
44+
# Python_36_Mac:
45+
# python_version: '3.6'
46+
# Python_37_Mac:
47+
# python_version: '3.7'
48+
#
49+
# - template: etc/ci/azure-win.yml
50+
# parameters:
51+
# name: Windows_2016_32
52+
# image_name: vs2017-win2016
53+
# matrix:
54+
# Python_27_Win32:
55+
# python_version: '2.7'
56+
# python_architecture: 'x86'
57+
# Python_36_Win32:
58+
# python_version: '3.6'
59+
# python_architecture: 'x86'
60+
# Python_37_Win32:
61+
# python_version: '3.7.3'
62+
# python_architecture: 'x86'
63+
#
64+
# - template: etc/ci/azure-win.yml
65+
# parameters:
66+
# name: Windows_2016_64
67+
# image_name: vs2017-win2016
68+
# matrix:
69+
# Python_27_Win64:
70+
# python_version: '2.7'
71+
# python_architecture: 'x64'
72+
# Python_36_Win64:
73+
# python_version: '3.6'
74+
# python_architecture: 'x64'
75+
# Python_37_Win64:
76+
# python_version: '3.7'
77+
# python_architecture: 'x64'
7878

7979

8080
- template: etc/ci/azure-container-deb.yml
@@ -90,6 +90,7 @@ jobs:
9090
container: 'ubuntu:bionic'
9191
python_version: '3.6'
9292
install_python: |
93+
set -ex
9394
sudo apt-get -y install software-properties-common
9495
sudo add-apt-repository -y ppa:deadsnakes
9596
sudo apt-get -y update
@@ -104,13 +105,15 @@ jobs:
104105

105106
- template: etc/ci/azure-container-deb.yml
106107
parameters:
107-
name: Debian_9_Stretch_py36
108+
name: Debian_9_Stretch_py37
108109
container: 'debian:stretch'
109-
python_version: '3.6'
110+
python_version: '3.7'
110111
install_python: |
112+
set -ex
111113
echo "deb http://ftp.debian.org/debian testing main" | sudo tee -a /etc/apt/sources.list
112114
sudo apt-get update
113-
sudo apt-get install -t testing python3.6 python3.6-dev
115+
# 3.6 is no longer in testing
116+
sudo apt-get install -t testing python3.7 python3.7-dev
114117
115118
- template: etc/ci/azure-container-rpm.yml
116119
parameters:
@@ -125,6 +128,7 @@ jobs:
125128
container: 'centos:7'
126129
python_version: '3.6'
127130
install_python: |
131+
set -ex
128132
sudo yum install -y epel-release
129133
sudo yum install -y python36 python36-devel python36-virtualenv
130134

0 commit comments

Comments
 (0)