Skip to content

[Feature] Serialization of market data in protobuf #71

[Feature] Serialization of market data in protobuf

[Feature] Serialization of market data in protobuf #71

Workflow file for this run

name: Special
on:
push:
branches:
- main
pull_request:
jobs:
ubuntu-special-build:
name: Build on Ubuntu with monitoring / protobuf support
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [g++-11]
buildmode: [Debug]
build-special-from-source: [0, 1]
prometheus-options: ["-DBUILD_SHARED_LIBS=ON -DENABLE_PULL=OFF -DENABLE_PUSH=ON -DENABLE_COMPRESSION=OFF -DENABLE_TESTING=OFF"]
steps:
- name: Checkout repository code
uses: actions/checkout@v4
- name: Prerequisites
run: |
sudo apt update
sudo apt install cmake libssl-dev git libcurl4-gnutls-dev ninja-build -y --no-install-recommends
- name: Install prometheus-cpp
run: |
git clone https://github.com/jupp0r/prometheus-cpp.git
cd prometheus-cpp
git submodule init
git submodule update
mkdir _build
cd _build
cmake .. ${{matrix.prometheus-options}} -GNinja
cmake --build .
sudo cmake --install .
if: matrix.build-special-from-source == 0
env:
CXX: ${{matrix.compiler}}
CMAKE_BUILD_TYPE: ${{matrix.buildmode}}
- name: Configure CMake
shell: bash
run: cmake -S . -B build ${{matrix.prometheus-options}} -DCCT_BUILD_PROMETHEUS_FROM_SRC=${{matrix.build-special-from-source}} -DCCT_ENABLE_PROTO=${{matrix.build-special-from-source}} -DCCT_ENABLE_ASAN=OFF -GNinja
env:
CXX: ${{matrix.compiler}}
CMAKE_BUILD_TYPE: ${{matrix.buildmode}}
- name: Build
working-directory: ${{github.workspace}}/build
shell: bash
run: cmake --build .
- name: Tests
working-directory: ${{github.workspace}}/build
shell: bash
run: ctest -j 2 -C ${{matrix.buildmode}} --output-on-failure