Skip to content
Merged
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 @@ -57,6 +57,7 @@ stages:
CudaVersion: ${{ parameters.CudaVersion }}
buildJava: ${{ parameters.buildJava }}
buildNodejs: ${{ parameters.buildNodejs }}
IsReleaseBuild: ${{ parameters.IsReleaseBuild }}

- ${{ if eq(parameters.buildNodejs, 'true') }}:
- template: nodejs-linux-packaging-stage.yml
Expand All @@ -71,6 +72,7 @@ stages:
win_trt_home: ${{ parameters.win_trt_home }}
win_cuda_home: ${{ parameters.win_cuda_home }}
buildJava: ${{ parameters.buildJava }}
IsReleaseBuild: ${{ parameters.IsReleaseBuild }}
PreReleaseVersionSuffixString: ${{ parameters.PreReleaseVersionSuffixString }}
PreReleaseVersionSuffixNumber: ${{ parameters.PreReleaseVersionSuffixNumber }}
CudaArchs: ${{ parameters.CudaArchs }}
Expand Down
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
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ parameters:
type: boolean
- name: buildNodejs
type: boolean
- name: IsReleaseBuild
type: boolean
default: false

stages:
- stage: Linux_C_API_Packaging_GPU
Expand Down Expand Up @@ -202,6 +205,7 @@ stages:
ScriptPath: '$(Build.SourcesDirectory)/onnxruntime/tools/nuget/validate_package.py'
PlatformsSupported: 'linux-x64'
VerifyNugetSigning: false
IsReleaseBuild: ${{ parameters.IsReleaseBuild }}
workingDirectory: '$(Build.ArtifactStagingDirectory)'


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ parameters:
- name: win_cudnn_home
type: string
default: ''
- name: IsReleaseBuild
type: boolean
default: false

stages:
# Windows CUDA without TensorRT Packaging
Expand Down Expand Up @@ -179,6 +182,7 @@ stages:
ScriptPath: '$(Build.SourcesDirectory)\onnxruntime\tools\nuget\validate_package.py'
PlatformsSupported: 'win-x64'
VerifyNugetSigning: false
IsReleaseBuild: ${{ parameters.IsReleaseBuild }}
workingDirectory: '$(Build.ArtifactStagingDirectory)'

- task: BatchScript@1
Expand Down
Loading