gh ci: update deprecated actions #53
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] | |
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 |