Skip to content

update; simple benchmark #3

update; simple benchmark

update; simple benchmark #3

Workflow file for this run

name: t
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and test Debug
run: |
VERBOSE=1 cmake -S . -B b -DCMAKE_BUILD_TYPE=Debug
VERBOSE=1 cmake --build b
cd b
VERBOSE=1 make test
- name: Build Release
run: |
VERBOSE=1 cmake -S . -B r -DCMAKE_BUILD_TYPE=Release
VERBOSE=1 cmake --build r