gh ci: here we go again... try removing the explicit toolchain #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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] | |
defaults: | |
run: | |
working-directory: ci | |
steps: | |
- name: Clone | |
uses: actions/checkout@v3 | |
- name: Configure | |
run: cmake .. -DCMAKE_BUILD_TYPE=Release | |
- name: Unicast messages | |
run: cmake --build . --config Release --target run-bench-dynamix-msg-unicast | |
- name: Multicast messages | |
run: cmake --build . --config Release --target run-bench-dynamix-msg-multicast | |
- name: Type Creation | |
run: cmake --build . --config Release --target run-bench-dynamix-type-creation |