Update the cli output to be controllable, when possible, and always produce JSON-compliant output by default #956
Workflow file for this run
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
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 |