Skip to content

Commit 9b3e550

Browse files
authored
Merge pull request #38 from git-for-windows/more-hosted-windows-arm64-runners
Use hosted Windows/ARM64 runners even more
2 parents ba77083 + 11b4e12 commit 9b3e550

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: check-for-missing-dlls
22

33
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
48
workflow_dispatch:
59

610
env:
@@ -32,7 +36,8 @@ jobs:
3236
sh -x ./build-extra/please.sh create-sdk-artifact --sdk=git-sdk-arm64.git build-installers &&
3337
cygpath -aw "$PWD/build-installers/usr/bin/core_perl" >>$GITHUB_PATH &&
3438
cygpath -aw "$PWD/build-installers/usr/bin" >>$GITHUB_PATH &&
35-
cygpath -aw "$PWD/build-installers/mingw64/bin" >>$GITHUB_PATH
39+
cygpath -aw "$PWD/build-installers/clangarm64/bin" >>$GITHUB_PATH &&
40+
echo "MSYSTEM=CLANGARM64" >>$GITHUB_ENV
3641
- name: check for missing DLLs
3742
shell: bash
3843
run: ./build-extra/check-for-missing-dlls.sh

.github/workflows/ci-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
make -C ../git DEVELOPER=1 NO_PERL=1 SKIP_DASHED_BUILT_INS=YesPlease -j8 all strip
5656
- name: show build-options
5757
shell: bash
58-
run: ../git/git version --build-options
58+
run: . /etc/profile && ../git/git version --build-options
5959
- name: compress git artifacts
6060
shell: bash
6161
run: tar -C .. -czf git-artifacts.tar.gz --exclude '*.a' --exclude '*.o' --exclude .git --exclude .depend git

.github/workflows/git-artifacts.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: git-artifacts
22

33
on:
4+
push:
5+
branches:
6+
- main
47
workflow_dispatch:
58

69
env:

0 commit comments

Comments
 (0)