From 55d69d6568bfd97950989df56db011cba33dc05c Mon Sep 17 00:00:00 2001 From: Chris McCarthy Date: Tue, 25 Jun 2024 17:23:04 +0100 Subject: [PATCH] #2648 - updated benchmark run command --- .azure/azure-benchmark-pipeline.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.azure/azure-benchmark-pipeline.yaml b/.azure/azure-benchmark-pipeline.yaml index ac52ce2b..43140d7d 100644 --- a/.azure/azure-benchmark-pipeline.yaml +++ b/.azure/azure-benchmark-pipeline.yaml @@ -49,8 +49,9 @@ steps: displayName: 'Install Dependencies' - script: | - mkdir -p benchmark/results/v$(MAJOR_VERSION)/v$(VERSION) - python benchmark.py --output benchmark/results/v$(MAJOR_VERSION)/v$(VERSION) + cd benchmark + python3 primaite_benchmark.py + cd .. displayName: 'Run Benchmarking Script' - script: |