mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-26 22:35:43 +00:00
### Description windows update python3.11 ### 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. --> --------- Co-authored-by: Ubuntu <chasun@chasunlinux.lw3b1xzoyrkuzm34swpscft0ff.dx.internal.cloudapp.net>
32 lines
No EOL
885 B
YAML
32 lines
No EOL
885 B
YAML
jobs:
|
|
- job: Upload
|
|
workspace:
|
|
clean: all
|
|
pool: 'Win-CPU-2021'
|
|
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' |