-
Notifications
You must be signed in to change notification settings - Fork 106
406 lines (274 loc) · 8.62 KB
/
main.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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
name: CI
on: [push]
jobs:
cache-submodule:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
build-flt-orc:
needs: [cache-submodule]
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
- run: ./app-flutter.sh orchid && cd app-flutter && make
build-ios-app:
needs: [cache-submodule]
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: debug=ldid make -j3 -C app-ios precache='--no-android'
build-and-app:
needs: [cache-submodule]
runs-on: ubuntu-latest
steps:
- run: sudo rm -rf /opt
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: env/setup-ndk.sh
- run: make -j3 -C app-android precache='--no-ios'
- uses: actions/upload-artifact@v4
with:
name: orchid-apk
path: app-android/out-and/Orchid.apk
build-and-dkr:
needs: [cache-submodule]
runs-on: ubuntu-latest
steps:
- run: sudo rm -rf /opt
- uses: actions/checkout@v4
- run: env/setup-git.sh
- uses: ./.github/actions/submodule
- run: cd app-android && env/docker.sh -j3
build-mac-app:
needs: [cache-submodule]
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: debug=ldid make -j3 -C app-macos precache='--no-android --no-ios --macos'
build-mac-snd:
needs: [cache-submodule]
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: make -j3 -C eth-sender
- uses: actions/upload-artifact@v4
with:
name: cj-mac
path: eth-sender/out-mac/x86_64/cj
build-mac-cli:
needs: [cache-submodule]
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: make -j3 -C cli-shared
- uses: actions/upload-artifact@v4
with:
name: orchidcd-mac
path: cli-shared/out-mac/x86_64/orchidcd
build-mac-srv:
needs: [cache-submodule]
runs-on: macos-13
if: ${{ false }} # XXX: Hypervisor.framework
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- uses: ./.github/actions/nerdctl
- run: make -j3 -C srv-daemon
- uses: actions/upload-artifact@v4
with:
name: orchidd-mac
path: srv-daemon/out-mac/x86_64/orchidd
- run: git status
# XXX: ubuntu-latest defaults to r25c NDK
# bumping to ubuntu-24.04 was easiest fix
build-win-app:
needs: [cache-submodule]
runs-on: ubuntu-24.04
if: ${{ false }} # XXX: Flutter 3.24 --windows
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: DEBIAN_FRONTEND=noninteractive sudo -EH apt-get -y install mingw-w64
- run: debug=crossndk make -j3 -C app-windows ./env/dotdot/gui-orchid/.flutter-plugins
- run: debug=crossndk make -j3 -C app-windows target=win precache='--no-android --no-ios --windows -a'
- uses: actions/upload-artifact@v4
with:
name: orchid-win
path: app-windows/out-win/package
build-win-snd:
needs: [cache-submodule]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: DEBIAN_FRONTEND=noninteractive sudo -EH apt-get -y install mingw-w64
- run: make -j3 -C eth-sender target=win
- uses: actions/upload-artifact@v4
with:
name: cj-win
path: eth-sender/out-win/x86_64/cj.exe
build-win-cli:
needs: [cache-submodule]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: DEBIAN_FRONTEND=noninteractive sudo -EH apt-get -y install mingw-w64
- run: make -j3 -C cli-shared target=win
- uses: actions/upload-artifact@v4
with:
name: orchidcd-win
path: cli-shared/out-win/x86_64/orchidcd.exe
build-win-srv:
needs: [cache-submodule]
runs-on: macos-13
if: ${{ false }} # XXX: use Hyper-V
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- uses: ./.github/actions/nerdctl
- run: brew install mingw-w64 coreutils
- run: make -j3 -C srv-daemon target=win
- uses: actions/upload-artifact@v4
with:
name: orchidd-w64
path: srv-daemon/out-win/x86_64/orchidd.exe
- run: git status
build-lnx-app:
needs: [cache-submodule]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: debug=crossndk make -j3 -C app-linux ./env/dotdot/gui-orchid/.flutter-plugins
- run: debug=crossndk make -j3 -C app-linux precache='--no-android --no-ios --linux'
- uses: actions/upload-artifact@v4
with:
name: orchid-lnx
path: app-linux/out-lnx/package
build-lnx-tst:
needs: [cache-submodule]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: debug=crossndk make -j3 -C tst-network
build-lnx-cli:
needs: [cache-submodule]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
machine: [x86_64, arm64, armhf]
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: debug=crossndk make -j3 -C cli-shared machine=${{ matrix.machine }}
- uses: actions/upload-artifact@v4
with:
name: orchidcd-lnx-${{ matrix.machine }}
path: cli-shared/out-lnx/${{ matrix.machine }}/orchidcd
build-lnx-srv:
needs: [cache-submodule]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# XXX: armhf is missing rcrt1.o
machine: [x86_64, arm64]
steps:
- run: sudo rm -rf /opt
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: env/setup-ndk.sh
- run: debug=crossndk make -j3 -C srv-daemon machine=${{ matrix.machine }}
- uses: actions/upload-artifact@v4
with:
name: orchidd-lnx-${{ matrix.machine }}
path: srv-daemon/out-lnx/${{ matrix.machine }}/orchidd
if: ${{ matrix.machine != 'x86_64' }}
- run: git status
build-lnx-dkr:
needs: [cache-submodule]
runs-on: ubuntu-latest
steps:
- run: sudo rm -rf /opt
- uses: actions/checkout@v4
- run: env/setup-git.sh
- uses: ./.github/actions/submodule
- run: cd srv-daemon && env/docker.sh -j3
build-lnx-bld:
needs: [cache-submodule]
runs-on: ubuntu-latest
steps:
- run: sudo rm -rf /opt
- uses: actions/checkout@v4
- run: docker build --build-arg GIT_REPOSITORY=https://github.com/${{ github.repository }}.git --build-arg GIT_COMMIT=${{ github.sha }} --build-arg GIT_SETUP=env/setup-git.sh -t orchidd:latest srv-docker
- run: docker save -o orchidd.tar orchidd:latest
- uses: actions/upload-artifact@v4
with:
name: orchidd-dkr
path: orchidd.tar
build-lnx-mac:
needs: [cache-submodule]
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- uses: ./.github/actions/nerdctl
- run: env/setup-ndk.sh
- run: gmake -j3 -C srv-daemon target=lnx
- uses: actions/upload-artifact@v4
with:
name: orchidd-lnx-amd64
path: srv-daemon/out-lnx/x86_64/orchidd
build-lnx-bad:
needs: [cache-submodule]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: make -j3 -C srv-daemon
build-lnx-all:
needs: [build-lnx-mac, build-lnx-bld]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: orchidd-dkr
- run: tar -xvf orchidd.tar
- run: tar -xvf "$(jq -r '.[0].Layers | .[]' manifest.json | tail -n1)"
- uses: actions/download-artifact@v4
with:
name: orchidd-lnx-amd64
- run: chmod +x orchidd
- run: diff -u <(./usr/sbin/orchidd --version) <(./orchidd --version)
- run: diff -u <(xxd usr/sbin/orchidd) <(xxd orchidd)