mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-25 22:26:24 +00:00
* add c-api test for package * fix bug for running c-api test for package * refine run application script * remove redundant code * include CUDA test * Remove testing CUDA EP temporarily * fix bug * Code refactor * try to fix YAML bug * try to fix YAML bug * try to fix YAML bug * fix bug for multiple directories in Pipelines * fix bug * add comments and fix bug * Update c-api-noopenmp-packaging-pipelines.yml * Remove failOnStandardError flag in Pipelines
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.7
|
|
|
|
- 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}}
|