alibaba--zvec
7ca09fcf54
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
33 行
729 B
YAML
33 行
729 B
YAML
name: Continuous Benchmark
|
|
on:
|
|
# Temporarily disabled. Restore original triggers below to re-enable.
|
|
# push:
|
|
# branches: [ "main"]
|
|
# paths-ignore:
|
|
# - '**.md'
|
|
# workflow_dispatch:
|
|
workflow_dispatch:
|
|
inputs:
|
|
__disabled__:
|
|
description: 'This workflow is temporarily disabled.'
|
|
required: false
|
|
|
|
concurrency:
|
|
group: cb-${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
benchmark:
|
|
if: false
|
|
runs-on: vdbbench
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
|
|
- name: Run VectorDBBench
|
|
env:
|
|
DATABASE_URL: ${{ secrets.DATABASE_URL }}
|
|
run: |
|
|
bash .github/workflows/scripts/run_vdb.sh |