Skip to content

gRPC C++ Example

gRPC C++ Example #1

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Build & Test gRPC C++ example
on:
pull_request:
branches:
- "*"
push:
branches:
- "master"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: hindicator/grpc-setup@v1
with:
grpc-version: 1.60.0
- name: Build gRPC C++ example
run: |
cd example
mkdir -p build
cd build
cmake -DCMAKE_PREFIX_PATH="$GRPC_ROOT" ..
make