• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1%YAML 1.2
2--- |
3  @rem Copyright 2018 The gRPC Authors
4  @rem
5  @rem Licensed under the Apache License, Version 2.0 (the "License");
6  @rem you may not use this file except in compliance with the License.
7  @rem You may obtain a copy of the License at
8  @rem
9  @rem     http://www.apache.org/licenses/LICENSE-2.0
10  @rem
11  @rem Unless required by applicable law or agreed to in writing, software
12  @rem distributed under the License is distributed on an "AS IS" BASIS,
13  @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  @rem See the License for the specific language governing permissions and
15  @rem limitations under the License.
16
17  @rem Current package versions
18  set VERSION=${settings.csharp_version}
19
20  @rem Adjust the location of nuget.exe
21  set NUGET=C:\nuget\nuget.exe
22  set DOTNET=dotnet
23
24  mkdir ..\..\artifacts
25
26  @rem Collect the artifacts built by the previous build step
27  mkdir nativelibs
28  powershell -Command "cp -r ..\..\input_artifacts\csharp_ext_* nativelibs"
29
30  @rem Collect protoc artifacts built by the previous build step
31  mkdir protoc_plugins
32  powershell -Command "cp -r ..\..\input_artifacts\protoc_* protoc_plugins"
33
34  %%DOTNET% restore Grpc.sln || goto :error
35
36  @rem To be able to build, we also need to put grpc_csharp_ext to its normal location
37  xcopy /Y /I nativelibs\csharp_ext_windows_x64\grpc_csharp_ext.dll ..\..\cmake\build\x64\Release${"\\"}
38
39  %%DOTNET% build --configuration Release Grpc.Core || goto :error
40  @rem build HealthCheck to get hold of Google.Protobuf.dll assembly
41  %%DOTNET% build --configuration Release Grpc.HealthCheck || goto :error
42
43  @rem copy Grpc assemblies to the unity package skeleton
44  @rem TODO(jtattermusch): Add Grpc.Auth assembly and its dependencies
45  copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\lib\net45\Grpc.Core.dll || goto :error
46  copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.pdb unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\lib\net45\Grpc.Core.pdb || goto :error
47  copy /Y Grpc.Core\bin\Release\net45\Grpc.Core.xml unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\lib\net45\Grpc.Core.xml || goto :error
48
49  @rem copy desktop native libraries to the unity package skeleton
50  copy /Y nativelibs\csharp_ext_linux_x86\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\linux\x86\libgrpc_csharp_ext.so || goto :error
51  copy /Y nativelibs\csharp_ext_linux_x64\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\linux\x64\libgrpc_csharp_ext.so || goto :error
52  copy /Y nativelibs\csharp_ext_macos_x86\libgrpc_csharp_ext.dylib unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\osx\x86\grpc_csharp_ext.bundle || goto :error
53  copy /Y nativelibs\csharp_ext_macos_x64\libgrpc_csharp_ext.dylib unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\osx\x64\grpc_csharp_ext.bundle || goto :error
54  copy /Y nativelibs\csharp_ext_windows_x86\grpc_csharp_ext.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\win\x86\grpc_csharp_ext.dll || goto :error
55  copy /Y nativelibs\csharp_ext_windows_x64\grpc_csharp_ext.dll unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\win\x64\grpc_csharp_ext.dll || goto :error
56
57  @rem add Android and iOS native libraries
58  copy /Y nativelibs\csharp_ext_linux_android_armeabi-v7a\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\android\armeabi-v7a\libgrpc_csharp_ext.so || goto :error
59  copy /Y nativelibs\csharp_ext_linux_android_arm64-v8a\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\android\arm64-v8a\libgrpc_csharp_ext.so || goto :error
60  copy /Y nativelibs\csharp_ext_linux_android_x86\libgrpc_csharp_ext.so unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\android\x86\libgrpc_csharp_ext.so || goto :error
61  copy /Y nativelibs\csharp_ext_macos_ios\libgrpc_csharp_ext.a unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\ios\libgrpc_csharp_ext.a || goto :error
62  copy /Y nativelibs\csharp_ext_macos_ios\libgrpc.a unitypackage\unitypackage_skeleton\Plugins\Grpc.Core\runtimes\ios\libgrpc.a || goto :error
63
64  @rem add gRPC dependencies
65  @rem TODO(jtattermusch): also include XMLdoc
66  copy /Y Grpc.Core\bin\Release\net45\System.Interactive.Async.dll unitypackage\unitypackage_skeleton\Plugins\System.Interactive.Async\lib\net45\System.Interactive.Async.dll || goto :error
67
68  @rem add Google.Protobuf
69  @rem TODO(jtattermusch): also include XMLdoc
70  copy /Y Grpc.HealthCheck\bin\Release\net45\Google.Protobuf.dll unitypackage\unitypackage_skeleton\Plugins\Google.Protobuf\lib\net45\Google.Protobuf.dll || goto :error
71
72  @rem create a zipfile that will act as a Unity package
73  cd unitypackage\unitypackage_skeleton
74  zip -r ..\..\grpc_unity_package.zip Plugins
75  cd ..\..
76  copy /Y grpc_unity_package.zip ..\..\artifacts\grpc_unity_package.%VERSION%.zip || goto :error
77
78  goto :EOF
79
80  :error
81  echo Failed!
82  exit /b %errorlevel%
83