temporary benchmarks wf #2
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: coverage | |
on: | |
push: | |
jobs: | |
# test the crate | |
row-format-bench: | |
name: Row format bench | |
runs-on: ubuntu-latest | |
container: | |
image: amd64/rust | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Rust toolchain | |
uses: ./.github/actions/setup-builder | |
- name: Install critcmp | |
run: cargo install critcmp | |
- name: Python-dev | |
run: | | |
apt-get update | |
apt-get install -yq python3.11-dev | |
- name: Benchmark branch | |
run: cargo bench --all-features --bench row_format -- --save-baseline branch | |