From 430b881b43c5ff85a44bd1587fcc56487f9a8292 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bojan=20=C4=8Cekrli=C4=87?= Date: Sat, 1 Mar 2025 18:26:29 +0100 Subject: [PATCH] Fix: Try to fix rust bindins build --- build-scripts/sasl-build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build-scripts/sasl-build.sh b/build-scripts/sasl-build.sh index fc0bda3..b441372 100644 --- a/build-scripts/sasl-build.sh +++ b/build-scripts/sasl-build.sh @@ -65,6 +65,8 @@ setup_python_venv() { # 2. a python virtual environment with the msal library base_install() { setup_rust + command -v rustc + command -v cargo build_sasl2 setup_python_venv rustup self uninstall -y @@ -79,6 +81,7 @@ base_install() { if [ -f /etc/alpine-release ]; then # Install necessary libraries LIBS="git cmake clang make gcc g++ libc-dev pkgconfig curl-dev jsoncpp-dev cyrus-sasl-dev patch libffi-dev python3-dev" + apk add --upgrade curl apk add --upgrade --virtual .build-deps ${LIBS} # Run compilation and installation