Skip to content

Commit 199b2c7

Browse files
committed
Fix CI
1 parent 2500427 commit 199b2c7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
popd
6565
popd
6666
67-
- name: Build gRPC
67+
- name: Build gRPC - CMake
6868
run: |
6969
CI_SERVER="${{ steps.alloc_nodes.outputs.ci_server }}"
7070
@@ -79,7 +79,11 @@ jobs:
7979
cmake .. -DCMAKE_INSTALL_PREFIX=$REL_PREFIX -DCMAKE_BUILD_TYPE=Release
8080
ssh $CI_SERVER "cd $(pwd) && make -j install"
8181
popd
82-
# Test build with bazel
82+
83+
- name: Build gRPC - Bazel
84+
run: |
85+
CI_SERVER="${{ steps.alloc_nodes.outputs.ci_server }}"
86+
8387
ssh $CI_SERVER "cd $(pwd) && CC=$(which gcc) bazel build //:grpc //:grpc++ --enable_bzlmod=false"
8488
8589
- name: Build Test

0 commit comments

Comments
 (0)