Skip to content

Commit df18265

Browse files
authored
Fix OpenVINO results mount/env path (#112)
* Fix OpenVINO results mount path Signed-off-by: Timo Stripf <timo.stripf@emmtrix.com> * Add AGENTS.md note about DCO Signed-off-by: Timo Stripf <timo.stripf@emmtrix.com> * Add Copilot instructions referencing AGENTS Signed-off-by: Timo Stripf <timo.stripf@emmtrix.com> * AGENTS: require Ruff check before PR Signed-off-by: Timo Stripf <timo.stripf@emmtrix.com> * Update copilot-instructions.md Signed-off-by: Timo Stripf <timo.stripf@emmtrix.com> --------- Signed-off-by: Timo Stripf <timo.stripf@emmtrix.com>
1 parent a6b8c32 commit df18265

3 files changed

Lines changed: 13 additions & 1 deletion

File tree

.github/copilot-instructions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# GitHub Copilot instructions
2+
3+
Follow the repository rules in `/AGENTS.md`.

.github/workflows/benchmark-backends.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,12 @@ jobs:
288288
run: mkdir -p ${{ github.workspace }}/results/onnxruntime-openvino/stable && chmod 777 ${{ github.workspace }}/results/onnxruntime-openvino/stable
289289

290290
- name: Run docker container
291-
run: docker run --name onnxruntime-openvino --env-file setup/env.list -v ${{ github.workspace }}/results/onnxruntime-openvino/stable:/root/results scoreboard/onnxruntime-openvino || true
291+
run: |
292+
docker run --name onnxruntime-openvino --env-file setup/env.list \
293+
-e RESULTS_DIR=/home/onnx/results \
294+
-e CSVDIR=/home/onnx/results \
295+
-v ${{ github.workspace }}/results/onnxruntime-openvino/stable:/home/onnx/results \
296+
scoreboard/onnxruntime-openvino || true
292297
293298
- name: Upload results
294299
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}

AGENTS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Agent instructions
2+
3+
- Every commit must be DCO signed (include a `Signed-off-by: Name <email>` line). Use `git commit -s`.
4+
- Before creating a PR, run Ruff the same way CI does: `ruff check test website-generator backends` and `ruff format --check test website-generator backends`.

0 commit comments

Comments
 (0)