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 3420909 commit 5c7a5aaCopy full SHA for 5c7a5aa
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