Skip to content

Client files for Qb2 Firmware v2.1.2-9-29d13504 (17.06.2024) #60

Client files for Qb2 Firmware v2.1.2-9-29d13504 (17.06.2024)

Client files for Qb2 Firmware v2.1.2-9-29d13504 (17.06.2024) #60

Workflow file for this run

name: CMake
on: [push, pull_request]
env:
BUILD_TYPE: Release
jobs:
build:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install debian dependencies
run: sudo apt install -y libgrpc++-dev protobuf-compiler-grpc libprotobuf-dev
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C ${{env.BUILD_TYPE}}