Skip to content

cmake: add android configs to presets #55

cmake: add android configs to presets

cmake: add android configs to presets #55

Workflow file for this run

# Copyright (c) Borislav Stanimirov
# SPDX-License-Identifier: MIT
#
name: Benchmark
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
benchmark:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Clone
uses: actions/checkout@v4
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@v5
- name: Configure
run: cmake --preset release -B build
- name: Unicast messages
run: cmake --build build --target run-bench-dynamix-msg-unicast
- name: Multicast messages
run: cmake --build build --target run-bench-dynamix-msg-multicast
- name: Type Creation
run: cmake --build build --target run-bench-dynamix-type-creation