Skip to content

Commit d20318c

Browse files
committed
ci: add workaround for GCM Core on ARM64
Signed-off-by: Dennis Ameling <[email protected]>
1 parent c177856 commit d20318c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/git-artifacts.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,13 @@ jobs:
418418
with:
419419
name: arm64-artifacts
420420
path: ${{github.workspace}}/arm64
421+
# Workaround for Git Credential Manager Core on ARM64: https://github.com/git-for-windows/git/issues/3015
422+
- name: Create git-credential-manager-core wrapper for ARM64
423+
if: matrix.arch.arm64 == true
424+
shell: bash
425+
run: |
426+
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > ${{github.workspace}}/arm64/bin/git-credential-manager-core
427+
chmod +x ${{github.workspace}}/arm64/bin/git-credential-manager-core
421428
- name: Clone and update build-extra
422429
if: env.SKIP != 'true'
423430
shell: bash

0 commit comments

Comments
 (0)