-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into grpc-js_priority_load_balancer
- Loading branch information
Showing
384 changed files
with
1,302 additions
and
30,033 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,72 @@ | ||
name: grpc-tools Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
linux_build: | ||
name: Linux grpc-tools Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Build | ||
run: | | ||
docker build -t kokoro-native-image tools/release/native | ||
docker run -v /var/run/docker.sock:/var/run/docker.sock -v $GITHUB_WORKSPACE:$GITHUB_WORKSPACE kokoro-native-image $GITHUB_WORKSPACE/packages/grpc-tools/build_binaries.sh | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: grpc-tools_linux | ||
path: artifacts/ | ||
macos_build: | ||
name: Macos grpc-tools Build | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Build | ||
run: packages/grpc-tools/build_binaries.sh | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: grpc-tools_macos | ||
path: artifacts/ | ||
windows_build: | ||
name: Windows grpc-tools Build | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
arch: [ia32, x64] | ||
env: | ||
ARCH: ${{matrix.arch}} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
- name: Build | ||
run: powershell -File ./packages/grpc-tools/build_binaries.ps1 | ||
shell: cmd | ||
- uses: actions/upload-artifact@v1 | ||
with: | ||
name: grpc-tools_windows_${{matrix.arch}} | ||
path: artifacts/ | ||
combine_artifacts: | ||
name: Combine grpc-tools artifacts | ||
runs-on: ubuntu-latest | ||
needs: [linux_build, macos_build, windows_build] | ||
steps: | ||
- uses: actions/download-artifact@v2 | ||
- name: Copy | ||
run: | | ||
mkdir artifacts | ||
cp -r ./**/* artifacts/ | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: combined-artifacts | ||
path: artifacts/ |
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 |
---|---|---|
|
@@ -11,8 +11,6 @@ yarn.lock | |
\#*\# | ||
.\#* | ||
|
||
packages/grpc-native-core/src/node/ | ||
|
||
.nyc_output/ | ||
reports/ | ||
|
||
|
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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[submodule "packages/grpc-native-core/deps/grpc"] | ||
path = packages/grpc-native-core/deps/grpc | ||
url = https://github.com/grpc/grpc.git | ||
[submodule "packages/grpc-tools/deps/protobuf"] | ||
path = packages/grpc-tools/deps/protobuf | ||
url = https://github.com/protocolbuffers/protobuf |
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ For a comparison of the features available in these two libraries, see [this doc | |
|
||
### C-based Client and Server | ||
|
||
Directory: [`packages/grpc-native-core`](https://github.com/grpc/grpc-node/tree/master/packages/grpc-native-core) (see here for installation information) | ||
Directory: [`packages/grpc-native-core`](https://github.com/grpc/grpc-node/tree/[email protected]/packages/grpc-native-core) (lives in the `[email protected]` branch) (see here for installation information) | ||
|
||
npm package: [grpc](https://www.npmjs.com/package/grpc). | ||
|
||
|
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
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
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
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
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
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
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
Oops, something went wrong.