We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2500427 commit 199b2c7Copy full SHA for 199b2c7
.github/workflows/ci.yml
@@ -64,7 +64,7 @@ jobs:
64
popd
65
66
67
- - name: Build gRPC
+ - name: Build gRPC - CMake
68
run: |
69
CI_SERVER="${{ steps.alloc_nodes.outputs.ci_server }}"
70
@@ -79,7 +79,11 @@ jobs:
79
cmake .. -DCMAKE_INSTALL_PREFIX=$REL_PREFIX -DCMAKE_BUILD_TYPE=Release
80
ssh $CI_SERVER "cd $(pwd) && make -j install"
81
82
- # Test build with bazel
+
83
+ - name: Build gRPC - Bazel
84
+ run: |
85
+ CI_SERVER="${{ steps.alloc_nodes.outputs.ci_server }}"
86
87
ssh $CI_SERVER "cd $(pwd) && CC=$(which gcc) bazel build //:grpc //:grpc++ --enable_bzlmod=false"
88
89
- name: Build Test
0 commit comments