1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
name: test-bench
on:
push:
branches: [master, stable-*]
pull_request:
branches: [master, stable-*]
jobs:
tests:
name: Benchmark ${{ matrix.compiler }}
runs-on: ubuntu-latest
env:
CC: ${{ matrix.compiler }}
strategy:
matrix:
compiler: [clang, gcc]
steps:
- uses: actions/checkout@v4
- name: Configure build
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_COUNTRY_BENCHMARKS=ON ..
- name: Build
run: |
cd build
make
- name: Run benchmarks
run: |
cd build
make benchmarks
|