Revert "[ARM32/Linux] Copy tests.zip only for CI test and use x86 unittest"
[platform/upstream/coreclr.git] / publish-packages.cmd
1 @if not defined _echo @echo off
2 setlocal EnableDelayedExpansion
3
4 if /I [%1] == [-?] goto Usage
5 if /I [%1] == [-help] goto Usage
6
7 echo %~dp0run.cmd publish-packages %*
8 call %~dp0run.cmd publish-packages %*
9 @exit /b %ERRORLEVEL%
10
11 :Usage
12 echo.
13 echo Publishes the NuGet packages to the specified location.
14 echo   -?     - Prints Usage
15 echo   -help  - Prints Usage
16 echo For publishing to Azure the following properties are required.
17 echo   -AzureAccount="account name"
18 echo   -AzureToken="access token"
19 echo   -BuildType="Configuration"
20 echo   -BuildArch="Architecture"
21 echo To specify the name of the container to publish into, use the following property:
22 echo   -Container="container name"
23 echo Architecture can be x64, x86, arm, or arm64
24 echo Configuration can be Release, Debug, or Checked
25 exit /b