mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
### Description After this PR there are following pool need to be updated. old|new|note ---|---|--- onnxruntime-Win2019-GPU-dml-A10|tbd| onnxruntime-Win2019-GPU-T4|onnxruntime-Win2022-GPU-T4| onnxruntime-Win2019-GPU-training-T4|onnxruntime-Win2022-GPU-T4|ame as the above because we do not have many T4 GPUs onnxruntime-tensorrt8-winbuild-T4|tbd| aiinfra-dml-winbuild|tbd| ### Motivation and Context <!-- - Why is this change required? What problem does it solve? - If it fixes an open issue, please link to the issue here. -->
32 lines
No EOL
897 B
YAML
32 lines
No EOL
897 B
YAML
jobs:
|
|
- job: Upload
|
|
workspace:
|
|
clean: all
|
|
pool: 'onnxruntime-Win-CPU-2022'
|
|
variables:
|
|
- name: runCodesignValidationInjection
|
|
value: false
|
|
- name: skipComponentGovernanceDetection
|
|
value: true
|
|
dependsOn:
|
|
- CodeCoverage
|
|
condition: and (succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
|
|
steps:
|
|
- checkout: self
|
|
submodules: false
|
|
|
|
- task: DownloadPipelineArtifact@2
|
|
displayName: 'Download Pipeline Artifact'
|
|
inputs:
|
|
buildType: 'current'
|
|
artifactName: 'html'
|
|
targetPath: '$(Build.BinariesDirectory)'
|
|
|
|
- task: AzureFileCopy@4
|
|
displayName: 'AzureBlob File Copy'
|
|
inputs:
|
|
SourcePath: '$(Build.BinariesDirectory)\*'
|
|
azureSubscription: AIInfraBuildOnnxRuntimeOSS
|
|
Destination: AzureBlob
|
|
storage: onnxruntime
|
|
ContainerName: '$web' |