Delia 65017 main #128
Workflow file for this run
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
name: L2-PersistentStore-grpc | |
on: | |
push: | |
paths: | |
- PersistentStore/grpc/** | |
pull_request: | |
paths: | |
- PersistentStore/grpc/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ${{github.repository}} | |
- name: Install cmake, protoc, grpc_cpp_plugin, grpc | |
run: | | |
sudo apt update | |
sudo apt install -y cmake protobuf-compiler protobuf-compiler-grpc libgrpc++-dev | |
- name: Build | |
working-directory: ${{github.workspace}} | |
run: | | |
cmake -S ${GITHUB_REPOSITORY}/PersistentStore/grpc/l2test -B build/grpcl2test -DCMAKE_INSTALL_PREFIX="install/usr" -DCMAKE_CXX_FLAGS="-Wall -Werror" | |
cmake --build build/grpcl2test --target install | |
# (Optional) | |
# Rebuild with real token (here: kToken = "Bearer TOKEN"): | |
# cmake --build build/grpcl2test --target install | |
# Run: | |
# PATH=${PWD}/install/usr/bin:${PATH} LD_LIBRARY_PATH=${PWD}/install/usr/lib:${LD_LIBRARY_PATH} valgrind --tool=memcheck --log-file=valgrind_log --leak-check=yes --show-reachable=yes --track-fds=yes --fair-sched=try grpcl2test |