commit
ec3c138a83
58 changed files with 457 additions and 89 deletions
@ -1,7 +1,7 @@ |
||||
<!-- This file is generated --> |
||||
<Project> |
||||
<PropertyGroup> |
||||
<GrpcCsharpVersion>1.7.0-dev</GrpcCsharpVersion> |
||||
<GrpcCsharpVersion>1.8.0-dev</GrpcCsharpVersion> |
||||
<GoogleProtobufVersion>3.3.0</GoogleProtobufVersion> |
||||
</PropertyGroup> |
||||
</Project> |
||||
|
@ -0,0 +1,32 @@ |
||||
%YAML 1.2 |
||||
--- | |
||||
<%! |
||||
def grpc_public_headers_no_dir(libs): |
||||
excluded_files = ["include/grpc/support/atm_gcc_sync.h", |
||||
"include/grpc/support/atm_windows.h", |
||||
"include/grpc/support/sync_windows.h", |
||||
"include/grpc/support/tls_gcc.h", |
||||
"include/grpc/support/tls_msvc.h", |
||||
"include/grpc/impl/codegen/atm_gcc_sync.h", |
||||
"include/grpc/impl/codegen/atm_windows.h", |
||||
"include/grpc/impl/codegen/sync_windows.h"] |
||||
out = [] |
||||
for lib in libs: |
||||
if lib.name in ("grpc", "gpr"): |
||||
out += lib.get('public_headers', []) |
||||
out = [f for f in out if f not in excluded_files] |
||||
out = [hdr.split('/', 2)[2] for hdr in out] |
||||
return out |
||||
|
||||
def header_lines(files): |
||||
return ('\n ').join('header "%s"' % f for f in files) |
||||
%> |
||||
framework module grpc { |
||||
umbrella header "grpc.h" |
||||
|
||||
${header_lines(grpc_public_headers_no_dir(libs))} |
||||
|
||||
export * |
||||
module * { export * } |
||||
} |
||||
|
@ -0,0 +1,24 @@ |
||||
# 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. |
||||
|
||||
# Config file for the internal CI (in protobuf text format) |
||||
|
||||
# Location of the continuous shell script in repository. |
||||
build_file: "grpc/tools/internal_ci/linux/grpc_coverage.sh" |
||||
timeout_mins: 420 |
||||
action { |
||||
define_artifacts { |
||||
regex: "github/grpc/reports/**" |
||||
} |
||||
} |
@ -0,0 +1,30 @@ |
||||
#!/usr/bin/env 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 -ex |
||||
|
||||
# Enter the gRPC repo root |
||||
cd $(dirname $0)/../../.. |
||||
|
||||
source tools/internal_ci/helper_scripts/prepare_build_linux_rc |
||||
|
||||
python tools/run_tests/run_tests.py \ |
||||
--use_docker \ |
||||
-t \ |
||||
-l all \ |
||||
-c gcov \ |
||||
-x report.xml \ |
||||
-j 16 |
||||
|
Loading…
Reference in new issue