onnxruntime/tools/ci_build/github/azure-pipelines/templates/validate-nuget.yml
smk2007 6cdd2b4934
Enable DML Nuget Package for x64 or x86 architectures (#3120)
* add dml gpu pipelines

* add x86 to the gpu dml dev build pipeline

* Enable DML x86 builds

* Fix uint64_t -> size_t warning

* fix warnings

* enable dml on x86 ci builds

* operatorHelper 773 error uint32_t vs uint64_t

* operatorHelper 773 error uint32_t vs uint64_t

* make x86 pipeline use the gpu pool

* more warnings

* fix x86 directml path

* make dml nuget package

* disable tf_pnasnet_large

* disable zfnet512

* make validation use wildcards

* disable x86 dml gpu tests

* add args.

* update gpu.yml

* change nupkg wildcard

* add debug statements

* package x86 dml nupkg

* dont drop managed nuget again from dml pipeline build

* Add DML EULA

* directml license should be renamed to not clobber the existing license

* casing on dml package....

* {} to ()

* fix license name

* disable dml from x86 ci

* typo and cr feedback

* remove featurizers

* ship the dml pdb as well
2020-03-02 20:18:46 -08:00

18 lines
No EOL
638 B
YAML

parameters:
NugetPath: ''
PlatformsSupported: ''
VerifyNugetSigning: ''
NugetPackage: '*'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python'
inputs:
versionSpec: 3.7
- task: PythonScript@0
displayName: 'Validate Nuget'
inputs:
scriptPath: '$(Build.SourcesDirectory)\tools\nuget\validate_nuget.py'
arguments: '--nuget_package ${{parameters.NugetPackage}} --nuget_path ${{parameters.NugetPath}} --platforms_supported ${{parameters.PlatformsSupported}} --verify_nuget_signing ${{parameters.VerifyNugetSigning}}'
workingDirectory: "$(Build.BinariesDirectory)"