Skip to content

Commit 0f34e8c

Browse files
committed
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
2 parents 755eb44 + eb35167 commit 0f34e8c

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

ci/lib.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,10 @@ then
231231
distro=$(echo "$CI_JOB_IMAGE" | tr : -)
232232
elif test true = "$GITLAB_CI"
233233
then
234+
# This environment is multiple kB in size and may cause us to exceed
235+
# xargs(1) limits on Windows.
236+
unset GITLAB_FEATURES
237+
234238
CI_TYPE=gitlab-ci
235239
CI_BRANCH="$CI_COMMIT_REF_NAME"
236240
CI_COMMIT="$CI_COMMIT_SHA"

0 commit comments

Comments
 (0)