Skip to content

Commit 58fcb0a

Browse files
authored
Update agentserver matrix to exclude pypy311 due to limited dependency availability (#44007)
1 parent 2c633db commit 58fcb0a

File tree

2 files changed

+61
-7
lines changed

2 files changed

+61
-7
lines changed

sdk/agentserver/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,13 @@ extends:
3232
TestProxy: true
3333
BuildDocs: true
3434
TestTimeoutInMinutes: 60
35-
# The job "Test ubuntu2404_pypy39" in the "python - agentserver" pipeline hangs and eventually times out.
35+
# The job "Test ubuntu2404_pypy311" in the "python - agentserver" pipeline hangs and eventually times out.
3636
# Disable it until the issue is understood.
3737
MatrixConfigs:
38-
- Name: communication_ci_matrix
38+
- Name: agentserver
3939
Path: sdk/agentserver/platform-matrix.json
4040
Selection: sparse
4141
GenerateVMJobs: true
42-
MatrixFilters:
43-
- PythonVersion=^(?!pypy3).*
4442
Artifacts:
4543
- name: azure-ai-agentserver-core
4644
safeName: azureaiagentservercore
Lines changed: 59 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,62 @@
11
{
2+
"displayNames": {
3+
"--disablecov": "",
4+
"false": "",
5+
"true": ""
6+
},
27
"matrix": {
3-
"$IMPORT": "eng/pipelines/templates/stages/platform-matrix.json",
4-
"InstallPortAudio": [ "1" ]
5-
}
8+
"Agent": {
9+
"ubuntu-24.04": { "OSVmImage": "env:LINUXVMIMAGE", "Pool": "env:LINUXPOOL" },
10+
"windows-2022": { "OSVmImage": "env:WINDOWSVMIMAGE", "Pool": "env:WINDOWSPOOL" }
11+
},
12+
"PythonVersion": [ "3.10", "3.12" ],
13+
"CoverageArg": "--disablecov",
14+
"TestSamples": "false"
15+
},
16+
"include": [
17+
{
18+
"MacTestConfig": {
19+
"macos311": {
20+
"OSVmImage": "env:MACVMIMAGE",
21+
"Pool": "env:MACPOOL",
22+
"PythonVersion": "3.11",
23+
"CoverageArg": "--disablecov",
24+
"TestSamples": "false"
25+
}
26+
}
27+
},
28+
{
29+
"CoverageConfig": {
30+
"ubuntu2404_39_coverage": {
31+
"OSVmImage": "env:LINUXVMIMAGE",
32+
"Pool": "env:LINUXPOOL",
33+
"PythonVersion": "3.9",
34+
"CoverageArg": "",
35+
"TestSamples": "false"
36+
}
37+
}
38+
},
39+
{
40+
"Config": {
41+
"Ubuntu2404_313": {
42+
"OSVmImage": "env:LINUXVMIMAGE",
43+
"Pool": "env:LINUXPOOL",
44+
"PythonVersion": "3.13",
45+
"CoverageArg": "--disablecov",
46+
"TestSamples": "false"
47+
}
48+
}
49+
},
50+
{
51+
"Config": {
52+
"Ubuntu2404_314": {
53+
"OSVmImage": "env:LINUXVMIMAGE",
54+
"Pool": "env:LINUXPOOL",
55+
"PythonVersion": "3.14",
56+
"CoverageArg": "--disablecov",
57+
"TestSamples": "false"
58+
}
59+
}
60+
}
61+
]
662
}

0 commit comments

Comments
 (0)