diff options
author | wtgodbe <wigodbe@microsoft.com> | 2017-08-28 13:14:52 -0700 |
---|---|---|
committer | wtgodbe <wigodbe@microsoft.com> | 2017-10-10 17:31:48 -0700 |
commit | 978a6dc612e3ccbeb5222df24971f0ba70518aff (patch) | |
tree | fe2f8908d730ef4c29ccc271a0e5f1f76aba299b /publish-packages.sh | |
parent | 4c2e60f9fe57e1401410df9ee55dde673e11ff7e (diff) | |
download | coreclr-978a6dc612e3ccbeb5222df24971f0ba70518aff.tar.gz coreclr-978a6dc612e3ccbeb5222df24971f0ba70518aff.tar.bz2 coreclr-978a6dc612e3ccbeb5222df24971f0ba70518aff.zip |
Proof-of-concept of using new Publish infra in coreclr
Diffstat (limited to 'publish-packages.sh')
-rwxr-xr-x | publish-packages.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/publish-packages.sh b/publish-packages.sh index 0827a65944..1d0f13b296 100755 --- a/publish-packages.sh +++ b/publish-packages.sh @@ -8,6 +8,9 @@ usage() echo " -AzureToken=\"access token\"" echo " -BuildType=\"Configuration\"" echo " -BuildArch=\"Architecture\"" + echo "For publishing to Azure, one of the following properties is required." + echo " -PublishPackages Pass this switch to publish product packages" + echo " -PublishSymbols Pass this switch to publish symbol packages" echo "To specify the name of the container to publish into, use the following property:" echo " -Container=\"container name\"" echo "To specify the OS you're building for, use the following property:" @@ -20,7 +23,6 @@ usage() working_tree_root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" $working_tree_root/run.sh publish-packages -BuildOS $* -$working_tree_root/run.sh publish-packages -BuildOS -PublishTestNativeBins $* if [ $? -ne 0 ] then echo "ERROR: An error occurred while publishing packages; see $working_tree_root/publish-packages.log for more details. There may have been networking problems, so please try again in a few minutes." |