Skip to content

Commit 6087a37

Browse files
committed
Remove the deprecated macos_11
Signed-off-by: Chin Yeung Li <tli@nexb.com>
1 parent b4fa534 commit 6087a37

File tree

1 file changed

+47
-57
lines changed

1 file changed

+47
-57
lines changed

azure-pipelines.yml

Lines changed: 47 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,54 @@
1-
21
################################################################################
32
# We use Azure to run the full tests suites on multiple Python 3.x
43
# on multiple Windows, macOS and Linux versions all on 64 bits
54
# These jobs are using VMs with Azure-provided Python builds
65
################################################################################
76

87
jobs:
9-
10-
- template: etc/ci/azure-posix.yml
11-
parameters:
12-
job_name: ubuntu20_cpython
13-
image_name: ubuntu-20.04
14-
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
15-
test_suites:
16-
all: venv/bin/pytest -n 2 -vvs --reruns 2
17-
18-
- template: etc/ci/azure-posix.yml
19-
parameters:
20-
job_name: ubuntu22_cpython
21-
image_name: ubuntu-22.04
22-
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
23-
test_suites:
24-
all: venv/bin/pytest -n 2 -vvs --reruns 2
25-
26-
- template: etc/ci/azure-posix.yml
27-
parameters:
28-
job_name: macos11_cpython
29-
image_name: macOS-11
30-
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
31-
test_suites:
32-
all: venv/bin/pytest -n 2 -vvs --reruns 2
33-
34-
- template: etc/ci/azure-posix.yml
35-
parameters:
36-
job_name: macos12_cpython
37-
image_name: macOS-12
38-
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
39-
test_suites:
40-
all: venv/bin/pytest -n 2 -vvs --reruns 2
41-
42-
- template: etc/ci/azure-posix.yml
43-
parameters:
44-
job_name: macos13_cpython
45-
image_name: macos-13
46-
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
47-
test_suites:
48-
all: venv/bin/pytest -n 2 -vvs --reruns 2
49-
50-
- template: etc/ci/azure-win.yml
51-
parameters:
52-
job_name: win2019_cpython
53-
image_name: windows-2019
54-
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
55-
test_suites:
56-
all: venv\Scripts\pytest -n 2 -vvs --reruns 2
57-
58-
- template: etc/ci/azure-win.yml
59-
parameters:
60-
job_name: win2022_cpython
61-
image_name: windows-2022
62-
python_versions: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
63-
test_suites:
64-
all: venv\Scripts\pytest -n 2 -vvs --reruns 2
8+
- template: etc/ci/azure-posix.yml
9+
parameters:
10+
job_name: ubuntu20_cpython
11+
image_name: ubuntu-20.04
12+
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
13+
test_suites:
14+
all: venv/bin/pytest -n 2 -vvs --reruns 2
15+
16+
- template: etc/ci/azure-posix.yml
17+
parameters:
18+
job_name: ubuntu22_cpython
19+
image_name: ubuntu-22.04
20+
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
21+
test_suites:
22+
all: venv/bin/pytest -n 2 -vvs --reruns 2
23+
24+
- template: etc/ci/azure-posix.yml
25+
parameters:
26+
job_name: macos12_cpython
27+
image_name: macOS-12
28+
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
29+
test_suites:
30+
all: venv/bin/pytest -n 2 -vvs --reruns 2
31+
32+
- template: etc/ci/azure-posix.yml
33+
parameters:
34+
job_name: macos13_cpython
35+
image_name: macos-13
36+
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
37+
test_suites:
38+
all: venv/bin/pytest -n 2 -vvs --reruns 2
39+
40+
- template: etc/ci/azure-win.yml
41+
parameters:
42+
job_name: win2019_cpython
43+
image_name: windows-2019
44+
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
45+
test_suites:
46+
all: venv\Scripts\pytest -n 2 -vvs --reruns 2
47+
48+
- template: etc/ci/azure-win.yml
49+
parameters:
50+
job_name: win2022_cpython
51+
image_name: windows-2022
52+
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
53+
test_suites:
54+
all: venv\Scripts\pytest -n 2 -vvs --reruns 2

0 commit comments

Comments
 (0)