-
Notifications
You must be signed in to change notification settings - Fork 0
672 lines (671 loc) · 25.5 KB
/
build.yaml
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
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
# This file was generated using Kotlin DSL (.github/workflows/build.main.kts).
# If you want to modify the workflow, please change the Kotlin file and regenerate this YAML file.
# Generated with https://github.com/typesafegithub/github-workflows-kt
name: 'Build'
on:
push: {}
pull_request: {}
jobs:
check_yaml_consistency:
name: 'Check YAML consistency'
runs-on: 'ubuntu-latest'
steps:
- id: 'step-0'
name: 'Check out'
uses: 'actions/checkout@v4'
- id: 'step-1'
name: 'Execute script'
run: 'rm ''.github/workflows/build.yaml'' && ''.github/workflows/build.main.kts'''
- id: 'step-2'
name: 'Consistency check'
run: 'git diff --exit-code ''.github/workflows/build.yaml'''
build:
name: 'Build on ${{ matrix.os }}'
runs-on: '${{ matrix.os }}'
needs:
- 'check_yaml_consistency'
strategy:
fail-fast: false
matrix:
os:
- 'ubuntu-latest'
- 'windows-latest'
- 'macos-latest'
steps:
- id: 'step-0'
name: 'Install Wine on Linux'
run: |-
sudo dpkg --add-architecture i386
sudo wget -nc -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
sudo wget -NP /etc/apt/sources.list.d/ "https://dl.winehq.org/wine-builds/ubuntu/dists/$(lsb_release -c | grep -o '\w*$')/winehq-$(lsb_release -c | grep -o '\w*$').sources"
sudo apt update
sudo apt install --yes --no-install-recommends winehq-stable
winecfg /v win10
if: 'runner.os == ''Linux'''
- id: 'step-1'
name: 'Install Wine on macOS'
uses: 'tecolicom/actions-use-homebrew-tools@v1'
with:
tools: 'wine-stable'
path: '/Applications /Library'
if: 'runner.os == ''macOS'''
- id: 'step-2'
name: 'Cache InnoSetup installer on Linux and macOS'
uses: 'actions/cache@v4'
with:
path: '${{ runner.temp }}/innosetup-6.3.3.exe'
key: 'innosetup-6.3.3.exe'
if: '(runner.os == ''Linux'') || (runner.os == ''macOS'')'
- id: 'step-3'
name: 'Provision InnoSetup on Linux and macOS'
run: 'wget -O ${{ runner.temp }}/innosetup-6.3.3.exe https://files.jrsoftware.org/is/6/innosetup-6.3.3.exe'
if: |-
((runner.os == 'Linux') || (runner.os == 'macOS'))
&& (steps.step-2.outputs.cache-hit == false)
- id: 'step-4'
name: 'Start Xvfb on Linux'
run: 'Xvfb :0 -screen 0 1024x768x16 &'
if: 'runner.os == ''Linux'''
- id: 'step-5'
name: 'Install InnoSetup on Linux'
uses: 'Wandalen/wretry.action/main@v3'
with:
command: 'wine ${{ runner.temp }}/innosetup-6.3.3.exe /SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'
pre_retry_command: 'echo ::warning::Reexecuting ${{ runner.temp }}/innosetup-6.3.3.exe'
attempt_limit: '3'
attempt_delay: '1000'
env:
DISPLAY: ':0.0'
if: 'runner.os == ''Linux'''
- id: 'step-6'
name: 'Install InnoSetup on macOS'
run: 'wine ${{ runner.temp }}/innosetup-6.3.3.exe /SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'
if: 'runner.os == ''macOS'''
- id: 'step-7'
name: 'Configure Git'
run: 'git config --global core.autocrlf input'
- id: 'step-8'
name: 'Checkout'
uses: 'actions/checkout@v4'
- id: 'step-9'
name: 'Setup Java 11'
uses: 'actions/setup-java@v4'
with:
java-version: '11'
distribution: 'temurin'
- id: 'step-10'
name: 'Configure Build Properties for Linux'
uses: 'DamianReeves/[email protected]'
with:
path: 'build.properties'
contents: |-
wine.executable = wine
winepath.executable = winepath
innosetup.compiler.executable = /home/runner/.wine/drive_c/Program Files (x86)/Inno Setup 6/ISCC.exe
innosetup.via.wine = true
if: 'runner.os == ''Linux'''
- id: 'step-11'
name: 'Configure Build Properties for Windows'
uses: 'DamianReeves/[email protected]'
with:
path: 'build.properties'
contents: 'innosetup.compiler.executable = C:/Program Files (x86)/Inno Setup 6/ISCC.exe'
if: 'runner.os == ''Windows'''
- id: 'step-12'
name: 'Configure Build Properties for macOS'
uses: 'DamianReeves/[email protected]'
with:
path: 'build.properties'
contents: |-
wine.executable = wine
winepath.executable = winepath
innosetup.compiler.executable = /Users/runner/.wine/drive_c/Program Files (x86)/Inno Setup 6/ISCC.exe
innosetup.via.wine = true
if: 'runner.os == ''macOS'''
- id: 'step-13'
name: 'Build'
run: 'ant -keep-going dist'
- id: 'step-14'
name: 'Upload All Result Files'
uses: 'actions/upload-artifact@v4'
with:
name: 'All Artifacts'
path: |-
dist/jedit*manual-a4.pdf
dist/jedit*manual-letter.pdf
dist/jedit*source.tar.bz2
dist/jedit*install.jar
dist/jedit-*-noarch-1sao.tgz
dist/jedit_*_all.deb
dist/jedit*install.exe
dist/jedit*install.dmg
dist/jedit*-dist-mac-finish.tar.bz2
dist/Packages
dist/Packages.gz
dist/Packages.bz2
dist/Release
dist/Release.gpg
if-no-files-found: 'error'
compression-level: '0'
if: |-
((always())
&& (steps.step-13.outcome == 'success')) && (runner.os == 'macOS')
- id: 'step-15'
name: 'Verify Manual in A4 Paper size was Built'
shell: 'bash'
run: '[ -f dist/jedit*manual-a4.pdf ] && echo ''found=true'' >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-16'
name: 'Save Manual in A4 Paper size to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/jedit*manual-a4.pdf'
key: '${{ github.run_id }} - Manual in A4 Paper size - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-15.outcome == 'success')
&& (steps.step-15.outputs.found == 'true')
- id: 'step-17'
name: 'Verify Manual in Letter Paper size was Built'
shell: 'bash'
run: '[ -f dist/jedit*manual-letter.pdf ] && echo ''found=true'' >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-18'
name: 'Save Manual in Letter Paper size to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/jedit*manual-letter.pdf'
key: '${{ github.run_id }} - Manual in Letter Paper size - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-17.outcome == 'success')
&& (steps.step-17.outputs.found == 'true')
- id: 'step-19'
name: 'Verify Source Package was Built'
shell: 'bash'
run: '[ -f dist/jedit*source.tar.bz2 ] && echo ''found=true'' >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-20'
name: 'Save Source Package to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/jedit*source.tar.bz2'
key: '${{ github.run_id }} - Source Package - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-19.outcome == 'success')
&& (steps.step-19.outputs.found == 'true')
- id: 'step-21'
name: 'Verify Java based Installer was Built'
shell: 'bash'
run: '[ -f dist/jedit*install.jar ] && echo ''found=true'' >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-22'
name: 'Save Java based Installer to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/jedit*install.jar'
key: '${{ github.run_id }} - Java based Installer - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-21.outcome == 'success')
&& (steps.step-21.outputs.found == 'true')
- id: 'step-23'
name: 'Verify Slackware Installer was Built'
shell: 'bash'
run: '[ -f dist/jedit-*-noarch-1sao.tgz ] && echo ''found=true'' >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-24'
name: 'Save Slackware Installer to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/jedit-*-noarch-1sao.tgz'
key: '${{ github.run_id }} - Slackware Installer - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-23.outcome == 'success')
&& (steps.step-23.outputs.found == 'true')
- id: 'step-25'
name: 'Verify Debian Installer was Built'
shell: 'bash'
run: '[ -f dist/jedit_*_all.deb ] && echo ''found=true'' >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-26'
name: 'Save Debian Installer to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/jedit_*_all.deb'
key: '${{ github.run_id }} - Debian Installer - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-25.outcome == 'success')
&& (steps.step-25.outputs.found == 'true')
- id: 'step-27'
name: 'Verify Windows Installer was Built'
shell: 'bash'
run: '[ -f dist/jedit*install.exe ] && echo ''found=true'' >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-28'
name: 'Save Windows Installer to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/jedit*install.exe'
key: '${{ github.run_id }} - Windows Installer - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-27.outcome == 'success')
&& (steps.step-27.outputs.found == 'true')
- id: 'step-29'
name: 'Verify macOS Installer was Built'
shell: 'bash'
run: '[ -f dist/jedit*install.dmg ] && echo ''found=true'' >>"$GITHUB_OUTPUT"'
if: |-
((always())
&& (steps.step-13.outcome == 'success')) && (runner.os == 'macOS')
- id: 'step-30'
name: 'Save macOS Installer to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/jedit*install.dmg'
key: '${{ github.run_id }} - macOS Installer - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-29.outcome == 'success')
&& (steps.step-29.outputs.found == 'true')
- id: 'step-31'
name: 'Verify macOS Intermediate Result was Built'
shell: 'bash'
run: '[ -f dist/jedit*-dist-mac-finish.tar.bz2 ] && echo ''found=true'' >>"$GITHUB_OUTPUT"'
if: |-
((always())
&& (steps.step-13.outcome == 'success')) && (runner.os != 'macOS')
- id: 'step-32'
name: 'Save macOS Intermediate Result to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/jedit*-dist-mac-finish.tar.bz2'
key: '${{ github.run_id }} - macOS Intermediate Result - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-31.outcome == 'success')
&& (steps.step-31.outputs.found == 'true')
- id: 'step-33'
name: 'Verify Debian Repository Packages File was Built'
shell: 'bash'
run: '[ -f dist/Packages ] && echo ''found=true'' || true >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-34'
name: 'Save Debian Repository Packages File to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/Packages'
key: '${{ github.run_id }} - Debian Repository Packages File - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-33.outcome == 'success')
&& (steps.step-33.outputs.found == 'true')
- id: 'step-35'
name: 'Verify Debian Repository Packages File (gz) was Built'
shell: 'bash'
run: '[ -f dist/Packages.gz ] && echo ''found=true'' || true >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-36'
name: 'Save Debian Repository Packages File (gz) to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/Packages.gz'
key: '${{ github.run_id }} - Debian Repository Packages File (gz) - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-35.outcome == 'success')
&& (steps.step-35.outputs.found == 'true')
- id: 'step-37'
name: 'Verify Debian Repository Packages File (bz2) was Built'
shell: 'bash'
run: '[ -f dist/Packages.bz2 ] && echo ''found=true'' || true >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-38'
name: 'Save Debian Repository Packages File (bz2) to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/Packages.bz2'
key: '${{ github.run_id }} - Debian Repository Packages File (bz2) - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-37.outcome == 'success')
&& (steps.step-37.outputs.found == 'true')
- id: 'step-39'
name: 'Verify Debian Repository Release File was Built'
shell: 'bash'
run: '[ -f dist/Release ] && echo ''found=true'' || true >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-40'
name: 'Save Debian Repository Release File to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/Release'
key: '${{ github.run_id }} - Debian Repository Release File - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-39.outcome == 'success')
&& (steps.step-39.outputs.found == 'true')
- id: 'step-41'
name: 'Verify Debian Repository Release File Signature was Built'
shell: 'bash'
run: '[ -f dist/Release.gpg ] && echo ''found=true'' || true >>"$GITHUB_OUTPUT"'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-42'
name: 'Save Debian Repository Release File Signature to Cache'
uses: 'actions/cache/save@v4'
with:
path: 'dist/Release.gpg'
key: '${{ github.run_id }} - Debian Repository Release File Signature - ${{ runner.os }}'
enableCrossOsArchive: 'true'
if: |2-
((always())
&& (steps.step-13.outcome == 'success'))
&& (steps.step-41.outcome == 'success')
&& (steps.step-41.outputs.found == 'true')
- id: 'step-43'
name: 'Upload All Unexpected Result Files'
uses: 'actions/upload-artifact@v4'
with:
name: 'Unexpected Artifacts (${{ runner.os }})'
path: |-
dist
!dist/jedit*manual-a4.pdf
!dist/jedit*manual-letter.pdf
!dist/jedit*source.tar.bz2
!dist/jedit*install.jar
!dist/jedit-*-noarch-1sao.tgz
!dist/jedit_*_all.deb
!dist/jedit*install.exe
!dist/jedit*install.dmg
!dist/jedit*-dist-mac-finish.tar.bz2
!dist/Packages
!dist/Packages.gz
!dist/Packages.bz2
!dist/Release
!dist/Release.gpg
if-no-files-found: 'ignore'
compression-level: '0'
if: |-
(always())
&& (steps.step-13.outcome == 'success')
- id: 'step-44'
name: 'Verify No Unexpected Result Files'
shell: 'bash'
run: '[ ''${{ steps.step-43.outputs.artifact-id }}'' == '''' ]'
if: |-
(always())
&& (steps.step-43.outcome == 'success')
upload-artifacts:
name: 'Upload Individual Artifacts from one of the Jobs'
runs-on: 'ubuntu-latest'
needs:
- 'build'
- 'check_yaml_consistency'
if: |-
(always()
&& (needs.build.result != 'skipped'))
steps:
- id: 'step-0'
name: 'Restore Manual in A4 Paper size from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/jedit*manual-a4.pdf'
key: '${{ github.run_id }} - Manual in A4 Paper size - macOS'
restore-keys: '${{ github.run_id }} - Manual in A4 Paper size - '
- id: 'step-1'
name: 'Upload Manual in A4 Paper size'
uses: 'actions/upload-artifact@v4'
with:
name: 'Manual in A4 Paper size'
path: 'dist/jedit*manual-a4.pdf'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-2'
name: 'Restore Manual in Letter Paper size from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/jedit*manual-letter.pdf'
key: '${{ github.run_id }} - Manual in Letter Paper size - macOS'
restore-keys: '${{ github.run_id }} - Manual in Letter Paper size - '
- id: 'step-3'
name: 'Upload Manual in Letter Paper size'
uses: 'actions/upload-artifact@v4'
with:
name: 'Manual in Letter Paper size'
path: 'dist/jedit*manual-letter.pdf'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-4'
name: 'Restore Source Package from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/jedit*source.tar.bz2'
key: '${{ github.run_id }} - Source Package - macOS'
restore-keys: '${{ github.run_id }} - Source Package - '
- id: 'step-5'
name: 'Upload Source Package'
uses: 'actions/upload-artifact@v4'
with:
name: 'Source Package'
path: 'dist/jedit*source.tar.bz2'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-6'
name: 'Restore Java based Installer from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/jedit*install.jar'
key: '${{ github.run_id }} - Java based Installer - macOS'
restore-keys: '${{ github.run_id }} - Java based Installer - '
- id: 'step-7'
name: 'Upload Java based Installer'
uses: 'actions/upload-artifact@v4'
with:
name: 'Java based Installer'
path: 'dist/jedit*install.jar'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-8'
name: 'Restore Slackware Installer from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/jedit-*-noarch-1sao.tgz'
key: '${{ github.run_id }} - Slackware Installer - macOS'
restore-keys: '${{ github.run_id }} - Slackware Installer - '
- id: 'step-9'
name: 'Upload Slackware Installer'
uses: 'actions/upload-artifact@v4'
with:
name: 'Slackware Installer'
path: 'dist/jedit-*-noarch-1sao.tgz'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-10'
name: 'Restore Debian Installer from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/jedit_*_all.deb'
key: '${{ github.run_id }} - Debian Installer - macOS'
restore-keys: '${{ github.run_id }} - Debian Installer - '
- id: 'step-11'
name: 'Upload Debian Installer'
uses: 'actions/upload-artifact@v4'
with:
name: 'Debian Installer'
path: 'dist/jedit_*_all.deb'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-12'
name: 'Restore Windows Installer from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/jedit*install.exe'
key: '${{ github.run_id }} - Windows Installer - macOS'
restore-keys: '${{ github.run_id }} - Windows Installer - '
- id: 'step-13'
name: 'Upload Windows Installer'
uses: 'actions/upload-artifact@v4'
with:
name: 'Windows Installer'
path: 'dist/jedit*install.exe'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-14'
name: 'Restore macOS Installer from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/jedit*install.dmg'
key: '${{ github.run_id }} - macOS Installer - macOS'
restore-keys: '${{ github.run_id }} - macOS Installer - '
- id: 'step-15'
name: 'Upload macOS Installer'
uses: 'actions/upload-artifact@v4'
with:
name: 'macOS Installer'
path: 'dist/jedit*install.dmg'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-16'
name: 'Restore macOS Intermediate Result from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/jedit*-dist-mac-finish.tar.bz2'
key: '${{ github.run_id }} - macOS Intermediate Result - macOS'
restore-keys: '${{ github.run_id }} - macOS Intermediate Result - '
- id: 'step-17'
name: 'Upload macOS Intermediate Result'
uses: 'actions/upload-artifact@v4'
with:
name: 'macOS Intermediate Result'
path: 'dist/jedit*-dist-mac-finish.tar.bz2'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-18'
name: 'Restore Debian Repository Packages File from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/Packages'
key: '${{ github.run_id }} - Debian Repository Packages File - macOS'
restore-keys: '${{ github.run_id }} - Debian Repository Packages File - '
- id: 'step-19'
name: 'Upload Debian Repository Packages File'
uses: 'actions/upload-artifact@v4'
with:
name: 'Debian Repository Packages File'
path: 'dist/Packages'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-20'
name: 'Restore Debian Repository Packages File (gz) from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/Packages.gz'
key: '${{ github.run_id }} - Debian Repository Packages File (gz) - macOS'
restore-keys: '${{ github.run_id }} - Debian Repository Packages File (gz) - '
- id: 'step-21'
name: 'Upload Debian Repository Packages File (gz)'
uses: 'actions/upload-artifact@v4'
with:
name: 'Debian Repository Packages File (gz)'
path: 'dist/Packages.gz'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-22'
name: 'Restore Debian Repository Packages File (bz2) from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/Packages.bz2'
key: '${{ github.run_id }} - Debian Repository Packages File (bz2) - macOS'
restore-keys: '${{ github.run_id }} - Debian Repository Packages File (bz2) - '
- id: 'step-23'
name: 'Upload Debian Repository Packages File (bz2)'
uses: 'actions/upload-artifact@v4'
with:
name: 'Debian Repository Packages File (bz2)'
path: 'dist/Packages.bz2'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-24'
name: 'Restore Debian Repository Release File from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/Release'
key: '${{ github.run_id }} - Debian Repository Release File - macOS'
restore-keys: '${{ github.run_id }} - Debian Repository Release File - '
- id: 'step-25'
name: 'Upload Debian Repository Release File'
uses: 'actions/upload-artifact@v4'
with:
name: 'Debian Repository Release File'
path: 'dist/Release'
if-no-files-found: 'ignore'
compression-level: '0'
- id: 'step-26'
name: 'Restore Debian Repository Release File Signature from Cache'
uses: 'actions/cache/restore@v4'
with:
path: 'dist/Release.gpg'
key: '${{ github.run_id }} - Debian Repository Release File Signature - macOS'
restore-keys: '${{ github.run_id }} - Debian Repository Release File Signature - '
- id: 'step-27'
name: 'Upload Debian Repository Release File Signature'
uses: 'actions/upload-artifact@v4'
with:
name: 'Debian Repository Release File Signature'
path: 'dist/Release.gpg'
if-no-files-found: 'ignore'
compression-level: '0'