File tree Expand file tree Collapse file tree 1 file changed +98
-18
lines changed
docs/modules/reference/pages/assemble Expand file tree Collapse file tree 1 file changed +98
-18
lines changed Original file line number Diff line number Diff line change @@ -98,21 +98,35 @@ include::partial$matrix/yaml/matrix.adoc[indent=6]
98
98
- '-f'
99
99
100
100
# icon:dot-circle[]
101
- linux :
101
+ linuxX86 :
102
102
# A list of arguments.
103
103
# icon:dot-circle[]
104
104
args:
105
105
- '--static'
106
106
107
107
# icon:dot-circle[]
108
- windows :
108
+ windowsX86 :
109
109
# A list of arguments.
110
110
# icon:dot-circle[]
111
111
args:
112
112
- '--foo'
113
113
114
114
# icon:dot-circle[]
115
- osx:
115
+ macosX86:
116
+ # A list of arguments.
117
+ # icon:dot-circle[]
118
+ args:
119
+ - '--bar'
120
+
121
+ # icon:dot-circle[]
122
+ linuxArm:
123
+ # A list of arguments.
124
+ # icon:dot-circle[]
125
+ args:
126
+ - '--static'
127
+
128
+ # icon:dot-circle[]
129
+ macosArm:
116
130
# A list of arguments.
117
131
# icon:dot-circle[]
118
132
args:
@@ -198,19 +212,31 @@ include::partial$matrix/toml/matrix.adoc[]
198
212
args = ["-f]
199
213
200
214
# icon:dot-circle[]
201
- [assemble.{assembler_id}.app.linux ]
215
+ [assemble.{assembler_id}.app.linuxX86 ]
202
216
# A list of arguments.
203
217
# icon:dot-circle[]
204
218
args = ["--static]
205
219
206
220
# icon:dot-circle[]
207
- [assemble.{assembler_id}.app.windows ]
221
+ [assemble.{assembler_id}.app.windowsX86 ]
208
222
# A list of arguments.
209
223
# icon:dot-circle[]
210
224
args = ["--foo]
211
225
212
226
# icon:dot-circle[]
213
- [assemble.{assembler_id}.app.osx]
227
+ [assemble.{assembler_id}.app.macosX86]
228
+ # A list of arguments.
229
+ # icon:dot-circle[]
230
+ args = ["--bar]
231
+
232
+ # icon:dot-circle[]
233
+ [assemble.{assembler_id}.app.linuxArm]
234
+ # A list of arguments.
235
+ # icon:dot-circle[]
236
+ args = ["--static]
237
+
238
+ # icon:dot-circle[]
239
+ [assemble.{assembler_id}.app.macosArm]
214
240
# A list of arguments.
215
241
# icon:dot-circle[]
216
242
args = ["--bar]
@@ -309,21 +335,35 @@ include::partial$matrix/json/matrix.adoc[indent=8]
309
335
},
310
336
311
337
// icon:dot-circle[]
312
- "linux ": {
338
+ "linuxX86 ": {
313
339
// A list of arguments.
314
340
// icon:dot-circle[]
315
341
"args": ["--static"]
316
342
},
317
343
318
344
// icon:dot-circle[]
319
- "windows ": {
345
+ "windowsX86 ": {
320
346
// A list of arguments.
321
347
// icon:dot-circle[]
322
348
"args": ["--foo"]
323
349
},
324
350
325
351
// icon:dot-circle[]
326
- "osx": {
352
+ "macosX86": {
353
+ // A list of arguments.
354
+ // icon:dot-circle[]
355
+ "args": ["--bar"]
356
+ },
357
+
358
+ // icon:dot-circle[]
359
+ "linuxArm": {
360
+ // A list of arguments.
361
+ // icon:dot-circle[]
362
+ "args": ["--static"]
363
+ },
364
+
365
+ // icon:dot-circle[]
366
+ "macosArm": {
327
367
// A list of arguments.
328
368
// icon:dot-circle[]
329
369
"args": ["--bar"]
@@ -452,41 +492,67 @@ include::partial$matrix/maven/matrix.adoc[indent=8]
452
492
<!--
453
493
icon:dot-circle[]
454
494
--->
455
- <linux >
495
+ <linuxX86 >
456
496
<!--
457
497
A list of arguments.
458
498
icon:dot-circle[]
459
499
-->
460
500
<args>
461
501
<arg>--static</arg>
462
502
</args>
463
- </linux >
503
+ </linuxX86 >
464
504
465
505
<!--
466
506
icon:dot-circle[]
467
507
--->
468
- <windows >
508
+ <windowsX86 >
469
509
<!--
470
510
A list of arguments.
471
511
icon:dot-circle[]
472
512
-->
473
513
<args>
474
514
<arg>--foo</arg>
475
515
</args>
476
- </windows >
516
+ </windowsX86 >
477
517
478
518
<!--
479
519
icon:dot-circle[]
480
520
--->
481
- <osx >
521
+ <macosX86 >
482
522
<!--
483
523
A list of arguments.
484
524
icon:dot-circle[]
485
525
-->
486
526
<args>
487
527
<arg>--bar</arg>
488
528
</args>
489
- </osx>
529
+ </macosX86>
530
+
531
+ <!--
532
+ icon:dot-circle[]
533
+ --->
534
+ <linuxArm>
535
+ <!--
536
+ A list of arguments.
537
+ icon:dot-circle[]
538
+ -->
539
+ <args>
540
+ <arg>--static</arg>
541
+ </args>
542
+ </linuxArm>
543
+
544
+ <!--
545
+ icon:dot-circle[]
546
+ --->
547
+ <macosArm>
548
+ <!--
549
+ A list of arguments.
550
+ icon:dot-circle[]
551
+ -->
552
+ <args>
553
+ <arg>--bar</arg>
554
+ </args>
555
+ </macosArm>
490
556
491
557
include::partial$assemble/maven/common-archive-options.adoc[]
492
558
@@ -577,21 +643,35 @@ include::partial$matrix/gradle/matrix.adoc[indent=8]
577
643
}
578
644
579
645
// icon:dot-circle[]
580
- linux {
646
+ linuxX86 {
581
647
// A list of arguments.
582
648
// icon:dot-circle[]
583
649
arg('--static')
584
650
}
585
651
586
652
// icon:dot-circle[]
587
- windows {
653
+ windowsX86 {
588
654
// A list of arguments.
589
655
// icon:dot-circle[]
590
656
arg('--foo')
591
657
}
592
658
593
659
// icon:dot-circle[]
594
- osx {
660
+ macosX86 {
661
+ // A list of arguments.
662
+ // icon:dot-circle[]
663
+ arg('--bar')
664
+ }
665
+
666
+ // icon:dot-circle[]
667
+ linuxArm {
668
+ // A list of arguments.
669
+ // icon:dot-circle[]
670
+ arg('--static')
671
+ }
672
+
673
+ // icon:dot-circle[]
674
+ macosArm {
595
675
// A list of arguments.
596
676
// icon:dot-circle[]
597
677
arg('--bar')
You can’t perform that action at this time.
0 commit comments