Skip to content

Redesign the website homepage #811

Redesign the website homepage

Redesign the website homepage #811

Workflow file for this run

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/[email protected]
- 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