You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# If we're not on CircleCI, or we are but the lib directory isn't there (cache miss), install lib
72
72
if [ -z"${CI}" ] || [ !-d"lib" ];then
73
-
echo"Installing Python Libraries..."
73
+
echo"[STATUS] Installing Python Libraries..."
74
74
pip install -r ${HOMEROOT}/requirements.txt -t ${HOMEROOT}/lib --upgrade --only-binary all
75
75
else
76
-
echo"Using restored cache for Python Libraries"
76
+
echo"[STATUS] Using restored cache for Python Libraries"
77
77
fi
78
78
79
79
if [ -z"${CI}" ];then
80
-
echo"Installing responses library for unit tests, but not for deployment..."
80
+
echo"[STATUS] Installing responses library for unit tests, but not for deployment..."
81
81
pip install -q responses -t ${HOMEROOT}/lib --only-binary all
82
82
fi
83
83
84
84
if [ "$DEBUG"="True" ] && [ "$DEBUG_TOOLBAR"="True" ];then
85
-
echo"Installing Django Debug Toolbar for local dev..."
85
+
echo"[STATUS] Installing Django Debug Toolbar for local dev..."
86
86
pip install -q django-debug-toolbar==3.2.4 -t ${HOMEROOT}/lib --only-binary all
87
87
fi
88
88
89
89
if [ "$IS_DEV"="True" ];then
90
-
echo"Installing GitPython for local dev version display..."
90
+
echo"[STATUS] Installing GitPython for local dev version display..."
91
91
pip install -q gitpython -t ${HOMEROOT}/lib --only-binary all
92
92
fi
93
93
@@ -96,22 +96,22 @@ echo "Libraries Installed"
96
96
# Install Google Cloud SDK
97
97
# If we're not on CircleCI or we are but google-cloud-sdk isn't there, install it
98
98
if [ -z"${CI}" ] || [ !-d"/usr/lib/google-cloud-sdk" ];then
99
-
echo"Installing Google Cloud SDK..."
99
+
echo"[STATUS] Installing Google Cloud SDK..."
100
100
export CLOUDSDK_CORE_DISABLE_PROMPTS=1
101
101
echo"deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main"| sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
0 commit comments