mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-09 22:48:54 +01:00
31 lines
1.0 KiB
YAML
31 lines
1.0 KiB
YAML
|
name: Bench (manual)
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
inputs:
|
||
|
workload:
|
||
|
description: 'The path to the workloads to execute (workloads/...)'
|
||
|
required: true
|
||
|
default: 'workloads/movies.json'
|
||
|
|
||
|
env:
|
||
|
WORKLOAD_NAME: ${{ github.event.inputs.workload }}
|
||
|
|
||
|
jobs:
|
||
|
benchmarks:
|
||
|
name: Run and upload benchmarks
|
||
|
runs-on: benchmarks
|
||
|
timeout-minutes: 180 # 3h
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
profile: minimal
|
||
|
toolchain: stable
|
||
|
override: true
|
||
|
|
||
|
- name: Run benchmarks - workload ${WORKLOAD_NAME} - branch ${{ github.ref }} - commit ${{ github.sha }}
|
||
|
run: |
|
||
|
cargo xtask bench --api-key "${{ secrets.BENCHMARK_API_KEY }}" --dashboard-url "${{ vars.BENCHMARK_DASHBOARD_URL }}" --reason "Manual [Run #${{ github.run_id }}](https://github.com/meilisearch/meilisearch/actions/runs/${{ github.run_id }})" -- ${WORKLOAD_NAME}
|
||
|
|