Skip to content

Commit 5c7a5aa

Browse files
authoredDec 1, 2024
ci: add error handling for Python venv creation in run.sh (ggml-org#10608)
1 parent 3420909 commit 5c7a5aa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎ci/run.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -815,7 +815,10 @@ if [ -z ${GG_BUILD_LOW_PERF} ]; then
815815
ln -sfn ${mnt_models} ${SRC}/models-mnt
816816

817817
# Create a fresh python3 venv and enter it
818-
python3 -m venv "$MNT/venv"
818+
if ! python3 -m venv "$MNT/venv"; then
819+
echo "Error: Failed to create Python virtual environment at $MNT/venv."
820+
exit 1
821+
fi
819822
source "$MNT/venv/bin/activate"
820823

821824
pip install -r ${SRC}/requirements.txt --disable-pip-version-check

0 commit comments

Comments
 (0)