Skip to content

Continuous Benchmark #1355

Continuous Benchmark

Continuous Benchmark #1355

name: Continuous Benchmark
on:
repository_dispatch:
workflow_dispatch:
schedule:
# Run every 4 hours
- cron: "0 */4 * * *"
jobs:
runBenchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Benches
run: |
export HCLOUD_TOKEN=${{ secrets.HCLOUD_TOKEN }}
export GCS_KEY=${{ secrets.GCS_KEY }}
export GCS_SECRET=${{ secrets.GCS_SECRET }}
export POSTGRES_PASSWORD=${{ secrets.POSTGRES_PASSWORD }}
export POSTGRES_HOST=${{ secrets.POSTGRES_HOST }}
# Benchmark the dev branch:
export QDRANT_VERSION=ghcr/dev
bash -x tools/run_ci.sh
# Benchmark the master branch:
export QDRANT_VERSION=docker/master
bash -x tools/run_ci.sh