From 2308f1d1f52021c66a1fd9982bda8be737d4ea07 Mon Sep 17 00:00:00 2001 From: Timo Wilken Date: Wed, 6 Mar 2024 16:01:57 +0100 Subject: [PATCH] Remove work-arounds for cloning repos inside containers With https://github.com/alisw/alibuild/pull/835, all git repos are created outside the aliBuild container, so we don't need to pass credentials inside anymore. --- ci/build-loop.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ci/build-loop.sh b/ci/build-loop.sh index 9f0d53d7..f5ec819d 100755 --- a/ci/build-loop.sh +++ b/ci/build-loop.sh @@ -251,10 +251,6 @@ if clean_env long_timeout aliBuild build "$PACKAGE" \ -e "ALIBUILD_BASE_HASH=$base_hash" \ ${jalien_token_cert:+-e "JALIEN_TOKEN_CERT=$jalien_token_cert"} \ ${jalien_token_key:+-e "JALIEN_TOKEN_KEY=$jalien_token_key"} \ - ${use_docker:+-e GIT_CONFIG_COUNT=1} \ - ${use_docker:+-e GIT_CONFIG_KEY_0=credential.helper} \ - ${use_docker:+-e GIT_CONFIG_VALUE_0='store --file /.git-creds'} \ - ${use_docker:+-v "$HOME/.git-creds:/.git-creds:ro"} \ ${use_docker:+--architecture "$ARCHITECTURE"} \ ${use_docker:+--docker-image "$CONTAINER_IMAGE"} \ ${use_docker:+--docker-extra-args="$DOCKER_EXTRA_ARGS"} \