Fix: Do not install "msal" on linux/386 as the compilation fails

This commit is contained in:
Bojan Čekrlić 2025-03-01 18:37:21 +01:00
parent 6fd4b113ab
commit 676da62a7f

View file

@ -56,7 +56,9 @@ setup_rust() {
setup_python_venv() { setup_python_venv() {
python3 -m venv /sasl python3 -m venv /sasl
. /sasl/bin/activate . /sasl/bin/activate
pip3 install msal if [[ "$(uname -m)"!= "386" ]] && [[ "$(uname -m)"!= "i386" ]]; then
pip3 install msal
fi
} }
# Installs the base components into the docker image: # Installs the base components into the docker image: