forked from ryihan/Subrics-Game
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
301 changed files
with
14,377 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright 2020 The gRPC authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -e | ||
|
||
if [ $# -lt 1 ];then | ||
echo "Usage: $0 github-id" | ||
exit 1 | ||
fi | ||
|
||
echo "Change repo manager to $1" | ||
|
||
BASE_PATH=$(dirname $0) | ||
|
||
for file in bug_report.md cleanup_request.md feature_request.md question.md | ||
do | ||
sed -i".bak" -E "s/assignees: ([a-zA-Z0-9-]+)/assignees: $1/" "$BASE_PATH/ISSUE_TEMPLATE/$file" | ||
rm "$BASE_PATH/ISSUE_TEMPLATE/$file.bak" | ||
done | ||
|
||
sed -i".bak" -E "s/^@([a-zA-Z0-9-]+)/@$1/" "$BASE_PATH/pull_request_template.md" | ||
rm "$BASE_PATH/pull_request_template.md.bak" | ||
|
||
echo "Done" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/bin/bash | ||
# Copyright 2020 The gRPC Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Script to upload github archives for bazel dependencies to GCS, creating a reliable mirror link. | ||
# Archives are copied to "grpc-bazel-mirror" GCS bucket (https://console.cloud.google.com/storage/browser/grpc-bazel-mirror?project=grpc-testing) | ||
# and will by downloadable with the https://storage.googleapis.com/grpc-bazel-mirror/ prefix. | ||
# | ||
# This script should be run each time bazel dependencies are updated. | ||
|
||
set -e | ||
|
||
cd $(dirname $0)/.. | ||
|
||
# Create a temp directory to hold the versioned tarball, | ||
# and clean it up when the script exits. | ||
tmpdir="$(mktemp -d)" | ||
function cleanup { | ||
rm -rf "$tmpdir" | ||
} | ||
trap cleanup EXIT | ||
|
||
function upload { | ||
local file="$1" | ||
|
||
if gsutil stat "gs://grpc-bazel-mirror/${file}" > /dev/null | ||
then | ||
echo "Skipping ${file}" | ||
else | ||
echo "Downloading https://${file}" | ||
curl -L --fail --output "${tmpdir}/archive" "https://${file}" | ||
|
||
echo "Uploading https://${file} to https://storage.googleapis.com/grpc-bazel-mirror/${file}" | ||
gsutil cp "${tmpdir}/archive" "gs://grpc-bazel-mirror/${file}" | ||
|
||
rm -rf "${tmpdir}/archive" | ||
fi | ||
} | ||
|
||
# How to check that all mirror URLs work: | ||
# 1. clean $HOME/.cache/bazel | ||
# 2. bazel clean --expunge | ||
# 3. bazel sync (failed downloads will print warnings) | ||
|
||
# A specific link can be upload manually by running e.g. | ||
# upload "github.com/google/boringssl/archive/1c2769383f027befac5b75b6cedd25daf3bf4dcf.tar.gz" | ||
|
||
# bazel binaries used by the tools/bazel wrapper script | ||
upload github.com/bazelbuild/bazel/releases/download/1.0.0/bazel-1.0.0-linux-x86_64 | ||
upload github.com/bazelbuild/bazel/releases/download/1.0.0/bazel-1.0.0-darwin-x86_64 | ||
upload github.com/bazelbuild/bazel/releases/download/1.0.0/bazel-1.0.0-windows-x86_64.exe | ||
|
||
upload github.com/bazelbuild/bazel/releases/download/2.2.0/bazel-2.2.0-linux-x86_64 | ||
upload github.com/bazelbuild/bazel/releases/download/2.2.0/bazel-2.2.0-darwin-x86_64 | ||
upload github.com/bazelbuild/bazel/releases/download/2.2.0/bazel-2.2.0-windows-x86_64.exe | ||
|
||
upload github.com/bazelbuild/bazel/releases/download/3.7.1/bazel-3.7.1-linux-x86_64 | ||
upload github.com/bazelbuild/bazel/releases/download/3.7.1/bazel-3.7.1-darwin-x86_64 | ||
upload github.com/bazelbuild/bazel/releases/download/3.7.1/bazel-3.7.1-windows-x86_64.exe | ||
|
||
upload github.com/bazelbuild/bazel/releases/download/4.2.1/bazel-4.2.1-linux-x86_64 | ||
upload github.com/bazelbuild/bazel/releases/download/4.2.1/bazel-4.2.1-darwin-x86_64 | ||
upload github.com/bazelbuild/bazel/releases/download/4.2.1/bazel-4.2.1-windows-x86_64.exe | ||
|
||
# Collect the github archives to mirror from grpc_deps.bzl | ||
grep -o '"https://github.com/[^"]*"' bazel/grpc_deps.bzl | sed 's/^"https:\/\///' | sed 's/"$//' | while read -r line ; do | ||
echo "Updating mirror for ${line}" | ||
upload "${line}" | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
# Copyright 2017 gRPC authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -e | ||
|
||
cd $(dirname $0)/../.. | ||
|
||
# protoc and grpc_*_plugin binaries can be obtained by running | ||
# $ bazel build @com_google_protobuf//:protoc //src/compiler:all | ||
PROTOC=bazel-bin/external/com_google_protobuf/protoc | ||
PLUGIN=protoc-gen-grpc=bazel-bin/src/compiler/grpc_php_plugin | ||
|
||
$PROTOC --proto_path=examples/protos \ | ||
--php_out=examples/php \ | ||
--grpc_out=generate_server:examples/php \ | ||
--plugin=$PLUGIN examples/protos/helloworld.proto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
# Copyright 2015 gRPC authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -e | ||
|
||
cd $(dirname $0)/../../.. | ||
|
||
# protoc and grpc_*_plugin binaries can be obtained by running | ||
# $ bazel build @com_google_protobuf//:protoc //src/compiler:all | ||
PROTOC=bazel-bin/external/com_google_protobuf/protoc | ||
PLUGIN=protoc-gen-grpc=bazel-bin/src/compiler/grpc_php_plugin | ||
|
||
$PROTOC --proto_path=examples/protos \ | ||
--php_out=examples/php/route_guide \ | ||
--grpc_out=generate_server:examples/php/route_guide \ | ||
--plugin=$PLUGIN examples/protos/route_guide.proto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
# Copyright 2015 gRPC authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -e | ||
cd $(dirname $0) | ||
php -d extension=grpc.so -d max_execution_time=300 \ | ||
route_guide_client.php \ | ||
../../node/static_codegen/route_guide/route_guide_db.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
# Copyright 2015 gRPC authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -e | ||
cd $(dirname $0) | ||
php -d extension=grpc.so -d max_execution_time=300 \ | ||
greeter_client.php $1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#!/bin/bash | ||
# Copyright 2020 The gRPC Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -ex | ||
|
||
cd "$(dirname "$0")" | ||
|
||
mkdir -p ../../artifacts | ||
|
||
# Collect the artifacts built by the previous build step | ||
mkdir -p nativelibs | ||
cp -r "${EXTERNAL_GIT_ROOT}"/input_artifacts/csharp_ext_* nativelibs || true | ||
|
||
# Collect protoc artifacts built by the previous build step | ||
mkdir -p protoc_plugins | ||
cp -r "${EXTERNAL_GIT_ROOT}"/input_artifacts/protoc_* protoc_plugins || true | ||
|
||
# Add current timestamp to dev nugets | ||
./expand_dev_version.sh | ||
|
||
dotnet restore Grpc.sln | ||
|
||
# To be able to build the Grpc.Core project, we also need to put grpc_csharp_ext to where Grpc.Core.csproj | ||
# expects it. | ||
mkdir -p ../../cmake/build | ||
cp nativelibs/csharp_ext_linux_x64/libgrpc_csharp_ext.so ../../cmake/build | ||
|
||
dotnet pack --configuration Release Grpc.Core.Api --output ../../../artifacts | ||
dotnet pack --configuration Release Grpc.Core --output ../../../artifacts | ||
dotnet pack --configuration Release Grpc.Core.Testing --output ../../../artifacts | ||
dotnet pack --configuration Release Grpc.Auth --output ../../../artifacts | ||
dotnet pack --configuration Release Grpc.HealthCheck --output ../../../artifacts | ||
dotnet pack --configuration Release Grpc.Reflection --output ../../../artifacts | ||
dotnet pack --configuration Release Grpc.Tools --output ../../../artifacts | ||
# rem build auxiliary packages | ||
dotnet pack --configuration Release Grpc --output ../../../artifacts | ||
dotnet pack --configuration Release Grpc.Core.NativeDebug --output ../../../artifacts | ||
dotnet pack --configuration Release Grpc.Core.Xamarin --output ../../../artifacts | ||
|
||
# Create a zipfile with all the nugets we just created | ||
cd ../../artifacts | ||
zip csharp_nugets_windows_dotnetcli.zip *.nupkg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#!/bin/bash | ||
# Copyright 2020 The gRPC Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -ex | ||
|
||
cd "$(dirname "$0")" | ||
|
||
mkdir -p ../../artifacts | ||
|
||
# Collect the artifacts built by the previous build step | ||
mkdir -p nativelibs | ||
cp -r "${EXTERNAL_GIT_ROOT}"/input_artifacts/csharp_ext_* nativelibs || true | ||
|
||
# Add current timestamp to dev nugets | ||
./expand_dev_version.sh | ||
|
||
# Extract current Grpc.Core version from build/dependencies.props | ||
UNITYPACKAGE_VERSION="$(grep -o '<GrpcCsharpVersion>.*</GrpcCsharpVersion>' build/dependencies.props | sed 's/<GrpcCsharpVersion>//' | sed 's/<\/GrpcCsharpVersion>//')" | ||
|
||
dotnet restore Grpc.sln | ||
|
||
# To be able to build the Grpc.Core project, we also need to put grpc_csharp_ext to where Grpc.Core.csproj | ||
# expects it. | ||
mkdir -p ../../cmake/build | ||
cp nativelibs/csharp_ext_linux_x64/libgrpc_csharp_ext.so ../../cmake/build | ||
|
||
dotnet build --configuration Release Grpc.Core | ||
# build HealthCheck to get hold of Google.Protobuf.dll assembly | ||
dotnet build --configuration Release Grpc.HealthCheck | ||
|
||
# copy Grpc assemblies to the unity package skeleton | ||
# TODO(jtattermusch): Add Grpc.Auth assembly and its dependencies | ||
cp Grpc.Core.Api/bin/Release/net45/Grpc.Core.Api.dll unitypackage/unitypackage_skeleton/Plugins/Grpc.Core.Api/lib/net45/Grpc.Core.Api.dll | ||
cp Grpc.Core.Api/bin/Release/net45/Grpc.Core.Api.pdb unitypackage/unitypackage_skeleton/Plugins/Grpc.Core.Api/lib/net45/Grpc.Core.Api.pdb | ||
cp Grpc.Core.Api/bin/Release/net45/Grpc.Core.Api.xml unitypackage/unitypackage_skeleton/Plugins/Grpc.Core.Api/lib/net45/Grpc.Core.Api.xml | ||
cp Grpc.Core/bin/Release/net45/Grpc.Core.dll unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/lib/net45/Grpc.Core.dll | ||
cp Grpc.Core/bin/Release/net45/Grpc.Core.pdb unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/lib/net45/Grpc.Core.pdb | ||
cp Grpc.Core/bin/Release/net45/Grpc.Core.xml unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/lib/net45/Grpc.Core.xml | ||
|
||
# copy desktop native libraries to the unity package skeleton | ||
cp nativelibs/csharp_ext_linux_x64/libgrpc_csharp_ext.so unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/linux/x64/libgrpc_csharp_ext.so | ||
cp nativelibs/csharp_ext_macos_x64/libgrpc_csharp_ext.dylib unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/osx/x64/grpc_csharp_ext.bundle | ||
cp nativelibs/csharp_ext_windows_x86/grpc_csharp_ext.dll unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/win/x86/grpc_csharp_ext.dll | ||
cp nativelibs/csharp_ext_windows_x64/grpc_csharp_ext.dll unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/win/x64/grpc_csharp_ext.dll | ||
|
||
# add Android and iOS native libraries | ||
cp 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 | ||
cp 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 | ||
cp nativelibs/csharp_ext_linux_android_x86/libgrpc_csharp_ext.so unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/android/x86/libgrpc_csharp_ext.so | ||
cp nativelibs/csharp_ext_macos_ios/libgrpc_csharp_ext.a unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/ios/libgrpc_csharp_ext.a | ||
cp nativelibs/csharp_ext_macos_ios/libgrpc.a unitypackage/unitypackage_skeleton/Plugins/Grpc.Core/runtimes/ios/libgrpc.a | ||
|
||
# add gRPC dependencies | ||
# TODO(jtattermusch): also include XMLdoc | ||
cp Grpc.Core/bin/Release/net45/System.Runtime.CompilerServices.Unsafe.dll unitypackage/unitypackage_skeleton/Plugins/System.Runtime.CompilerServices.Unsafe/lib/net45/System.Runtime.CompilerServices.Unsafe.dll | ||
cp Grpc.Core/bin/Release/net45/System.Buffers.dll unitypackage/unitypackage_skeleton/Plugins/System.Buffers/lib/net45/System.Buffers.dll | ||
cp Grpc.Core/bin/Release/net45/System.Memory.dll unitypackage/unitypackage_skeleton/Plugins/System.Memory/lib/net45/System.Memory.dll | ||
|
||
# add Google.Protobuf | ||
# TODO(jtattermusch): also include XMLdoc | ||
cp Grpc.HealthCheck/bin/Release/net45/Google.Protobuf.dll unitypackage/unitypackage_skeleton/Plugins/Google.Protobuf/lib/net45/Google.Protobuf.dll | ||
|
||
# create a zipfile that will act as a Unity package | ||
pushd unitypackage/unitypackage_skeleton | ||
zip -r ../../grpc_unity_package.zip Plugins | ||
popd | ||
|
||
cp grpc_unity_package.zip ../../artifacts/grpc_unity_package.${UNITYPACKAGE_VERSION}.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#!/bin/sh | ||
# Copyright 2018 The gRPC Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Generates C# API docs using docfx inside docker. | ||
set -ex | ||
cd $(dirname $0) | ||
|
||
# cleanup temporary files | ||
rm -rf html obj grpc-gh-pages | ||
|
||
# generate into src/csharp/docfx/html directory | ||
cd .. | ||
docker run --rm -v "$(pwd)":/work -w /work/docfx --user "$(id -u):$(id -g)" -it tsgkadot/docker-docfx:latest docfx | ||
cd docfx | ||
|
||
# prepare a clone of "gh-pages" branch where the generated docs are stored | ||
GITHUB_USER="${USER}" | ||
git clone -b gh-pages -o upstream git@github.com:grpc/grpc.git grpc-gh-pages | ||
cd grpc-gh-pages | ||
git remote add origin "git@github.com:${GITHUB_USER}/grpc.git" | ||
|
||
# replace old generated docs by the ones we just generated | ||
rm -r csharp | ||
cp -r ../html csharp | ||
|
||
echo "Done. Go to src/csharp/docfx/grpc-gh-pages git repository and create a pull request to update the generated docs." |
Oops, something went wrong.