Skip to content

Commit cd1f25e

Browse files
author
Mark Saroufim
committed
Update pipeline-eval.yml with working configuration
- Add PyTorch installation step - Use workdir: /workdir for artifact accessibility - Copy result.json to workdir before container exits - Activate venv before running evaluation
1 parent 690716c commit cd1f25e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

deployment/buildkite/pipeline-eval.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,14 @@ steps:
4949
echo "=== Installing Dependencies ==="
5050
uv sync
5151
52+
echo ""
53+
echo "=== Installing PyTorch ==="
54+
uv pip install torch triton numpy --index-url https://download.pytorch.org/whl/cu124
55+
5256
echo ""
5357
echo "=== Running Evaluation ==="
54-
uv run python src/runners/buildkite-runner.py
58+
. .venv/bin/activate
59+
python src/runners/buildkite-runner.py
5560
5661
echo ""
5762
echo "=== Copying Artifacts ==="

0 commit comments

Comments
 (0)