-
Notifications
You must be signed in to change notification settings - Fork 101
328 lines (277 loc) · 10.8 KB
/
deb.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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
name: deb
on:
workflow_dispatch:
push:
branches:
- '**'
paths-ignore:
- 'benchmarks/**'
- 'docs/**'
- 'README.md'
release:
types: [published]
jobs:
foundations:
runs-on: ubuntu-latest
strategy:
matrix:
os: [debian11, debian12, ubuntu2204, ubuntu2404]
steps:
- uses: actions/checkout@v1
- name: free disk space
run: |
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
df -h
- name: Cache docker image
id: cache-foundation
uses: actions/cache@v4
env:
cache-name: cache-foundation
with:
path: foundation${{ matrix.os }}.tgz
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles(format('.packaging/{0}/Dockerfile', matrix.os)) }}
lookup-only: true
- name: Setup packaging
if: ${{ steps.cache-foundation.outputs.cache-hit != 'true' }}
run: |
cp .packaging/${{ matrix.os }}/Dockerfile .
- name: Build package
if: ${{ steps.cache-foundation.outputs.cache-hit != 'true' }}
run: docker build -t foundation${{ matrix.os }} .
- name: Export docker image
if: ${{ steps.cache-foundation.outputs.cache-hit != 'true' }}
run: docker image save foundation${{ matrix.os }} | gzip -c > foundation${{ matrix.os }}.tgz
fex-pe:
needs: foundations
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: free disk space
run: |
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
df -h
- name: Cache docker image
id: cache-foundation
uses: actions/cache@v4
env:
cache-name: cache-foundation
with:
path: foundationdebian12.tgz
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('.packaging/debian12/Dockerfile') }}
- name: Import docker image
run: docker image load -i foundationdebian12.tgz
- name: get version
run: git describe --tags | sed "s/hangover-/HOVERSION=/" >> "$GITHUB_ENV"; git describe --tags | sed "s/hangover-/HOVERSION=/"
- name: get shallow submodule
run: git submodule update --init --recursive --depth 1 fex
- name: Setup packaging
run: |
cp -r .packaging/debian12/fexpe/* fex
cp fex/LICENSE fex/DEBIAN/copyright
sed -i "s/HOVERSION/${HOVERSION}/g" fex/Dockerfile
sed -i "s/HOVERSION/${HOVERSION}/g" fex/DEBIAN/control
cat fex/DEBIAN/copyright
cat fex/Dockerfile
cat fex/DEBIAN/control
nproc
- name: Build package
run: cd fex; docker build -t fexpedeb12 .
- name: Extract package
run: docker run --rm fexpedeb12 cat /opt/deb/hangover-libwow64fex_${{ env.HOVERSION }}_arm64.deb > hangover-libwow64fex_${{ env.HOVERSION }}_arm64.deb
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: hangover-libwow64fex_${{ env.HOVERSION }}_arm64.deb
path: hangover-libwow64fex_${{ env.HOVERSION }}_arm64.deb
qemu:
needs: foundations
runs-on: ubuntu-latest
strategy:
matrix:
os: [debian11, debian12, ubuntu2204, ubuntu2404]
include:
- os: debian11
codename: bullseye
- os: debian12
codename: bookworm
- os: ubuntu2204
codename: jammy
- os: ubuntu2404
codename: noble
steps:
- uses: actions/checkout@v1
- name: free disk space
run: |
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
df -h
- name: Cache docker image
id: cache-foundation
uses: actions/cache@v4
env:
cache-name: cache-foundation
with:
path: foundation${{ matrix.os }}.tgz
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles(format('.packaging/{0}/Dockerfile', matrix.os)) }}
- name: Import docker image
run: docker image load -i foundation${{ matrix.os }}.tgz
- name: get version
run: git describe --tags | sed "s/hangover-/HOVERSION=/" >> "$GITHUB_ENV"; git describe --tags | sed "s/hangover-/HOVERSION=/"
- name: get shallow submodule
run: git submodule update --init --recursive --depth 1 qemu
- name: Setup packaging
run: |
cp -r .packaging/${{ matrix.os }}/qemu/* qemu
sed -i "s/HOVERSION/${HOVERSION}/g" qemu/Dockerfile
sed -i "s/HOVERSION/${HOVERSION}/g" qemu/DEBIAN/control
cat qemu/Dockerfile
cat qemu/DEBIAN/control
nproc
- name: Build package
run: cd qemu; docker build -t qemu${{ matrix.os }} .
- name: Extract package
run: docker run --rm qemu${{ matrix.os }} cat /opt/deb/hangover-libqemu_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb > hangover-libqemu_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: hangover-libqemu_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb
path: hangover-libqemu_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb
wine:
needs: foundations
runs-on: ubuntu-latest
strategy:
matrix:
os: [debian11, debian12, ubuntu2204, ubuntu2404]
include:
- os: debian11
codename: bullseye
- os: debian12
codename: bookworm
- os: ubuntu2204
codename: jammy
- os: ubuntu2404
codename: noble
steps:
- uses: actions/checkout@v1
- name: free disk space
run: |
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
df -h
- name: Cache docker image
id: cache-foundation
uses: actions/cache@v4
env:
cache-name: cache-foundation
with:
path: foundation${{ matrix.os }}.tgz
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles(format('.packaging/{0}/Dockerfile', matrix.os)) }}
- name: Import docker image
run: docker image load -i foundation${{ matrix.os }}.tgz
- name: get version
run: git describe --tags | sed "s/hangover-/HOVERSION=/" >> "$GITHUB_ENV"; git describe --tags | sed "s/hangover-/HOVERSION=/"
- name: get shallow submodule
run: git submodule update --init --recursive --depth 1 wine
- name: Setup packaging
run: |
cp -r .packaging/${{ matrix.os }}/wine/* wine
sed -i "s/HOVERSION/${HOVERSION}/g" wine/Dockerfile
cat wine/Dockerfile
cat wine/debian/changelog
nproc
- name: Adjust changelog for intermediate
if: github.event_name != 'release'
run: |
cp wine/debian/changelog wine/debian/changelog.old
echo "hangover-wine (${HOVERSION}~${{ matrix.codename }}) UNRELEASED; urgency=low" > wine/debian/changelog.entry
echo "" >> wine/debian/changelog.entry
echo " * Intermediate build ${HOVERSION}~${{ matrix.codename }}" >> wine/debian/changelog.entry
echo "" >> wine/debian/changelog.entry
echo -n " -- André Zwing <[email protected]> " >> wine/debian/changelog.entry
LC_TIME=en_US.UTF-8 date "+%a, %d %b %Y %H:%M:%S %z" >> wine/debian/changelog.entry
echo "" >> wine/debian/changelog.entry
cat wine/debian/changelog.entry wine/debian/changelog.old > wine/debian/changelog
rm wine/debian/changelog.entry wine/debian/changelog.old
cat wine/debian/changelog
- name: Adjust changelog for release
if: github.event_name == 'release'
run: |
cp wine/debian/changelog wine/debian/changelog.old
echo "hangover-wine (${HOVERSION}~${{ matrix.codename }}) UNRELEASED; urgency=low" > wine/debian/changelog.entry
echo "" >> wine/debian/changelog.entry
echo " * Release ${HOVERSION}~${{ matrix.codename }}" >> wine/debian/changelog.entry
echo "" >> wine/debian/changelog.entry
echo -n " -- André Zwing <[email protected]> " >> wine/debian/changelog.entry
LC_TIME=en_US.UTF-8 date "+%a, %d %b %Y %H:%M:%S %z" >> wine/debian/changelog.entry
echo "" >> wine/debian/changelog.entry
cat wine/debian/changelog.entry wine/debian/changelog.old > wine/debian/changelog
rm wine/debian/changelog.entry wine/debian/changelog.old
cat wine/debian/changelog
- name: Build package
run: cd wine; docker build -t wine${{ matrix.os }} .
- name: Extract package
run: docker run --rm wine${{ matrix.os }} cat /opt/hangover-wine_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb > hangover-wine_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: hangover-wine_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb
path: hangover-wine_${{ env.HOVERSION }}~${{ matrix.codename }}_arm64.deb
bundle:
needs: [fex-pe, qemu, wine]
runs-on: ubuntu-latest
strategy:
matrix:
os: [debian11, debian12, ubuntu2204, ubuntu2404]
include:
- os: debian11
codename: bullseye
- os: debian12
codename: bookworm
- os: ubuntu2204
codename: jammy
- os: ubuntu2404
codename: noble
steps:
- uses: actions/checkout@v1
- name: free disk space
run: |
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
df -h
- name: get version
run: git describe --tags | sed "s/hangover-/HOVERSION=/" >> "$GITHUB_ENV"; git describe --tags | sed "s/hangover-/HOVERSION=/"
- name: Download Artifacts 1/2
uses: actions/download-artifact@v4
with:
pattern: hangover*${{ matrix.codename }}_arm64.deb
merge-multiple: true
- name: Download Artifacts 2/2
uses: actions/download-artifact@v4
with:
pattern: hangover-libwow64fex*_arm64.deb
merge-multiple: true
- name: Bundle
run: tar -cf hangover_${{ env.HOVERSION }}_${{ matrix.os }}_${{ matrix.codename }}_arm64.tar hangover*${{ matrix.codename }}_arm64.deb hangover-libwow64fex*_arm64.deb
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: hangover_${{ env.HOVERSION }}_${{ matrix.os }}_${{ matrix.codename }}_arm64.tar
path: hangover_${{ env.HOVERSION }}_${{ matrix.os }}_${{ matrix.codename }}_arm64.tar
retention-days: 14
- name: Upload Artifact as Release Asset
if: github.event_name == 'release'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: hangover_${{ env.HOVERSION }}_${{ matrix.os }}_${{ matrix.codename }}_arm64.tar
asset_name: hangover_${{ env.HOVERSION }}_${{ matrix.os }}_${{ matrix.codename }}_arm64.tar
asset_content_type: application/x-tar