blob: 492fa462a2368629642c0439f7b4498bfc24bf3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
#!/usr/bin/env bash
usage()
{
echo "Publishes the NuGet packages to the specified location."
echo "For publishing to Azure the following properties are required."
echo " -AzureAccount=\"account name\""
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:"
echo " -DistroRiD=\"RID\""
echo "Configuration can be Release, Checked, or Debug"
echo "Architecture can be x64, x86, arm, or arm64"
exit 1
}
working_tree_root="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
# Use uname to determine what the OS is.
OSName=$(uname -s)
case $OSName in
Linux)
__BuildOS=Linux
;;
Darwin)
__BuildOS=OSX
;;
FreeBSD)
__BuildOS=FreeBSD
;;
OpenBSD)
__BuildOS=OpenBSD
;;
NetBSD)
__BuildOS=NetBSD
;;
SunOS)
__BuildOS=SunOS
;;
*)
echo "Unsupported OS $OSName detected, configuring as if for Linux"
__BuildOS=Linux
;;
esac
buildArgs=
unprocessedBuildArgs=
# TODO: get rid of argument processing entirely once we remove the
# uses of -Arg=Value style in buildpipeline.
while :; do
if [ $# -le 0 ]; then
break
fi
case "$1" in
-\?|-h|--help)
usage
exit 1
;;
-AzureAccount=*)
__Account=$(echo $1| cut -d'=' -f 2)
buildArgs="$buildArgs /p:CloudDropAccountName=$__Account"
;;
-AzureToken=*)
__Token=${1:12}
buildArgs="$buildArgs /p:CloudDropAccessToken=$__Token"
;;
-BuildType=*)
__Type=$(echo $1| cut -d'=' -f 2)
buildArgs="$buildArgs /p:__BuildType=$__Type"
;;
-BuildArch=*)
__Arch=$(echo $1| cut -d'=' -f 2)
buildArgs="$buildArgs /p:__BuildArch=$__Arch"
;;
-Container=*)
__Container=$(echo $1| cut -d'=' -f 2)
buildArgs="$buildArgs /p:ContainerName=$__Container"
;;
-distroRid=*)
__Rid=$(echo $1| cut -d'=' -f 2)
buildArgs="$buildArgs /p:__DistroRid=$__Rid"
;;
-PublishPackages)
buildArgs="$buildArgs /p:__PublishPackages=true"
;;
-PublishSymbols)
buildArgs="$buildArgs /p:__PublishSymbols=true"
;;
-PublishTestNativeBins)
buildArgs="$buildArgs /p:PublishTestNativeBins=true"
;;
--)
;;
*)
unprocessedBuildArgs="$unprocessedBuildArgs $1"
esac
shift
done
$working_tree_root/dotnet.sh msbuild /nologo /verbosity:minimal /clp:Summary \
./src/publish.proj \
/flp:v=detailed\;LogFile=publish-packages.log /clp:v=detailed \
/p:__BuildOS=$__BuildOS $buildArgs $unprocessedBuildArgs
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."
exit 1
fi
echo "Publish completed successfully."
exit 0
|