File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515
1616set -e
1717
18+ echo " Updating ca-certificates..."
19+ apt-get update && apt-get install -y ca-certificates
20+
1821if ! command -v pip3 & > /dev/null || ! command -v curl & > /dev/null || ! command -v docker & > /dev/null || ! command -v git & > /dev/null; then
1922 echo " Installing basic dependencies..."
20- apt-get update && apt-get install -y python3-pip curl git ca-certificates
21- git config --global http.sslCAinfo /etc/ssl/certs/ca-certificates.crt
23+ apt-get install -y python3-pip curl git
24+ fi
25+
26+ git config --global http.sslCAinfo /etc/ssl/certs/ca-certificates.crt
2227
2328 if ! command -v docker & > /dev/null; then
2429 echo " Installing docker CLI..."
@@ -206,6 +211,12 @@ if [ "${DRY_RUN}" = "true" ]; then
206211 VERSION=" 0.1.2"
207212 fi
208213 popd
214+
215+ # TEMPORARY: run clone to debug SSL issue
216+ echo " [DRY RUN] TEMPORARY: Testing git clone to debug SSL issue"
217+ pushd " ${REPO_DIR} "
218+ git clone https://github.com/cel-expr/cel-python.git
219+ popd
209220else
210221 pushd " ${REPO_DIR} "
211222 git clone https://github.com/cel-expr/cel-python.git
You can’t perform that action at this time.
0 commit comments