From 2fad174ff531de1cbe9b7b275a1d59b4497bac86 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Fri, 11 Apr 2025 10:44:54 +0200 Subject: [PATCH] force glibc version; ensure pixi is exectuable; ensure user.name/user.email are set --- autodeploy/setup.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/autodeploy/setup.sh b/autodeploy/setup.sh index a618b45..9b6532d 100755 --- a/autodeploy/setup.sh +++ b/autodeploy/setup.sh @@ -5,9 +5,15 @@ set -euo pipefail ./download.sh "https://github.com/prefix-dev/pixi/releases/latest/download/pixi-x86_64-unknown-linux-musl.tar.gz" +export CONDA_OVERRIDE_GLIBC=2.28 + +chmod +x ./pixi ./pixi init || true ./pixi install --all +#git config user.name "GFA AutoDeploy" +#git config user.email "gfa-autodeploy@psi.ch" + #git add .gitattributes .gitignore pixi.lock pixi.toml #git commit -m"automatic commit after install" #git push