We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59c8895 commit 783b21bCopy full SHA for 783b21b
ci/run.sh
@@ -815,7 +815,10 @@ if [ -z ${GG_BUILD_LOW_PERF} ]; then
815
ln -sfn ${mnt_models} ${SRC}/models-mnt
816
817
# Create a fresh python3 venv and enter it
818
- python3 -m venv "$MNT/venv"
+ if ! python3 -m venv "$MNT/venv"; then
819
+ echo "Error: Failed to create Python virtual environment at $MNT/venv."
820
+ exit 1
821
+ fi
822
source "$MNT/venv/bin/activate"
823
824
pip install -r ${SRC}/requirements.txt --disable-pip-version-check
0 commit comments