Skip to content

Commit ae01f0d

Browse files
dschoGit for Windows Build Agent
authored and
Git for Windows Build Agent
committed
Merge pull request #3076 from dennisameling/git-credential-manager-core-arm64
git-artifacts: add workaround for GCM Core on ARM64
2 parents c3950ee + b3d1b7c commit ae01f0d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/git-artifacts.yml

+7
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,13 @@ jobs:
387387
with:
388388
name: arm64-artifacts
389389
path: ${{github.workspace}}/arm64
390+
# Workaround for Git Credential Manager Core on ARM64: https://github.com/git-for-windows/git/issues/3015
391+
- name: Create git-credential-manager-core wrapper for ARM64
392+
if: matrix.arch.arm64 == true
393+
shell: bash
394+
run: |
395+
printf '%s\n' '#!/bin/sh' 'exec /mingw32/libexec/git-core/git-credential-manager-core.exe "$@"' > arm64/bin/git-credential-manager-core
396+
chmod +x arm64/bin/git-credential-manager-core
390397
- name: Clone and update build-extra
391398
if: env.SKIP != 'true'
392399
shell: bash

0 commit comments

Comments
 (0)