mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-09 14:38:56 +01:00
24 lines
785 B
YAML
24 lines
785 B
YAML
name: Indexing bench (push)
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
benchmarks:
|
|
name: Run and upload benchmarks
|
|
runs-on: benchmarks
|
|
timeout-minutes: 180 # 3h
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: helix-editor/rust-toolchain@v1
|
|
with:
|
|
profile: minimal
|
|
|
|
# Run benchmarks
|
|
- name: Run benchmarks - Dataset ${BENCH_NAME} - Branch main - Commit ${{ github.sha }}
|
|
run: |
|
|
cargo xtask bench --api-key "${{ secrets.BENCHMARK_API_KEY }}" --dashboard-url "${{ vars.BENCHMARK_DASHBOARD_URL }}" --reason "Push on `main` [Run #${{ github.run_id }}](https://github.com/meilisearch/meilisearch/actions/runs/${{ github.run_id }})" -- workloads/*.json
|
|
|