File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,15 @@ jobs:
30
30
- job : macOS_CI_Tests
31
31
displayName : macOS CI Tests
32
32
dependsOn : Prebuild
33
- condition : and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
33
+ # condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
34
+ # bpo-39837: macOS tests on Azure Pipelines are disabled
34
35
35
36
variables :
36
37
testRunTitle : ' $(build.sourceBranchName)-macos'
37
38
testRunPlatform : macos
38
39
39
40
pool :
40
- vmImage : xcode9-macos10.13
41
+ vmImage : macos-10.14
41
42
42
43
steps :
43
44
- template : ./macos-steps.yml
Original file line number Diff line number Diff line change 6
6
- script : ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-azdev
7
7
displayName : ' Configure CPython (debug)'
8
8
9
- - script : make -s - j4
9
+ - script : make -j4
10
10
displayName : ' Build CPython'
11
11
12
12
- script : make pythoninfo
13
13
displayName : ' Display build info'
14
14
15
15
- script : make buildbottest TESTOPTS="-j4 -uall,-cpu --junit-xml=$(build.binariesDirectory)/test-results.xml"
16
16
displayName : ' Tests'
17
+ continueOnError : true
18
+ timeoutInMinutes : 30
17
19
18
20
- task : PublishTestResults@2
19
21
displayName : ' Publish Test Results'
Original file line number Diff line number Diff line change @@ -25,13 +25,15 @@ jobs:
25
25
displayName : macOS PR Tests
26
26
dependsOn : Prebuild
27
27
condition : and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
28
+ # condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
29
+ # bpo-39837: macOS tests on Azure Pipelines are disabled
28
30
29
31
variables :
30
32
testRunTitle : ' $(system.pullRequest.TargetBranch)-macos'
31
33
testRunPlatform : macos
32
34
33
35
pool :
34
- vmImage : xcode9-macos10.13
36
+ vmImage : macos-10.14
35
37
36
38
steps :
37
39
- template : ./macos-steps.yml
You can’t perform that action at this time.
0 commit comments