From 54167e4cdfc086a29159d0b343445f8231a87a61 Mon Sep 17 00:00:00 2001 From: Devaraj Ranganna Date: Tue, 21 May 2024 13:51:17 +0000 Subject: [PATCH] ci: Update git config for CI jobs Set the git `core.autocrlf` to `input` so that, files with `CRLF` line-endings can be patched correctly. Signed-off-by: Devaraj Ranganna --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aad4680..f5a2ce8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -54,6 +54,7 @@ workflow: - ./tools/ci/generate_credentials.sh -f -p applications/${APP_UNDERSCORED}/configs/aws_configs - git config --global user.email "ci@example.com" - git config --global user.name "ci" + - git config --global core.autocrlf input - | ./tools/scripts/build.sh ${APP} \ --target $TARGET \