Skip to content

Commit 0863902

Browse files
committed
TO-DROP: clone build-extra from dscho/please-sh-tolerate-missing-sparse
So that the `ci-artifacts` and `check-for-missing-dlls` workflows can go green on this PR before the matching build-extra change (git-for-windows/build-extra#710) lands. Drop this commit once that PR is merged and `git-for-windows/build-extra` `main` carries the fix. Assisted-by: Opus 4.7 Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 1e983e5 commit 0863902

2 files changed

Lines changed: 15 additions & 3 deletions

File tree

.github/workflows/check-for-missing-dlls.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ jobs:
2929
env:
3030
REF: ${{github.ref}}
3131
- name: clone build-extra
32-
run: git clone --depth=1 --single-branch -b main https://github.com/git-for-windows/build-extra
32+
shell: bash
33+
run: |
34+
git clone --depth=1 --single-branch \
35+
-b please-sh-tolerate-missing-sparse \
36+
https://github.com/dscho/build-extra
3337
- name: create build-installers artifact
3438
shell: bash
3539
run: |

.github/workflows/ci-artifacts.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ jobs:
3030
git --git-dir=git-sdk-64.git fetch --depth=1 origin ${{github.sha}} &&
3131
git --git-dir=git-sdk-64.git update-ref --no-deref HEAD ${{github.sha}}
3232
- name: clone build-extra
33-
run: git clone --depth=1 --single-branch -b main https://github.com/git-for-windows/build-extra
33+
shell: bash
34+
run: |
35+
git clone --depth=1 --single-branch \
36+
-b please-sh-tolerate-missing-sparse \
37+
https://github.com/dscho/build-extra
3438
- name: build git-sdk-64-minimal-sdk
3539
shell: bash
3640
run: |
@@ -107,7 +111,11 @@ jobs:
107111
git --git-dir=git-sdk-64.git fetch --depth=1 origin ${{github.sha}} &&
108112
git --git-dir=git-sdk-64.git update-ref --no-deref HEAD ${{github.sha}}
109113
- name: clone build-extra
110-
run: git clone --depth=1 --single-branch -b main https://github.com/git-for-windows/build-extra
114+
shell: bash
115+
run: |
116+
git clone --depth=1 --single-branch \
117+
-b please-sh-tolerate-missing-sparse \
118+
https://github.com/dscho/build-extra
111119
- name: build git-sdk-64-build-installers
112120
shell: bash
113121
run: sh -x ./build-extra/please.sh create-sdk-artifact --sdk=git-sdk-64.git build-installers

0 commit comments

Comments
 (0)