-
Notifications
You must be signed in to change notification settings - Fork 173
242 lines (217 loc) · 9.98 KB
/
git-artifacts.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
name: git-artifacts
on:
push:
branches:
- main
env:
REPOSITORY: git-for-windows/git
REF: main
GIT_CONFIG_PARAMETERS: "'checkout.workers=56'"
HOME: "${{github.workspace}}\\home"
USERPROFILE: "${{github.workspace}}\\home"
MSYSTEM: MINGW64
ARCH_NAME: x86_64
ARCH_BITNESS: 64
jobs:
build:
if: github.event.repository.fork == false
runs-on: windows-latest
steps:
- name: Configure user
shell: bash
run:
USER_NAME="${{github.actor}}" &&
USER_EMAIL="${{github.actor}}@users.noreply.github.com" &&
mkdir "$HOME" &&
git config --global user.name "$USER_NAME" &&
git config --global user.email "$USER_EMAIL" &&
echo "PACKAGER=$USER_NAME <$USER_EMAIL>" >>$GITHUB_ENV
- name: clone git-sdk-${{env.ARCH_BITNESS}}
shell: bash
run: |
# cannot use `git clone` directly, to allow for PR's refs to be fetched
git init --bare -b ${REF#refs/heads/} git-sdk-${{env.ARCH_BITNESS}}.git &&
git -C git-sdk-${{env.ARCH_BITNESS}}.git remote add origin https://github.com/${{github.repository}} &&
git -C git-sdk-${{env.ARCH_BITNESS}}.git config remote.origin.promisor true &&
git -C git-sdk-${{env.ARCH_BITNESS}}.git config remote.origin.partialCloneFilter blob:none &&
git -C git-sdk-${{env.ARCH_BITNESS}}.git fetch --depth=1 origin $REF:refs/heads/${REF#refs/heads/}
env:
REF: ${{github.ref}}
- name: clone build-extra
shell: bash
run: git clone --depth=1 --single-branch -b main https://github.com/git-for-windows/build-extra
- name: create build-installers artifact
shell: bash
run: |
sh -x ./build-extra/please.sh create-sdk-artifact --sdk=git-sdk-${{env.ARCH_BITNESS}}.git build-installers &&
cygpath -aw "$PWD/build-installers/usr/bin/core_perl" >>$GITHUB_PATH &&
cygpath -aw "$PWD/build-installers/usr/bin" >>$GITHUB_PATH &&
cygpath -aw "$PWD/build-installers/mingw${{env.ARCH_BITNESS}}/bin" >>$GITHUB_PATH &&
mkdir -p build-installers/usr/src &&
mv build-extra build-installers/usr/src/
- name: Generate bundle artifacts
shell: bash
run: |
printf '#!/bin/sh\n\nexec /mingw${{env.ARCH_BITNESS}}/bin/git.exe "$@"\n' >/usr/bin/git &&
mkdir -p bundle-artifacts &&
{ test -n "$REPOSITORY" || REPOSITORY='${{github.repository}}'; } &&
{ test -n "$REF" || REF='${{github.ref}}'; } &&
git -c init.defaultBranch=main init --bare &&
git remote add -f origin https://github.com/git-for-windows/git &&
git fetch "https://github.com/$REPOSITORY" "$REF:$REF" &&
tag_name="$(git describe --match 'v[0-9]*' FETCH_HEAD)-$(date +%Y%m%d%H%M%S)" &&
echo "prerelease-${tag_name#v}" >bundle-artifacts/ver &&
echo "${tag_name#v}" >bundle-artifacts/display_version &&
echo "$tag_name" >bundle-artifacts/next_version &&
git tag -m "Snapshot build" "$tag_name" FETCH_HEAD &&
git bundle create bundle-artifacts/git.bundle origin/main.."$tag_name" &&
sh -x /usr/src/build-extra/please.sh mention feature "Snapshot of $(git show -s --pretty='tformat:%h (%s, %ad)' --date=short FETCH_HEAD)" &&
git -C /usr/src/build-extra bundle create "$PWD/bundle-artifacts/build-extra.bundle" origin/main..main
- name: 'Publish bundle-artifacts'
uses: actions/upload-artifact@v4
with:
name: bundle-artifacts
path: bundle-artifacts
retention-days: 5
- name: Check out git/git
shell: bash
run: |
git -c init.defaultBranch=main init &&
git remote add -f origin https://github.com/git-for-windows/git &&
git fetch --tags bundle-artifacts/git.bundle $(cat bundle-artifacts/next_version) &&
git reset --hard $(cat bundle-artifacts/next_version)
- name: Build mingw-w64-${{env.ARCH_NAME}}-git
shell: bash
run: |
set -x
# Make sure that there is a `/usr/bin/git` that can be used by `makepkg-mingw`
printf '#!/bin/sh\n\nexec /mingw${{env.ARCH_BITNESS}}/bin/git.exe "$@"\n' >/usr/bin/git &&
# Restrict `PATH` to MSYS2
PATH="/mingw${{env.ARCH_BITNESS}}/bin:/usr/bin:/C/Windows/system32"
sh -x /usr/src/build-extra/please.sh build-mingw-w64-git --only-${{env.ARCH_BITNESS}}-bit --build-src-pkg -o artifacts HEAD &&
cp bundle-artifacts/ver artifacts/ &&
b=$PWD/artifacts &&
version=$(cat bundle-artifacts/next_version) &&
(cd /usr/src/MINGW-packages/mingw-w64-git &&
cp PKGBUILD.$version PKGBUILD &&
git commit -s -m "mingw-w64-git: new version ($version)" PKGBUILD &&
git bundle create "$b"/MINGW-packages.bundle origin/main..main)
- name: Build mingw-w64-i686-git
if: env.ARCH_NAME == 'x86_64'
shell: bash
run: |
set -x
# Make sure that there is a `/usr/bin/git` that can be used by `makepkg-mingw`
printf '#!/bin/sh\n\nPATH=/mingw${{env.ARCH_BITNESS}}/bin:$PATH exec /mingw${{env.ARCH_BITNESS}}/bin/git.exe "$@"\n' >/usr/bin/git &&
# Restrict `PATH` to MSYS2
PATH="/mingw${{env.ARCH_BITNESS}}/bin:/usr/bin:/C/Windows/system32"
sh -x /usr/src/build-extra/please.sh build-mingw-w64-git --only-32-bit -o artifacts HEAD
- name: Publish mingw-w64-${{env.ARCH_NAME}}-git
uses: actions/upload-artifact@v4
with:
name: pkg-${{env.ARCH_NAME}}
path: artifacts
retention-days: 5
- name: prepare build-installers for uploading
shell: bash
run: |
tar czf build-installers.tgz build-installers/
- name: Publish build-installers.tgz
uses: actions/upload-artifact@v4
with:
name: build-installers.tgz
path: build-installers.tgz
retention-days: 1
artifacts:
runs-on: windows-latest
needs: [build]
strategy:
matrix:
artifact: [installer, portable, mingit]
fail-fast: false
steps:
- name: Download pkg-${{env.ARCH_NAME}}
uses: actions/download-artifact@v4
with:
name: pkg-${{env.ARCH_NAME}}
path: pkg-${{env.ARCH_NAME}}
- name: Download bundle-artifacts
uses: actions/download-artifact@v4
with:
name: bundle-artifacts
path: bundle-artifacts
- name: Download build-installers.tgz
uses: actions/download-artifact@v4
with:
name: build-installers.tgz
- name: Configure Git for Windows SDK
shell: bash
run: |
tar xf build-installers.tgz &&
cygpath -aw "$PWD/build-installers/usr/bin/core_perl" >>$GITHUB_PATH &&
cygpath -aw "$PWD/build-installers/usr/bin" >>$GITHUB_PATH &&
cygpath -aw "$PWD/build-installers/mingw${{env.ARCH_BITNESS}}/bin" >>$GITHUB_PATH
- name: Build ${{env.ARCH_BITNESS}}-bit ${{matrix.artifact}}
shell: bash
run: |
sh -x /usr/src/build-extra/please.sh make_installers_from_mingw_w64_git \
--version=$(cat pkg-${{env.ARCH_NAME}}/ver) \
-o artifacts \
--${{matrix.artifact}} \
--pkg=pkg-${{env.ARCH_NAME}}/mingw-w64-${{env.ARCH_NAME}}-git-[0-9]*.tar.xz \
--pkg=pkg-${{env.ARCH_NAME}}/mingw-w64-${{env.ARCH_NAME}}-git-doc-html-[0-9]*.tar.xz
- name: Copy package-versions and pdbs
if: matrix.artifact == 'installer'
shell: bash
run: |
cp /usr/src/build-extra/installer/package-versions.txt artifacts/ &&
a=$PWD/artifacts &&
p=$PWD/pkg-${{env.ARCH_NAME}} &&
(cd /usr/src/build-extra &&
mkdir -p cached-source-packages &&
cp "$p"/*-pdb* cached-source-packages/ &&
GIT_CONFIG_PARAMETERS="'windows.sdk${{env.ARCH_BITNESS}}.path='" ./please.sh bundle_pdbs --arch=${{env.ARCH_NAME}} --directory="$a" installer/package-versions.txt)
- name: Publish ${{matrix.artifact}}-${{env.ARCH_NAME}}
uses: actions/upload-artifact@v4
with:
name: ${{matrix.artifact}}-${{env.ARCH_NAME}}
path: artifacts
retention-days: 5
- name: Run the installer
if: matrix.artifact == 'installer'
shell: pwsh
run: |
$exePath = Get-ChildItem -Path artifacts/*.exe | %{$_.FullName}
$installer = Start-Process -PassThru -Wait -FilePath "$exePath" -ArgumentList "/SILENT /VERYSILENT /NORESTART /SUPPRESSMSGBOXES /ALLOWDOWNGRADE=1 /LOG=installer.log"
$exitCode = $installer.ExitCode
if ($exitCode -ne 0) {
Write-Host "::error::Installer failed with exit code $exitCode!"
exit 1
}
"$env:ProgramFiles\Git\usr\bin" | Out-File -Encoding ascii -Append $env:GITHUB_PATH
"$env:ProgramFiles\Git\mingw${{env.ARCH_BITNESS}}\bin" | Out-File -Encoding ascii -Append $env:GITHUB_PATH
- name: Publish installer log
if: matrix.artifact == 'installer' && (failure() || success())
uses: actions/upload-artifact@v4
with:
name: installer.log
path: installer.log
retention-days: 5
- name: Validate
if: matrix.artifact == 'installer'
shell: bash
run: |
echo '::group::installer.log'
cat installer.log
echo '::endgroup'
set -x &&
grep 'Installation process succeeded' installer.log &&
! grep -iw failed installer.log &&
cygpath -aw / &&
git.exe version --build-options >version &&
cat version &&
grep "$(sed -e 's|^v||' -e 's|-|.|g' <bundle-artifacts/next_version)" version &&
checklist=build-installers/usr/src/build-extra/installer/run-checklist.sh &&
# cannot test SSH keys in read-only mode, skip test for now
sed -i 's|[email protected]:v3/git-for-windows/git/git|https://github.com/git/git|' $checklist &&
sh -x $checklist