Skip to content

Commit

Permalink
Added github action for regression tests
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrízio de Royes Mello <fabrizio@ongres.com>
  • Loading branch information
fabriziomello committed Sep 18, 2024
1 parent 8caecb5 commit 895486d
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
name: Run extension Regression Tests

on: [push, pull_request, workflow_dispatch]

jobs:

opentelemetry-cpp:
name: OpenTelemetry C++ SDK
runs-on: ubuntu-latest

steps:
- name: Checkout gRPC C++ SDK
uses: actions/checkout@v4
with:
repository: grpc/grpc
ref: v1.62.0
path: grpc
fetch-depth: 2
submodules: 'recursive'

- name: Install build dependencies
run: |
sudo apt-get update -y
sudo apt-get install --no-install-recommends --no-install-suggests -y \
build-essential bison flex zlib1g-dev libreadline-dev
- name: Build gRPC C++ SDK
run: |
cd grpc
mkdir -p cmake/build
pushd cmake/build
cmake -DgRPC_INSTALL=ON \
-DgRPC_BUILD_TESTS=OFF \
-DCMAKE_INSTALL_PREFIX=/usr/local \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_CXX_STANDARD=17 \
-DABSL_PROPAGATE_CXX_STD=ON \
../..
make -j
sudo make -j install
popd
sudo ldconfig

0 comments on commit 895486d

Please sign in to comment.