From dfbf822d3638e8e2846ef26538e69544707dacd4 Mon Sep 17 00:00:00 2001 From: Eduard Karacharov Date: Sun, 23 Jun 2024 15:42:18 +0300 Subject: [PATCH] temporary benchmarks wf --- .github/workflows/benchmarks.yml | 41 ++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/benchmarks.yml diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml new file mode 100644 index 000000000000..9021e2d96a11 --- /dev/null +++ b/.github/workflows/benchmarks.yml @@ -0,0 +1,41 @@ +name: coverage + +on: + push: + +jobs: + 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 --force critcmp + - name: Python-dev + run: | + apt-get update + apt-get install -yq python3.11-dev + - name: Benchmark branch + run: | + echo BRANCH_COMMIT=`git log -n1 --oneline` >> $GITHUB_ENV + cargo bench --all-features --color always --bench row_format -- --save-baseline branch + - name: Checkout master + uses: actions/checkout@v4 + with: + submodules: true + ref: master + - name: Benchmark master + run: | + echo MASTER_COMMIT=`git log -n1 --oneline` >> $GITHUB_ENV + cargo bench --all-features --color always --bench row_format -- --save-baseline master + - name: Compare benchmark results + run: | + echo "Branch: ${{ env.BRANCH_COMMIT }}" + echo "Master: ${{ env.MASTER_COMMIT }}" + critcmp --color always master branch