Benchmarks are working, but empty

Lots of work and stress for a tint bit of progress.

See #131
This commit is contained in:
2024-10-19 15:57:07 +11:00
parent 787a1cca84
commit 5d37d06343
10 changed files with 159 additions and 1 deletions

24
.github/workflows/benchmarks.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Benchmarks
#trigger when these occur
on:
workflow_dispatch:
#Benchmarks are currently only supported on one platform
jobs:
run-test-cases:
continue-on-error: true
strategy:
matrix:
platforms:
- { os: ubuntu-latest, preinstall: sudo apt-get install time }
commands:
- { exec: make -C tests/benchmarks -k }
runs-on: ${{ matrix.platforms.os }}
steps:
- uses: actions/checkout@v4
- name: Preinstall dependencies
run: ${{ matrix.platforms.preinstall }}
- name: run the tests
run: ${{ matrix.commands.exec }}