File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,10 @@ export PATH=$PATH:$WORKDIR/python_env/bin
4343
4444find ${WORKDIR} /src/ -name setup.py -type f | xargs -I {} dirname {} | grep -v azure-cli-testsdk | xargs pip3 install --no-deps
4545pip3 install -r ${WORKDIR} /src/azure-cli/requirements.py3.$( uname) .txt
46- # Only install pymsalruntime for debian build, as it does not support other Linux distributions
47- pip install pymsalruntime==0.18.1 || true
46+ # Only install pymsalruntime for Ubuntu, as it does not fully support other Linux distributions
47+ if [[ " $( lsb_release --id --short) " == " Ubuntu" && " $( dpkg --print-architecture) " == " amd64" ]]; then
48+ pip3 install pymsalruntime==0.20.2
49+ fi
4850$WORKDIR /python_env/bin/python3 ${WORKDIR} /scripts/trim_sdk.py
4951
5052# Create create directory for debian build
You can’t perform that action at this time.
0 commit comments