Skip to content

Docs: bacaro_get returns ENOTFOUND until dispatch processes snapshot … #26

Docs: bacaro_get returns ENOTFOUND until dispatch processes snapshot …

Docs: bacaro_get returns ENOTFOUND until dispatch processes snapshot … #26

Workflow file for this run

name: CI (Clang)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-and-test:
name: Clang / ${{ matrix.build_type }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
build_type: [ Debug, Release ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update --ignore-missing || true && sudo apt-get install -y pkg-config libzmq3-dev clang
- name: Cache CMake build
uses: actions/cache@v4
with:
path: build
key: ${{ runner.os }}-clang-${{ matrix.build_type }}-${{ hashFiles('CMakeLists.txt') }}
restore-keys: |
${{ runner.os }}-clang-${{ matrix.build_type }}-
- name: Configure
run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++
- name: Build
run: cmake --build build --parallel
- name: Test
run: ctest --test-dir build --output-on-failure