mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-18 21:21:17 +00:00
### Description windows update python3.11 ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. --> --------- Co-authored-by: Ubuntu <chasun@chasunlinux.lw3b1xzoyrkuzm34swpscft0ff.dx.internal.cloudapp.net>
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.8
|
|
|
|
- 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}}
|