aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2026-03-10 14:23:21 -0700
committerJunio C Hamano <gitster@pobox.com>2026-03-10 14:23:21 -0700
commit0f34e8c17441685159c5c0ea5b742bd8257e10ce (patch)
tree771fed4c9c385889d641d5c60b720e75c1b76d05 /ci
parent755eb44fa404aa5931d94f607f72523a58efb88c (diff)
parenteb35167dd4b5f410c261680c8d634bee394eca19 (diff)
downloadgit-0f34e8c17441685159c5c0ea5b742bd8257e10ce.tar.xz
Merge branch 'ps/ci-reduce-gitlab-envsize'
CI fix. * ps/ci-reduce-gitlab-envsize: ci: unset GITLAB_FEATURES envvar to not bust xargs(1) limits
Diffstat (limited to 'ci')
-rwxr-xr-xci/lib.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/ci/lib.sh b/ci/lib.sh
index 3ecbf147db..42a2b6a318 100755
--- a/ci/lib.sh
+++ b/ci/lib.sh
@@ -231,6 +231,10 @@ then
distro=$(echo "$CI_JOB_IMAGE" | tr : -)
elif test true = "$GITLAB_CI"
then
+ # This environment is multiple kB in size and may cause us to exceed
+ # xargs(1) limits on Windows.
+ unset GITLAB_FEATURES
+
CI_TYPE=gitlab-ci
CI_BRANCH="$CI_COMMIT_REF_NAME"
CI_COMMIT="$CI_COMMIT_SHA"