8000 back to the full failing test demonstrating the problem · uber/h3@d97b939 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Test for compacting all res 1 cells #886

Test for compacting all res 1 cells

Test for compacting all res 1 cells #886

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/checkout@v2.4.0
- 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
0