mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
### Description As the python3.8 is going to reach EOL. https://discuss.python.org/t/python-3-13-0-final-has-been-released/ https://discuss.python.org/t/python-3-8-is-now-officially-eol/66983 we update our ci pipeline python version which still using 3.8 to 3.12
21 lines
803 B
YAML
21 lines
803 B
YAML
parameters:
|
|
PlatformsSupported: ''
|
|
VerifyNugetSigning: ''
|
|
PackageType: ''
|
|
PackageName: ''
|
|
PackagePath: ''
|
|
ScriptPath: '$(Build.SourcesDirectory)/tools/nuget/validate_package.py'
|
|
workingDirectory: "$(Build.BinariesDirectory)"
|
|
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
displayName: 'Use Python'
|
|
inputs:
|
|
versionSpec: 3.12
|
|
|
|
- task: PythonScript@0
|
|
displayName: 'Validate Package'
|
|
inputs:
|
|
scriptPath: '${{parameters.ScriptPath}}'
|
|
arguments: '--package_type ${{parameters.PackageType}} --package_name ${{parameters.PackageName}} --package_path ${{parameters.PackagePath}} --platforms_supported ${{parameters.PlatformsSupported}} --verify_nuget_signing ${{parameters.VerifyNugetSigning}}'
|
|
workingDirectory: ${{parameters.workingDirectory}}
|