Skip to content

Commit 000073b

Browse files
authored
Introduce workflow input feature_flags_all for manual benchmarks (#241)
1 parent 61a1bf5 commit 000073b

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

.github/workflows/manual-benchmark.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
engine_config:
1414
description: "Engine config to benchmark"
1515
default: qdrant-continuous-benchmark
16+
feature_flags_all:
17+
description: "Enable all feature flags (true|false, false by default)"
18+
default: false
19+
1620

1721
jobs:
1822
runManualBenchmark:
@@ -32,5 +36,6 @@ jobs:
3236
export DATASETS=${{ inputs.dataset }}
3337
export ENGINE_NAME=${{ inputs.engine_config }}
3438
export POSTGRES_TABLE=benchmark_manual
39+
export QDRANT__FEATURE_FLAGS__ALL=${{ inputs.feature_flags_all }}
3540
bash -x tools/setup_ci.sh
3641
bash -x tools/run_ci.sh

.github/workflows/manual-compare-versions-benchmark.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ on:
1919
engine_config:
2020
description: "Engine config to benchmark"
2121
default: qdrant-continuous-benchmark
22+
feature_flags_all_version_1:
23+
description: "Enable all feature flags (true|false, false by default)"
24+
default: false
25+
feature_flags_all_version_2:
26+
description: "Enable all feature flags (true|false, false by default)"
27+
default: false
2228

2329
jobs:
2430
prepareImage1:
@@ -84,6 +90,7 @@ jobs:
8490
export DATASETS=${{ inputs.dataset }}
8591
export ENGINE_NAME=${{ inputs.engine_config }}
8692
export POSTGRES_TABLE=benchmark_manual
93+
export QDRANT__FEATURE_FLAGS__ALL=${{ inputs.feature_flags_all_version_1 }}
8794
bash -x tools/setup_ci.sh
8895
bash -x tools/run_ci.sh
8996
@@ -120,6 +127,7 @@ jobs:
120127
export DATASETS=${{ inputs.dataset }}
121128
export ENGINE_NAME=${{ inputs.engine_config }}
122129
export POSTGRES_TABLE=benchmark_manual
130+
export QDRANT__FEATURE_FLAGS__ALL=${{ inputs.feature_flags_all_version_2 }}
123131
bash -x tools/setup_ci.sh
124132
bash -x tools/run_ci.sh
125133

0 commit comments

Comments
 (0)