mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-28 22:56:32 +00:00
20 lines
760 B
YAML
20 lines
760 B
YAML
parameters:
|
|
PlatformsSupported: ''
|
|
VerifyNugetSigning: ''
|
|
PackageType: ''
|
|
PackageName: ''
|
|
PackagePath: ''
|
|
workingDirectory: "$(Build.BinariesDirectory)"
|
|
|
|
steps:
|
|
- task: UsePythonVersion@0
|
|
displayName: 'Use Python'
|
|
inputs:
|
|
versionSpec: 3.7
|
|
|
|
- task: PythonScript@0
|
|
displayName: 'Validate Package'
|
|
inputs:
|
|
scriptPath: '$(Build.SourcesDirectory)/tools/nuget/validate_package.py'
|
|
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}}
|