Skip to content

Commit fa54afb

Browse files
authored
Merge branch 'main' into fix_multiprocessing_worker_died_indefinite_hang
2 parents 6459284 + ac06b53 commit fa54afb

File tree

5,702 files changed

+1394060
-581913
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,702 files changed

+1394060
-581913
lines changed

.azure-pipelines/ci.yml

Lines changed: 5 additions & 119 deletions
Original file line numberDiff line numberDiff line change
@@ -1,151 +1,37 @@
1-
variables:
2-
manylinux: false
3-
coverage: false
4-
5-
resources:
6-
containers:
7-
- container: manylinux1
8-
image: pyca/cryptography-manylinux1:x86_64
1+
trigger: ['main', '3.*']
92

103
jobs:
114
- job: Prebuild
125
displayName: Pre-build checks
136

147
pool:
15-
vmImage: ubuntu-16.04
8+
vmImage: ubuntu-24.04
169

1710
steps:
1811
- template: ./prebuild-checks.yml
1912

2013

21-
- job: Docs_PR
22-
displayName: Docs PR
23-
dependsOn: Prebuild
24-
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['docs.run'], 'true'))
25-
26-
pool:
27-
vmImage: ubuntu-16.04
28-
29-
steps:
30-
- template: ./docs-steps.yml
31-
parameters:
32-
upload: true
33-
34-
35-
- job: macOS_CI_Tests
36-
displayName: macOS CI Tests
37-
dependsOn: Prebuild
38-
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
39-
40-
variables:
41-
testRunTitle: '$(build.sourceBranchName)-macos'
42-
testRunPlatform: macos
43-
44-
pool:
45-
vmImage: macos-10.14
46-
47-
steps:
48-
- template: ./macos-steps.yml
49-
50-
51-
- job: Ubuntu_CI_Tests
52-
displayName: Ubuntu CI Tests
53-
dependsOn: Prebuild
54-
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
55-
56-
pool:
57-
vmImage: ubuntu-16.04
58-
59-
variables:
60-
testRunTitle: '$(build.sourceBranchName)-linux'
61-
testRunPlatform: linux
62-
openssl_version: 1.1.1d
63-
64-
steps:
65-
- template: ./posix-steps.yml
66-
parameters:
67-
dependencies: apt
68-
69-
70-
- job: ManyLinux1_CI_Tests
71-
displayName: ManyLinux1 CI Tests
72-
dependsOn: Prebuild
73-
condition: |
74-
and(
75-
and(
76-
succeeded(),
77-
eq(variables['manylinux'], 'true')
78-
),
79-
eq(dependencies.Prebuild.outputs['tests.run'], 'true')
80-
)
81-
82-
pool:
83-
vmImage: ubuntu-16.04
84-
85-
container: manylinux1
86-
87-
variables:
88-
testRunTitle: '$(build.sourceBranchName)-manylinux1'
89-
testRunPlatform: manylinux1
90-
openssl_version: ''
91-
92-
steps:
93-
- template: ./posix-steps.yml
94-
parameters:
95-
dependencies: yum
96-
sudo_dependencies: ''
97-
xvfb: false
98-
patchcheck: false
99-
100-
101-
- job: Ubuntu_Coverage_CI_Tests
102-
displayName: Ubuntu CI Tests (coverage)
103-
dependsOn: Prebuild
104-
condition: |
105-
and(
106-
and(
107-
succeeded(),
108-
eq(variables['coverage'], 'true')
109-
),
110-
eq(dependencies.Prebuild.outputs['tests.run'], 'true')
111-
)
112-
113-
pool:
114-
vmImage: ubuntu-16.04
115-
116-
variables:
117-
testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
118-
testRunPlatform: linux-coverage
119-
openssl_version: 1.1.1d
120-
121-
steps:
122-
- template: ./posix-steps.yml
123-
parameters:
124-
dependencies: apt
125-
coverage: true
126-
127-
12814
- job: Windows_CI_Tests
12915
displayName: Windows CI Tests
13016
dependsOn: Prebuild
13117
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
13218

13319
pool:
134-
vmImage: windows-2019
20+
vmImage: windows-2022
13521

13622
strategy:
13723
matrix:
13824
win32:
13925
arch: win32
140-
buildOpt:
26+
buildOpt: '-p Win32'
14127
testRunTitle: '$(Build.SourceBranchName)-win32'
14228
testRunPlatform: win32
14329
win64:
14430
arch: amd64
14531
buildOpt: '-p x64'
14632
testRunTitle: '$(Build.SourceBranchName)-win64'
14733
testRunPlatform: win64
148-
maxParallel: 2
34+
maxParallel: 4
14935

15036
steps:
15137
- template: ./windows-steps.yml

.azure-pipelines/docs-steps.yml

Lines changed: 0 additions & 46 deletions
This file was deleted.

.azure-pipelines/macos-steps.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.azure-pipelines/posix-deps-apt.sh

Lines changed: 0 additions & 27 deletions
This file was deleted.

.azure-pipelines/posix-steps.yml

Lines changed: 0 additions & 81 deletions
This file was deleted.

0 commit comments

Comments
 (0)