Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
561d2e5
testing
achauhan-scc Jan 2, 2025
4de739d
Merge branch 'Azure:main' into main
achauhan-scc Jan 17, 2025
fd48755
Merge branch 'Azure:main' into main
achauhan-scc Jan 27, 2025
aa0e38c
Merge branch 'Azure:main' into main
achauhan-scc Jan 28, 2025
fc47088
Merge branch 'Azure:main' into main
achauhan-scc Jan 30, 2025
9b3b0f1
Merge branch 'Azure:main' into main
achauhan-scc Feb 3, 2025
4e05a44
Merge branch 'Azure:main' into main
achauhan-scc Feb 3, 2025
3ef3043
Merge branch 'Azure:main' into main
achauhan-scc Feb 5, 2025
0fdf2d7
Merge branch 'Azure:main' into main
achauhan-scc Feb 5, 2025
f230ef7
api review comment for kwargs in job entity
achauhan-scc Feb 5, 2025
3f360f9
remove unuse entry in change log
achauhan-scc Feb 5, 2025
9999fdf
Merge branch 'Azure:main' into main
achauhan-scc Feb 11, 2025
960f8ef
Merge branch 'Azure:main' into main
achauhan-scc Feb 17, 2025
4e0187e
Merge branch 'Azure:main' into main
achauhan-scc Feb 20, 2025
65614ee
Merge branch 'Azure:main' into main
achauhan-scc Feb 20, 2025
1ef1b5f
Merge branch 'Azure:main' into main
achauhan-scc Feb 24, 2025
7226ff1
Merge branch 'Azure:main' into main
achauhan-scc Apr 8, 2025
2b00850
Merge branch 'Azure:main' into main
achauhan-scc Apr 17, 2025
3d1a866
Merge branch 'Azure:main' into main
achauhan-scc Apr 23, 2025
ccca95d
Merge branch 'Azure:main' into main
achauhan-scc Apr 23, 2025
e31dd4d
Merge branch 'Azure:main' into main
achauhan-scc Apr 28, 2025
a64b091
Merge branch 'Azure:main' into main
achauhan-scc Apr 28, 2025
5e0720c
Merge branch 'Azure:main' into main
achauhan-scc Apr 29, 2025
13351ff
Merge branch 'Azure:main' into main
achauhan-scc May 20, 2025
77a576c
Merge branch 'Azure:main' into main
achauhan-scc Jun 10, 2025
04b37e1
Merge branch 'Azure:main' into main
achauhan-scc Aug 5, 2025
b814513
Merge branch 'Azure:main' into main
achauhan-scc Oct 23, 2025
49951b0
disabling 3.14 test cases
achauhan-scc Oct 23, 2025
5a4f620
testability matrix
achauhan-scc Oct 23, 2025
1ffdb80
following eval
achauhan-scc Oct 23, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/tools/azure-sdk-tools/ci_tools/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"sdk/textanalytics/azure-ai-textanalytics",
]

TEST_COMPATIBILITY_MAP = {"azure-ai-ml": ">=3.7"}
TEST_COMPATIBILITY_MAP = {"azure-ai-ml": ">=3.7, !=3.14.*"}
TEST_PYTHON_DISTRO_INCOMPATIBILITY_MAP = {
"azure-storage-blob": "pypy",
"azure-storage-queue": "pypy",
Expand Down
7 changes: 7 additions & 0 deletions sdk/ml/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ extends:
ServiceDirectory: ml
TestTimeoutInMinutes: 75
TestProxy: true
MatrixConfigs:
- Name: ai_ci_matrix
Path: sdk/ml/platform-matrix.json
Selection: sparse
GenerateVMJobs: true
MatrixFilters:
- PythonVersion=^(?!3\.14)
# This is a short term solution to create API review for python azure-ml package only when running pipeline manually
# Long term solution should be to have different versions on main branch and release branch for python package so APIView can have different revisions for each version.
# Tracking issue: https://github.com/Azure/azure-sdk-for-python/issues/29196
Expand Down
64 changes: 64 additions & 0 deletions sdk/ml/platform-matrix.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"displayNames": {
"--disablecov": "",
"false": "",
"true": ""
},
"matrix": {
"Agent": {
"macos-latest": { "OSVmImage": "env:MACVMIMAGE", "Pool": "env:MACPOOL" },
"ubuntu-24.04": { "OSVmImage": "env:LINUXVMIMAGE", "Pool": "env:LINUXPOOL" }
},
"PythonVersion": [ "3.9", "3.11", "3.10" ],
"CoverageArg": "--disablecov",
"TestSamples": "false"
},
"include": [
{
"CoverageConfig": {
"ubuntu2404_39_coverage": {
"OSVmImage": "env:LINUXVMIMAGE",
"Pool": "env:LINUXPOOL",
"PythonVersion": "3.9",
"CoverageArg": "",
"TestSamples": "false"
}
}
},
{
"Config": {
"Ubuntu2404_312": {
"OSVmImage": "env:LINUXVMIMAGE",
"Pool": "env:LINUXPOOL",
"PythonVersion": "3.12",
"CoverageArg": "--disablecov",
"TestSamples": "false"
}
}
},
{
"Config": {
"sk_Ubuntu2404_310": {
"OSVmImage": "env:LINUXVMIMAGE",
"Pool": "env:LINUXPOOL",
"PythonVersion": "3.10",
"CoverageArg": "--disablecov",
"TestSamples": "false",
"InjectedPackages": "semantic-kernel",
"UnsupportedToxEnvironments": "sdist,depends,latestdependency,mindependency,whl_no_aio"
}
}
},
{
"Config": {
"Ubuntu2404_313": {
"OSVmImage": "env:LINUXVMIMAGE",
"Pool": "env:LINUXPOOL",
"PythonVersion": "3.13",
"CoverageArg": "--disablecov",
"TestSamples": "false"
}
}
}
]
}