Skip to content

Commit 25ed8dd

Browse files
committed
ci-artifacts: build git-for-windows/git, not git/git, for the UCRT64 SDK
Cloning git/git's `master` does not allow compiling for UCRT64; This change has to be upstreamed from Git for Windows yet. So let's build git-for-windows/git, for now. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent df901c2 commit 25ed8dd

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci-artifacts.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,12 @@ jobs:
4444
with:
4545
name: minimal-sdk
4646
path: git-sdk-x86_64-minimal.tar.gz
47-
- name: clone git.git's `master`
48-
run: git clone --depth=1 --branch master https://github.com/git/git ..\git
49-
- name: build current `master` of git.git
47+
- name: clone git-for-windows/git's `main`
48+
shell: bash
49+
run: |
50+
git clone --depth=1 --branch main \
51+
https://github.com/git-for-windows/git ../git
52+
- name: build current `main` of git-for-windows/git
5053
shell: bash
5154
run: |
5255
set -x

0 commit comments

Comments
 (0)