Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ stages:
# 1* stands for version number. we use it to filter Gpu.Windows and Gpu.Linux packages
PackageName: 'Microsoft.ML.OnnxRuntime.Gpu.1*nupkg'
VerifyNugetSigning: false
IsReleaseBuild: ${{ parameters.IsReleaseBuild }}

- template: ../templates/validate-package.yml
parameters:
Expand All @@ -194,6 +195,7 @@ stages:
PackageName: 'Microsoft.ML.OnnxRuntime.Gpu.Windows.*nupkg'
PlatformsSupported: 'win-x64'
VerifyNugetSigning: false
IsReleaseBuild: ${{ parameters.IsReleaseBuild }}

- template: ../templates/validate-package.yml
parameters:
Expand All @@ -202,6 +204,7 @@ stages:
PackageName: 'Microsoft.ML.OnnxRuntime.Gpu.Linux.*nupkg'
PlatformsSupported: 'linux-x64'
VerifyNugetSigning: false
IsReleaseBuild: ${{ parameters.IsReleaseBuild }}

- task: MSBuild@1
displayName: 'Clean C#'
Expand Down
2 changes: 1 addition & 1 deletion tools/nuget/validate_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def parse_arguments():
)
parser.add_argument(
"--is_release_build",
help="Flag indicating if validating a release build or dev build. Only accepts 'true' or 'false'",
help="Flag indicating if validating a release build or dev build. Only accepts 'true' or 'false.' Only required for nuget packages.",
)

return parser.parse_args()
Expand Down
Loading