-
Notifications
You must be signed in to change notification settings - Fork 40
556 lines (512 loc) Β· 12.3 KB
/
Test.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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
name: Test
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 3,6'
jobs:
checks:
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- run: |
npm ci
npm run lint
npm run tsc
cache:
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π§ build action
shell: bash
run: |
npm ci
npm run pkg
rm -rf node_modules
- name: π€ Upload artifact
uses: actions/upload-artifact@v4
with:
name: action
path: dist
- name: π§ run action
uses: ./dist
with:
update: true
install: base-devel git
- shell: msys2 {0}
name: π¦ test
run: |
uname -a
powershell:
needs: [cache]
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
- name: πͺ test MSYS
run: |
$env:MSYSTEM = 'MSYS'
msys2 ./test.sh MSYS
- name: π¦ test MINGW64
run: |
$env:MSYSTEM = 'MINGW64'
msys2 ./test.sh MINGW64
- name: β¬ test MINGW32
run: |
$env:MSYSTEM = 'MINGW32'
msys2 ./test.sh MINGW32
- name: π¨ test UCRT64
run: |
$env:MSYSTEM = 'UCRT64'
msys2 ./test.sh UCRT64
- name: π« test CLANG32
run: |
$env:MSYSTEM = 'CLANG32'
msys2 ./test.sh CLANG32
- name: π§ test CLANG64
run: |
$env:MSYSTEM = 'CLANG64'
msys2 ./test.sh CLANG64
cmd:
needs: [cache]
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
- name: πͺ test MSYS
shell: cmd
run: |
set MSYSTEM=MSYS
msys2 ./test.sh MSYS
- name: π¦ test MINGW64
shell: cmd
run: |
set MSYSTEM=MINGW64
msys2 ./test.sh MINGW64
- name: β¬ test MINGW32
shell: cmd
run: |
set MSYSTEM=MINGW32
msys2 ./test.sh MINGW32
- name: π¨ test UCRT64
shell: cmd
run: |
set MSYSTEM=UCRT64
msys2 ./test.sh UCRT64
- name: π« test CLANG32
shell: cmd
run: |
set MSYSTEM=CLANG32
msys2 ./test.sh CLANG32
- name: π§ test CLANG64
shell: cmd
run: |
set MSYSTEM=CLANG64
msys2 ./test.sh CLANG64
env:
needs: [cache]
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
- name: πͺ test MSYS
run: msys2 ./test.sh MSYS
env:
MSYSTEM: MSYS
- name: π¦ test MINGW64
run: msys2 ./test.sh MINGW64
env:
MSYSTEM: MINGW64
- name: β¬ test MINGW32
run: msys2 ./test.sh MINGW32
env:
MSYSTEM: MINGW32
- name: π¨ test UCRT64
run: msys2 ./test.sh UCRT64
env:
MSYSTEM: UCRT64
- name: π« test CLANG32
run: msys2 ./test.sh CLANG32
env:
MSYSTEM: CLANG32
- name: π§ test CLANG64
run: msys2 ./test.sh CLANG64
env:
MSYSTEM: CLANG64
shell:
needs: [cache]
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
- shell: msys2 {0}
run: |
uname -a
MSYS2_PATH_TYPE:
needs: [cache]
runs-on: windows-latest
steps:
- uses: actions/setup-go@v5
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
- run: msys2 -c "go env"
env:
MSYS2_PATH_TYPE: inherit
path-type:
needs: [cache]
runs-on: windows-latest
steps:
- uses: actions/setup-go@v5
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
with:
path-type: inherit
- run: msys2 -c "go env"
install:
name: π¦ mingw64 | install ${{ matrix.install }}
needs: [cache]
strategy:
fail-fast: false
matrix:
install: [ false, git, 'base-devel git' ]
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
with:
update: true
install: ${{ matrix.install }}
msystem: mingw64
- run: msys2 ./test.sh mingw64
defaultclean:
needs: [cache]
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- run: git config --global core.autocrlf input
shell: bash
- name: π§° Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
with:
update: true
install: base-devel git
- run: git describe --dirty --tags
defaultdirty:
needs: [cache]
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- name: π§° Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
with:
update: true
install: base-devel git
- run: git describe --dirty --tags
errorhandling:
needs: [cache]
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
- shell: msys2 {0}
run: |
(! false | true) || exit 1; # make sure "-o pipefail" is active by default
[[ "$-" =~ 'e' ]] || exit 1; # make sure "set -e" is active by default
workingdir:
needs: [cache]
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
- shell: msys2 {0}
run: |
# make sure we are in checkout directory
dir="$(pwd)"
cd "$GITHUB_WORKSPACE"
[[ "$dir" == "$(pwd)" ]]
norelease:
needs: [cache]
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
with:
release: false
update: false
install: ccache
- shell: msys2 {0}
run: |
uname -a
nocache:
needs: [cache]
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
with:
release: true
update: true
cache: false
- shell: msys2 {0}
run: |
uname -a
platformchecks:
name: ${{ matrix.icon }} ${{ matrix.platform }} | platformchecks
needs: [cache]
strategy:
fail-fast: false
matrix:
include:
- { platform: macos, icon: 'π§' }
- { platform: ubuntu, icon: 'π' }
runs-on: ${{ matrix.platform }}-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
with:
platform-check-severity: warn
location:
name: location | ${{ matrix.location }}
needs: [cache]
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
location:
- D:\
- D:\some\arbitrary
- RUNNER_TEMP
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
id: msys2
with:
location: ${{ matrix.location }}
update: false
- shell: msys2 {0}
run: |
cygpath -m /
- shell: pwsh
run: |
echo '${{ steps.msys2.outputs.msys2-location }}'
- shell: pwsh
run: |
$Env:MSYS2_ROOT = msys2 -c 'cygpath -a -w /'
$Env:MSYS2_ROOT
if ($env:MSYS2_ROOT -ne '${{ steps.msys2.outputs.msys2-location }}') {
Write-Error "Error: MSYS2_ROOT is '$env:MSYS2_ROOT', expected '${{ steps.msys2.outputs.msys2-location }}'"
exit 1
}
- shell: python
run: |
from subprocess import check_output
MSYS2_ROOT = check_output(['msys2', '-c', 'cygpath -a -w /'], shell=True).decode('utf-8')
print(MSYS2_ROOT)
matrix:
needs: cache
name: β¬ Generate lists of jobs
runs-on: ubuntu-latest
outputs:
jobs: ${{ steps.all.outputs.jobs }}
min: ${{ steps.min.outputs.jobs }}
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- id: all
uses: ./matrix
- id: min
uses: ./matrix
with:
systems: 'mingw32 mingw64 ucrt64 clang64'
msystem:
name: ${{ matrix.icon }} ${{ matrix.sys }} | msystem
needs: matrix
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.matrix.outputs.jobs) }}
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
with:
msystem: ${{ matrix.sys }}
- run: msys2 ./test.sh ${{ matrix.sys }}
update:
name: ${{ matrix.icon }} ${{ matrix.sys }} | update
needs: matrix
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.matrix.outputs.jobs) }}
runs-on: windows-latest
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
with:
update: true
msystem: ${{ matrix.sys }}
- run: msys2 ./test.sh ${{ matrix.sys }}
install-and-pacboy:
name: ${{ matrix.icon }} ${{ matrix.sys }} | install-and-pacboy
needs: matrix
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.matrix.outputs.min) }}
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
with:
msystem: ${{ matrix.sys }}
update: true
install: git
pacboy: openssl:p
- shell: msys2 {0}
run: |
uname -a
openssl help
pacboy:
name: ${{ matrix.icon }} ${{ matrix.sys }} | pacboy
needs: matrix
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.matrix.outputs.min) }}
steps:
- name: π§° Checkout
uses: actions/checkout@v4
- name: π₯ Download artifact
uses: actions/download-artifact@v4
with:
name: action
- name: π§ run action
uses: ./
with:
msystem: ${{ matrix.sys }}
update: true
pacboy: openssl:p
- shell: msys2 {0}
run: |
uname -a
openssl help