mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-31 23:27:43 +00:00
This reverts commit 1601650161.
This commit is contained in:
parent
ec3c553501
commit
258ff06e42
2 changed files with 1 additions and 27 deletions
|
|
@ -91,13 +91,7 @@ jobs:
|
|||
cd $cwd
|
||||
|
||||
- job: NuGet_Packaging
|
||||
pool:
|
||||
name: Hosted Windows 2019 with VS2019
|
||||
# AzureFileCopy@3 task has some bug that it depends on a particular version of azure power shell,
|
||||
# which is not available in OnnxRuntime build VMs, but available in the latest hosted agents.
|
||||
# So, all the copy/publish jobs are being run on hosted agent
|
||||
# TODO: install the desired azureps on our VMs or use later bugfixed version of AzureFileCopy
|
||||
demands: azureps
|
||||
pool: $(AgentPoolWin)
|
||||
dependsOn:
|
||||
- Windows_CI_Dev
|
||||
- Windows_CI_Dev_x86
|
||||
|
|
@ -156,17 +150,4 @@ jobs:
|
|||
artifactName: 'drop-signed-nuget'
|
||||
targetPath: '$(Build.ArtifactStagingDirectory)'
|
||||
|
||||
- template: ../../templates/set-version-number-variables-step.yml
|
||||
- task: AzureFileCopy@3
|
||||
displayName: 'Copy Signed NuGet Package to Blob Store'
|
||||
condition: ${{ parameters.DoEsrp }}
|
||||
inputs:
|
||||
SourcePath: '$(Build.ArtifactStagingDirectory)/Microsoft.ML.OnnxRuntime.$(OnnxRuntimeVersion)-dev-$(OnnxRuntimeGitCommitHashShort).nupkg'
|
||||
azureSubscription: 'AI Infra Build (00c06639-6ee4-454e-8058-8d8b1703bd87)'
|
||||
Destination: AzureBlob
|
||||
storage: ortpackages
|
||||
ContainerName: ortpackages
|
||||
|
||||
- template: test_all_os.yml
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -12,10 +12,6 @@ steps:
|
|||
FOR /F "tokens=* USEBACKQ" %%F IN (`git rev-parse HEAD`) DO (
|
||||
@echo ##vso[task.setvariable variable=OnnxRuntimeGitCommitHash;]%%F
|
||||
)
|
||||
|
||||
FOR /F "tokens=* USEBACKQ" %%F IN (`git rev-parse --short HEAD`) DO (
|
||||
@echo ##vso[task.setvariable variable=OnnxRuntimeGitCommitHashShort;]%%F
|
||||
)
|
||||
|
||||
workingDirectory: '$(Build.SourcesDirectory)'
|
||||
condition: eq(variables['Agent.OS'], 'Windows_NT')
|
||||
|
|
@ -30,8 +26,5 @@ steps:
|
|||
_OnnxRuntimeGitCommitHash=$(git rev-parse HEAD)
|
||||
echo "##vso[task.setvariable variable=OnnxRuntimeGitCommitHash;]$_OnnxRuntimeGitCommitHash"
|
||||
|
||||
_OnnxRuntimeGitCommitHash=$(git rev-parse --short=8 HEAD)
|
||||
echo "##vso[task.setvariable variable=OnnxRuntimeGitCommitHashShort;]$_OnnxRuntimeGitCommitHash"
|
||||
|
||||
workingDirectory: '$(Build.SourcesDirectory)'
|
||||
condition: not(eq(variables['Agent.OS'], 'Windows_NT'))
|
||||
Loading…
Reference in a new issue