onnxruntime/tools/ci_build/github/azure-pipelines/nuget/templates/set-test-data-variables-step.yml
Ashwini Khade 4caf5c9c13
add additional test data set for nuget pipeline (#2448)
* add SAS token to download internal test data for nuget pipeline

* update azure endpoint

* fix keyvault download step

* fix variable declaration for secret group

* fix indentation

* fix yaml syntax for variables

* fix setting secrets for script

* fix env synctax

* Fix macos pipeline

* attempt to add secrets to windows download data

* fix mac and win data download

* fix windows data download

* update test data set url and location
2019-11-25 13:08:03 -08:00

11 lines
317 B
YAML

# sets variables $(TestDataUrl)
parameters:
TestDataUrl: https://ortinternaltestdata.blob.core.windows.net/models/20191122.zip
steps:
- task: CmdLine@1
displayName: 'Set TestDataUrl variable'
inputs:
filename: echo
arguments: '##vso[task.setvariable variable=TestDataUrl;]${{parameters.TestDataUrl}}'