forked from Mcrich23/Container-Compose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-output.log
More file actions
2901 lines (2791 loc) · 174 KB
/
test-output.log
File metadata and controls
2901 lines (2791 loc) · 174 KB
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
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Fetching https://github.com/mcrich23/container from cache
Fetched https://github.com/mcrich23/container from cache (0.51s)
Fetching https://github.com/swiftlang/swift-syntax.git from cache
Fetching https://github.com/apple/swift-distributed-tracing.git from cache
Fetching https://github.com/apple/swift-collections.git from cache
Fetching https://github.com/apple/swift-nio-transport-services.git from cache
Fetching https://github.com/apple/swift-crypto.git from cache
Fetching https://github.com/apple/swift-certificates.git from cache
Fetched https://github.com/apple/swift-distributed-tracing.git from cache (0.67s)
Fetching https://github.com/facebook/zstd.git from cache
Fetched https://github.com/apple/swift-collections.git from cache (0.69s)
Fetching https://github.com/apple/swift-service-context.git from cache
Fetched https://github.com/apple/swift-service-context.git from cache (0.43s)
Fetching https://github.com/apple/swift-argument-parser.git from cache
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (1.27s)
Fetched https://github.com/apple/swift-certificates.git from cache (1.28s)
Fetching https://github.com/swift-server/swift-service-lifecycle.git from cache
Fetching https://github.com/apple/swift-numerics.git from cache
Fetched https://github.com/swiftlang/swift-syntax.git from cache (1.31s)
Fetched https://github.com/apple/swift-crypto.git from cache (1.31s)
Fetching https://github.com/apple/swift-log.git from cache
Fetching https://github.com/onevcat/Rainbow from cache
Fetched https://github.com/facebook/zstd.git from cache (0.88s)
Fetching https://github.com/apple/swift-protobuf.git from cache
Fetched https://github.com/apple/swift-numerics.git from cache (0.42s)
Fetching https://github.com/apple/swift-http-types.git from cache
Fetched https://github.com/onevcat/Rainbow from cache (0.41s)
Fetching https://github.com/swift-server/async-http-client.git from cache
Fetched https://github.com/swift-server/swift-service-lifecycle.git from cache (0.47s)
Fetching https://github.com/apple/swift-http-structured-headers.git from cache
Fetched https://github.com/apple/swift-argument-parser.git from cache (0.66s)
Fetching https://github.com/apple/swift-atomics.git from cache
Fetched https://github.com/apple/swift-log.git from cache (0.52s)
Fetching https://github.com/apple/swift-nio-http2.git from cache
Fetched https://github.com/apple/swift-http-types.git from cache (0.40s)
Fetching https://github.com/jpsim/Yams.git from cache
Fetched https://github.com/apple/swift-http-structured-headers.git from cache (0.39s)
Fetched https://github.com/apple/swift-atomics.git from cache (0.36s)
Fetching https://github.com/apple/swift-async-algorithms.git from cache
Fetching https://github.com/apple/swift-nio.git from cache
Fetched https://github.com/swift-server/async-http-client.git from cache (0.67s)
Fetching https://github.com/grpc/grpc-swift.git from cache
Fetched https://github.com/apple/swift-nio-http2.git from cache (0.58s)
Fetching https://github.com/apple/swift-algorithms.git from cache
Fetched https://github.com/apple/swift-protobuf.git from cache (0.92s)
Fetching https://github.com/apple/swift-system.git from cache
Fetched https://github.com/jpsim/Yams.git from cache (0.49s)
Fetched https://github.com/apple/swift-async-algorithms.git from cache (0.46s)
Fetching https://github.com/apple/swift-asn1.git from cache
Fetching https://github.com/apple/containerization.git from cache
Fetched https://github.com/apple/swift-algorithms.git from cache (0.40s)
Fetching https://github.com/apple/swift-nio-extras.git from cache
Fetched https://github.com/apple/swift-system.git from cache (0.46s)
Fetching https://github.com/apple/swift-nio-ssl.git from cache
Fetched https://github.com/grpc/grpc-swift.git from cache (0.60s)
Fetched https://github.com/apple/swift-nio.git from cache (0.92s)
Fetched https://github.com/apple/swift-asn1.git from cache (0.48s)
Fetched https://github.com/apple/swift-nio-extras.git from cache (0.50s)
Fetched https://github.com/apple/containerization.git from cache (0.92s)
Computing version for https://github.com/swiftlang/swift-syntax.git
Fetched https://github.com/apple/swift-nio-ssl.git from cache (0.65s)
Computed https://github.com/swiftlang/swift-syntax.git at 602.0.0 (4.30s)
Computing version for https://github.com/apple/containerization.git
Computed https://github.com/apple/containerization.git at 0.24.5 (0.62s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.94.0 (0.61s)
Computing version for https://github.com/apple/swift-protobuf.git
Computed https://github.com/apple/swift-protobuf.git at 1.33.3 (0.54s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.3.0 (0.60s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.7.0 (0.55s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.9.1 (0.52s)
Computing version for https://github.com/onevcat/Rainbow
Computed https://github.com/onevcat/Rainbow at 4.2.1 (0.65s)
Computing version for https://github.com/jpsim/Yams.git
Computed https://github.com/jpsim/Yams.git at 5.4.0 (0.58s)
Computing version for https://github.com/facebook/zstd.git
Computed https://github.com/facebook/zstd.git at 1.5.7 (0.61s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.36.0 (0.55s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.53s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.30.3 (0.54s)
Computing version for https://github.com/grpc/grpc-swift.git
Computed https://github.com/grpc/grpc-swift.git at 1.27.1 (0.71s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.15.1 (0.62s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (0.94s)
Computing version for https://github.com/apple/swift-distributed-tracing.git
Computed https://github.com/apple/swift-distributed-tracing.git at 1.3.1 (0.50s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (0.58s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.26.0 (0.50s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.32.1 (0.62s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.39.0 (0.52s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.5.1 (0.59s)
Computing version for https://github.com/apple/swift-service-context.git
Computed https://github.com/apple/swift-service-context.git at 1.2.1 (0.53s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.1.1 (0.50s)
Computing version for https://github.com/apple/swift-async-algorithms.git
Computed https://github.com/apple/swift-async-algorithms.git at 1.1.1 (0.54s)
Computing version for https://github.com/swift-server/swift-service-lifecycle.git
Computed https://github.com/swift-server/swift-service-lifecycle.git at 2.9.1 (0.50s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.17.1 (0.64s)
Computing version for https://github.com/apple/swift-http-structured-headers.git
Computed https://github.com/apple/swift-http-structured-headers.git at 1.6.0 (0.50s)
Computing version for https://github.com/apple/swift-http-types.git
Computed https://github.com/apple/swift-http-types.git at 1.5.1 (0.49s)
Creating working copy for https://github.com/apple/swift-async-algorithms.git
Working copy of https://github.com/apple/swift-async-algorithms.git resolved at 1.1.1
Creating working copy for https://github.com/facebook/zstd.git
Working copy of https://github.com/facebook/zstd.git resolved at 1.5.7
Creating working copy for https://github.com/swiftlang/swift-syntax.git
Working copy of https://github.com/swiftlang/swift-syntax.git resolved at 602.0.0
Creating working copy for https://github.com/apple/containerization.git
Working copy of https://github.com/apple/containerization.git resolved at 0.24.5
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.1.1
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.94.0
Creating working copy for https://github.com/apple/swift-http-types.git
Working copy of https://github.com/apple/swift-http-types.git resolved at 1.5.1
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.39.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.9.1
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.26.0
Creating working copy for https://github.com/apple/swift-distributed-tracing.git
Working copy of https://github.com/apple/swift-distributed-tracing.git resolved at 1.3.1
Creating working copy for https://github.com/apple/swift-http-structured-headers.git
Working copy of https://github.com/apple/swift-http-structured-headers.git resolved at 1.6.0
Creating working copy for https://github.com/swift-server/async-http-client.git
Working copy of https://github.com/swift-server/async-http-client.git resolved at 1.30.3
Creating working copy for https://github.com/apple/swift-protobuf.git
Working copy of https://github.com/apple/swift-protobuf.git resolved at 1.33.3
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.17.1
Creating working copy for https://github.com/mcrich23/container
Working copy of https://github.com/mcrich23/container resolved at add-command-option-group-function-macro (1d4e030)
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-service-context.git
Working copy of https://github.com/apple/swift-service-context.git resolved at 1.2.1
Creating working copy for https://github.com/onevcat/Rainbow
Working copy of https://github.com/onevcat/Rainbow resolved at 4.2.1
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.6.4
Creating working copy for https://github.com/grpc/grpc-swift.git
Working copy of https://github.com/grpc/grpc-swift.git resolved at 1.27.1
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.15.1
Creating working copy for https://github.com/jpsim/Yams.git
Working copy of https://github.com/jpsim/Yams.git resolved at 5.4.0
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.32.1
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.36.0
Creating working copy for https://github.com/swift-server/swift-service-lifecycle.git
Working copy of https://github.com/swift-server/swift-service-lifecycle.git resolved at 2.9.1
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.7.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.5.1
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/grpc-swift/Plugins/GRPCSwiftPlugin/plugin.swift:264:42: warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
262 | }
263 |
264 | let workDirectory = PathLike(context.pluginWorkDirectory)
| |- warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
| `- note: use 'pluginWorkDirectoryURL' instead
265 |
266 | return try self.createBuildCommands(
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/grpc-swift/Plugins/GRPCSwiftPlugin/plugin.swift:287:18: warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
285 |
286 | init(_ path: String) {
287 | self.value = Path(path)
| `- warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
288 | }
289 |
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/grpc-swift/Plugins/GRPCSwiftPlugin/plugin.swift:291:26: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
289 |
290 | init(_ element: FileList.Element) {
291 | self.value = element.path
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
292 | }
293 |
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/grpc-swift/Plugins/GRPCSwiftPlugin/plugin.swift:295:26: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
293 |
294 | init(_ element: PluginContext.Tool) {
295 | self.value = element.path
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
296 | }
297 |
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/grpc-swift/Plugins/GRPCSwiftPlugin/plugin.swift:303:23: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
301 |
302 | var lastComponent: String {
303 | return self.value.lastComponent
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
304 | }
305 |
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/grpc-swift/Plugins/GRPCSwiftPlugin/plugin.swift:308:29: warning: 'removingLastComponent()' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
306 | func removingLastComponent() -> Self {
307 | var copy = self
308 | copy.value = self.value.removingLastComponent()
| `- warning: 'removingLastComponent()' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
309 | return copy
310 | }
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/grpc-swift/Plugins/GRPCSwiftPlugin/plugin.swift:314:29: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
312 | func appending(_ path: String) -> Self {
313 | var copy = self
314 | copy.value = self.value.appending(path)
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
315 | return copy
316 | }
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/grpc-swift/Plugins/GRPCSwiftPlugin/plugin.swift:327:17: warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
325 | outputFiles: [PathLike]
326 | ) -> PackagePlugin.Command {
327 | return Self.buildCommand(
| `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
328 | displayName: displayName,
329 | executable: executable.value,
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/grpc-swift/Plugins/GRPCSwiftPlugin/plugin.swift:339:35: warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
337 | extension URL {
338 | init(_ pathLike: PathLike) {
339 | self = URL(fileURLWithPath: "\(pathLike.value)")
| `- warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
340 | }
341 | }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[1/1] Compiling plugin GRPCSwiftPlugin
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:9:14: warning: associated value 'invalidTarget' of 'Sendable'-conforming enum 'PluginError' has non-Sendable type 'any Target'
7 | enum PluginError: Error, CustomStringConvertible {
8 | /// Indicates that the target where the plugin was applied to was not `SourceModuleTarget`.
9 | case invalidTarget(Target)
| `- warning: associated value 'invalidTarget' of 'Sendable'-conforming enum 'PluginError' has non-Sendable type 'any Target'
10 | /// Indicates that the file extension of an input file was not `.proto`.
11 | case invalidInputFileExtension(String)
PackagePlugin.Target:1:17: note: protocol 'Target' does not conform to the 'Sendable' protocol
1 | public protocol Target {
| `- note: protocol 'Target' does not conform to the 'Sendable' protocol
2 | var id: Self.ID { get }
3 | typealias ID = String
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'PackagePlugin' as warnings
1 | import Foundation
2 | import PackagePlugin
| `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'PackagePlugin' as warnings
3 |
4 | @main
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:9:14: warning: associated value 'invalidTarget' of 'Sendable'-conforming enum 'PluginError' has non-Sendable type 'any Target'
7 | enum PluginError: Error, CustomStringConvertible {
8 | /// Indicates that the target where the plugin was applied to was not `SourceModuleTarget`.
9 | case invalidTarget(Target)
| `- warning: associated value 'invalidTarget' of 'Sendable'-conforming enum 'PluginError' has non-Sendable type 'any Target'
10 | /// Indicates that the file extension of an input file was not `.proto`.
11 | case invalidInputFileExtension(String)
PackagePlugin.Target:1:17: note: protocol 'Target' does not conform to the 'Sendable' protocol
1 | public protocol Target {
| `- note: protocol 'Target' does not conform to the 'Sendable' protocol
2 | var id: Self.ID { get }
3 | typealias ID = String
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:2:1: warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'PackagePlugin' as warnings
1 | import Foundation
2 | import PackagePlugin
| `- warning: add '@preconcurrency' to treat 'Sendable'-related errors from module 'PackagePlugin' as warnings
3 |
4 | @main
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:117:24: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
115 | let configurationFilePath = sourceFiles.first(
116 | where: {
117 | $0.path.lastComponent == Self.configurationFileName
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
118 | }
119 | )?.path
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:117:29: warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
115 | let configurationFilePath = sourceFiles.first(
116 | where: {
117 | $0.path.lastComponent == Self.configurationFileName
| `- warning: 'lastComponent' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
118 | }
119 | )?.path
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:119:16: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
117 | $0.path.lastComponent == Self.configurationFileName
118 | }
119 | )?.path
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
120 | else {
121 | throw PluginError.noConfigFound(Self.configurationFileName)
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:123:64: warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
121 | throw PluginError.noConfigFound(Self.configurationFileName)
122 | }
123 | let data = try Data(contentsOf: URL(fileURLWithPath: "\(configurationFilePath)"))
| `- warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
124 | let configuration = try JSONDecoder().decode(Configuration.self, from: data)
125 | try validateConfiguration(configuration)
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:131:26: warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
129 | if let configuredProtocPath = configuration.protocPath {
130 | // The user set the config path in the file. So let's take that
131 | protocPath = Path(configuredProtocPath)
| `- warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
132 | } else if let environmentPath = ProcessInfo.processInfo.environment["PROTOC_PATH"] {
133 | // The user set the env variable. So let's take that
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:134:26: warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
132 | } else if let environmentPath = ProcessInfo.processInfo.environment["PROTOC_PATH"] {
133 | // The user set the env variable. So let's take that
134 | protocPath = Path(environmentPath)
| `- warning: 'init(_:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
135 | } else {
136 | // The user didn't set anything so let's try see if SPM can find a binary for us
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:137:45: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
135 | } else {
136 | // The user didn't set anything so let's try see if SPM can find a binary for us
137 | protocPath = try tool("protoc").path
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
138 | }
139 | let protocGenSwiftPath = try tool("protoc-gen-swift").path
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:139:63: warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
137 | protocPath = try tool("protoc").path
138 | }
139 | let protocGenSwiftPath = try tool("protoc-gen-swift").path
| |- warning: 'path' is deprecated: renamed to 'url' [#DeprecatedDeclaration]
| `- note: use 'url' instead
140 |
141 | return configuration.invocations.map { invocation in
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:143:50: warning: 'removingLastComponent()' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
141 | return configuration.invocations.map { invocation in
142 | self.invokeProtoc(
143 | directory: configurationFilePath.removingLastComponent(),
| `- warning: 'removingLastComponent()' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
144 | invocation: invocation,
145 | protocPath: protocPath,
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:170:41: warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
168 | // Construct the `protoc` arguments.
169 | var protocArgs = [
170 | "--plugin=protoc-gen-swift=\(protocGenSwiftPath)",
| `- warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
171 | "--swift_out=\(outputDirectory)",
172 | ]
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:171:27: warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
169 | var protocArgs = [
170 | "--plugin=protoc-gen-swift=\(protocGenSwiftPath)",
171 | "--swift_out=\(outputDirectory)",
| `- warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
172 | ]
173 |
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:177:29: warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
175 | // the proto files relative to it.
176 | protocArgs.append("-I")
177 | protocArgs.append("\(directory)")
| `- warning: 'appendInterpolation' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
178 |
179 | // Add the visibility if it was set
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:205:41: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
203 | // Append the file to the protoc args so that it is used for generating
204 | protocArgs.append("\(file)")
205 | inputFiles.append(directory.appending(file))
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
206 |
207 | // The name of the output file is based on the name of the input file.
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:212:54: warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
210 | file.removeLast(5)
211 | file.append("pb.swift")
212 | let protobufOutputPath = outputDirectory.appending(file)
| `- warning: 'appending' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
213 |
214 | // Add the outputPath as an output file
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:221:24: warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
219 | // system know when to invoke the command. The output paths are passed on to
220 | // the rule engine in the build system.
221 | return Command.buildCommand(
| `- warning: 'buildCommand(displayName:executable:arguments:environment:inputFiles:outputFiles:)' is deprecated: Use `URL` type instead of `Path`. [#DeprecatedDeclaration]
222 | displayName: "Generating swift files from proto files",
223 | executable: protocPath,
/Users/kieranlal/workspace/Container-Compose/.build/checkouts/swift-protobuf/Plugins/SwiftProtobufPlugin/plugin.swift:251:42: warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
249 | }
250 | return try createBuildCommands(
251 | pluginWorkDirectory: context.pluginWorkDirectory,
| |- warning: 'pluginWorkDirectory' is deprecated: renamed to 'pluginWorkDirectoryURL' [#DeprecatedDeclaration]
| `- note: use 'pluginWorkDirectoryURL' instead
252 | sourceFiles: swiftTarget.sourceFiles,
253 | tool: context.tool
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[2/2] Compiling plugin SwiftProtobufPlugin
[3/3] Compiling plugin GenerateManual
[4/4] Compiling plugin GenerateDoccReference
Building for debugging...
[4/556] /Users/kieranlal/workspace/Container-Compose/.build/arm64-apple-macosx/debug/Container-ComposePackageTests.derived/runner.swift
[5/556] Write sources
[11/556] Write Container-Compose-entitlement.plist
[12/556] Copying PrivacyInfo.xcprivacy
[16/556] Compiling aesni-x86_64-apple.S
[16/556] Compiling aesni-x86_64-linux.S
[18/556] Compiling aesv8-armv7-linux.S
[19/556] Compiling aesv8-armv8-apple.S
[20/556] Write swift-version--58304C5D6DBC2206.txt
[21/556] Compiling divsufsort.c
[22/556] Compiling cover.c
[23/556] Compiling fastcover.c
[24/556] Compiling huf_decompress_amd64.S
[25/556] Compiling zstd_decompress.c
[26/556] Compiling zdict.c
[27/556] Compiling zstd_ddict.c
[28/556] Compiling zstd_decompress_block.c
[29/556] Compiling zstd_preSplit.c
[30/556] Compiling refcount.cc
[31/556] Compiling zstd_ldm.c
[32/556] Compiling zstdmt_compress.c
[33/556] Compiling spake2plus.cc
[34/556] Compiling huf_decompress.c
[35/556] Compiling zstd_compress_sequences.c
[36/556] Compiling zstd_opt.c
[37/556] Compiling zstd_compress_superblock.c
[38/556] Compiling zstd_fast.c
[39/556] Compiling zstd_compress_literals.c
[40/556] Compiling zstd_double_fast.c
[41/556] Compiling hist.c
[42/556] Compiling threading.c
[43/556] Compiling zstd_common.c
[44/556] Compiling fse_compress.c
[45/556] Compiling xxhash.c
[46/556] Compiling error_private.c
[46/556] Write sources
[46/556] Compiling pool.c
[49/556] Write sources
[52/556] Compiling entropy_common.c
[53/556] Compiling fse_decompress.c
[54/556] Compiling huf_compress.c
[54/556] Write sources
[59/556] Copying PrivacyInfo.xcprivacy
[59/556] Write sources
[68/556] Compiling _NumericsShims _NumericsShims.c
[69/556] Compiling debug.c
[70/661] Compiling _AtomicsShims.c
[71/661] Compiling zstd_compress.c
[72/661] Write sources
[90/681] Compiling ServiceContextModule ServiceContextKey.swift
[91/681] Compiling RealModule RealFunctions.swift
[92/681] Compiling RealModule Real.swift
[93/682] Emitting module RealModule
[94/682] Compiling Rainbow Color.swift
[95/682] Compiling Rainbow ColorApproximation.swift
[96/682] Compiling RealModule Float80+Real.swift
[97/682] Emitting module ServiceContextModule
[98/682] Compiling ServiceContextModule ServiceContext.swift
[99/682] Compiling _NIOBase64 Base64.swift
[100/682] Emitting module _NIOBase64
[101/682] Compiling Rainbow ConditionalStyleBuilder.swift
[102/682] Compiling Rainbow ControlCode.swift
[103/682] Compiling Rainbow OutputTarget.swift
[104/682] Compiling Rainbow Rainbow.swift
[105/682] Compiling RealModule Float16+Real.swift
[106/682] Compiling RealModule RelaxedArithmetic.swift
[107/707] Compiling Instrumentation NoOpInstrument.swift
[108/707] Compiling _NIODataStructures _TinyArray.swift
[109/707] Compiling _NIODataStructures PriorityQueue.swift
[110/707] Emitting module _NIODataStructures
[111/707] Compiling _NIODataStructures Heap.swift
[111/707] Write sources
[119/707] Compiling InternalCollectionsUtilities UInt+reversed.swift
[120/707] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[121/707] Compiling InternalCollectionsUtilities LifetimeOverride.swift
[122/707] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[123/707] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[124/707] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[125/709] Emitting module Instrumentation
[126/709] Compiling Instrumentation MultiplexInstrument.swift
[127/709] Compiling Instrumentation InstrumentationSystem.swift
[128/709] Compiling Instrumentation Instrument.swift
[129/709] Compiling Instrumentation Locks.swift
[129/709] Write sources
[133/709] Compiling InternalCollectionsUtilities UnsafeMutableRawBufferPointer+Extras.swift
[134/709] Compiling InternalCollectionsUtilities UnsafeRawBufferPointer+Extras.swift
[135/789] Emitting module Logging
[136/789] Compiling Logging MetadataProvider.swift
[137/789] Compiling Logging Locks.swift
[138/789] Compiling Logging Logging.swift
[139/789] Compiling Logging LogHandler.swift
[139/789] Write sources
[142/789] Compiling Tracing TracingTime.swift
[143/791] Compiling Tracing TracerProtocol.swift
[144/791] Emitting module ContainerizationError
[145/791] Compiling ContainerizationError ContainerizationError.swift
[146/791] Compiling Tracing Tracer.swift
[147/791] Compiling Tracing TracerProtocol+Legacy.swift
[147/791] Write sources
[164/791] Compiling Crypto ChaChaPoly_boring.swift
[165/791] Compiling Crypto ChaChaPoly.swift
[166/791] Compiling Crypto AES-GCM.swift
[167/791] Compiling Crypto AES-GCM_boring.swift
[168/791] Emitting module InternalCollectionsUtilities
[169/791] Compiling Crypto ASN1BitString.swift
[170/791] Compiling Crypto ASN1Boolean.swift
[171/791] Compiling Crypto ASN1Identifier.swift
[172/791] Compiling Crypto Cipher.swift
[173/791] Compiling Crypto Nonces.swift
[174/794] Compiling Tracing NoOpTracer.swift
[175/794] Compiling Tracing InstrumentationSystem+Tracing.swift
[176/794] Emitting module Tracing
[177/794] Compiling Tracing SpanProtocol.swift
[177/831] Compiling writer.c
[178/862] Compiling zstd_lazy.c
[180/897] Compiling HeapModule Heap+Invariants.swift
[181/924] Emitting module Crypto
[182/934] Compiling HeapModule _HeapNode.swift
[183/934] Compiling HeapModule Heap.swift
[184/934] Emitting module HeapModule
[185/934] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[186/934] Compiling HeapModule Heap+Descriptions.swift
[187/934] Compiling HeapModule Heap+UnsafeHandle.swift
[188/1005] Compiling HashTreeCollections _Bitmap.swift
[189/1005] Compiling HashTreeCollections _Bucket.swift
[190/1011] Compiling HashTreeCollections _HashNodeHeader.swift
[191/1011] Compiling HashTreeCollections _HashSlot.swift
[192/1011] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[193/1011] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[194/1011] Compiling HashTreeCollections _HashNode+Structural union.swift
[195/1011] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[196/1011] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[197/1011] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[198/1011] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[199/1011] Compiling HashTreeCollections _HashNode.swift
[200/1011] Compiling HashTreeCollections _HashNode+Builder.swift
[201/1011] Compiling HashTreeCollections _HashNode+Debugging.swift
[202/1011] Compiling HashTreeCollections _HashNode+Initializers.swift
[203/1011] Compiling HashTreeCollections _HashNode+Invariants.swift
[204/1011] Compiling HashTreeCollections _HashNode+Lookups.swift
[205/1011] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[206/1011] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[207/1011] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[208/1018] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[209/1018] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[210/1018] Compiling OrderedCollections OrderedSet.swift
[211/1018] Compiling OrderedCollections _UnsafeBitset.swift
[212/1018] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[213/1018] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[214/1018] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[215/1018] Compiling HashTreeCollections _HashTreeIterator.swift
[216/1018] Compiling HashTreeCollections _HashTreeStatistics.swift
[217/1018] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[218/1027] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[219/1027] Compiling HashTreeCollections TreeDictionary+Values.swift
[220/1027] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[221/1027] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[222/1027] Compiling HashTreeCollections _HashNode+Storage.swift
[223/1027] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[224/1027] Compiling HashTreeCollections _HashNode+Structural filter.swift
[225/1027] Compiling HashTreeCollections TreeSet+Collection.swift
[226/1027] Compiling HashTreeCollections TreeSet+CustomReflectable.swift
[227/1027] Compiling HashTreeCollections TreeSet+Debugging.swift
[228/1027] Compiling HashTreeCollections TreeSet+Descriptions.swift
[229/1027] Compiling HashTreeCollections TreeSet+Equatable.swift
[230/1027] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[231/1027] Compiling HashTreeCollections TreeSet+Extras.swift
[232/1027] Compiling HashTreeCollections TreeSet+Filter.swift
[233/1027] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[234/1027] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[235/1027] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[236/1027] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[237/1027] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[238/1027] Compiling HashTreeCollections _HashNode+Structural merge.swift
[239/1027] Compiling HashTreeCollections TreeDictionary.swift
[240/1027] Compiling HashTreeCollections TreeSet+Codable.swift
[241/1027] Compiling HashTreeCollections TreeDictionary+Filter.swift
[242/1027] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[243/1027] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[244/1027] Compiling HashTreeCollections TreeDictionary+Keys.swift
[245/1027] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[246/1027] Compiling HashTreeCollections TreeDictionary+Merge.swift
[247/1027] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[248/1027] Compiling HashTreeCollections _HashStack.swift
[249/1027] Compiling HashTreeCollections _AncestorHashSlots.swift
[252/1027] Compiling HashTreeCollections _Hash.swift
[253/1027] Compiling HashTreeCollections _HashLevel.swift
[294/1027] Compiling OrderedCollections OrderedSet+Sendable.swift
[295/1027] Compiling OrderedCollections OrderedSet+SubSequence.swift
[296/1027] Compiling OrderedCollections OrderedSet+Testing.swift
[301/1027] Emitting module OrderedCollections
[353/1027] Compiling _RopeModule Rope+Join.swift
[354/1027] Compiling _RopeModule Rope+MutatingForEach.swift
[355/1027] Compiling _RopeModule Rope+Remove.swift
[356/1027] Compiling _RopeModule Rope+RemoveSubrange.swift
[362/1027] Emitting module _RopeModule
[391/1027] Compiling _RopeModule Rope+Split.swift
[392/1027] Compiling _RopeModule Optional Utilities.swift
[393/1027] Compiling _RopeModule String Utilities.swift
[394/1027] Compiling _RopeModule String.Index+ABI.swift
[409/1037] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[410/1037] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[411/1037] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[412/1037] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[413/1037] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[414/1037] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[415/1037] Compiling Rainbow StyledStringBuilder.swift
[420/1037] Emitting module Rainbow
[427/1052] Emitting module ContainerLog
[427/1052] Compiling reader.c
[429/1052] Compiling DequeModule Deque+Equatable.swift
[430/1052] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[440/1063] Compiling parser.c
[476/1065] Compiling ContainerLog StderrLogHandler.swift
[476/1065] Compiling scanner.c
[478/1065] Emitting module SwiftProtobuf
[487/1065] Compiling api.c
[488/1065] Compiling CVersion Version.c
[489/1065] Compiling emitter.c
[490/1065] Compiling CSystem shims.c
[492/1069] Compiling HelperMacrosMacros OptionGroupPassthrough.swift
[493/1069] Compiling HelperMacrosMacros HelperMacrosMacros.swift
[494/1069] Emitting module HelperMacrosMacros
[495/1117] Compiling SystemPackage SystemString.swift
[496/1117] Compiling SystemPackage Errno.swift
[515/1117] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[516/1117] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[517/1117] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[518/1117] Compiling SwiftProtobuf api.pb.swift
[519/1117] Emitting module ContainerVersion
[520/1117] Compiling ContainerVersion ReleaseVersion.swift
[521/1117] Compiling ContainerVersion CommandLine+Executable.swift
[522/1117] Compiling ContainerVersion Bundle+AppBundle.swift
[522/1117] Write Objects.LinkFileList
[524/1117] Compiling SystemPackage FilePathSyntax.swift
[525/1117] Compiling SystemPackage FilePathTemp.swift
[535/1117] Compiling ContainerLog OSLogHandler.swift
[537/1117] Compiling SystemPackage MachPort.swift
[538/1117] Compiling SystemPackage PlatformString.swift
[541/1117] Compiling SystemPackage ErrnoWindows.swift
[542/1117] Compiling SystemPackage FileDescriptor.swift
[543/1117] Compiling SystemPackage FileHelpers.swift
[544/1117] Compiling SystemPackage FileOperations.swift
[545/1117] Compiling SystemPackage FilePath.swift
[546/1117] Compiling SystemPackage FilePathComponentView.swift
[547/1117] Compiling SystemPackage Mocking.swift
[548/1117] Compiling SystemPackage RawBuffer.swift
[549/1117] Compiling SystemPackage Syscalls.swift
[550/1117] Compiling SystemPackage WindowsSyscallAdapters.swift
[551/1117] Compiling SystemPackage Backcompat.swift
[552/1117] Compiling SystemPackage CInterop.swift
[553/1117] Compiling SystemPackage Constants.swift
[554/1117] Compiling SystemPackage Exports.swift
[555/1117] Compiling SystemPackage FilePathParsing.swift
[556/1117] Compiling SystemPackage FilePathString.swift
[568/1117] Emitting module DequeModule
[572/1120] Compiling CShim prctl.c
[573/1120] Compiling CShim vsock.c
[574/1120] Compiling CShim capability.c
[575/1120] Compiling CNIOWindows shim.c
[576/1120] Compiling CNIOWindows WSAStartup.c
[577/1120] Compiling CNIOWASI CNIOWASI.c
[578/1120] Compiling CShim socket_helpers.c
[579/1120] Compiling CShim exec_command.c
[580/1120] Compiling CNIOOpenBSD shim.c
[581/1120] Compiling CNIOLinux shim.c
[582/1120] Compiling CNIOLinux liburing_shims.c
[583/1120] Compiling CNIOPosix event_loop_id.c
[584/1120] Linking HelperMacrosMacros-tool
[585/1120] Compiling CNIOLLHTTP c_nio_http.c
[586/1120] Compiling CNIOExtrasZlib empty.c
[587/1120] Compiling CNIOLLHTTP c_nio_api.c
[593/1122] Compiling SystemPackage FilePathTempPosix.swift
[594/1122] Compiling SystemPackage FilePathTempWindows.swift
[595/1122] Compiling SystemPackage FilePathWindows.swift
[596/1122] Compiling SystemPackage FilePermissions.swift
[597/1122] Emitting module HashTreeCollections
[597/1122] Compiling fiat_p256_adx_sqr.S
[606/1122] Emitting module SystemPackage
[606/1122] Compiling fiat_p256_adx_mul.S
[607/1122] Compiling fiat_curve25519_adx_square.S
[608/1122] Compiling CNIOLLHTTP c_nio_llhttp.c
[609/1122] Compiling fiat_curve25519_adx_mul.S
[610/1122] Compiling CNIODarwin shim.c
[612/1122] Compiling SystemPackage Util+StringArray.swift
[613/1122] Compiling SystemPackage Util.swift
[614/1122] Compiling SystemPackage UtilConsumers.swift
[615/1122] Compiling HelperMacros HelperMacros.swift
[616/1122] Emitting module HelperMacros
[624/1122] Compiling SystemPackage FilePathComponents.swift
[624/1122] Compiling CNIOBoringSSLShims shims.c
[650/1144] Compiling ContainerizationOS Mount.swift
[651/1144] Compiling ContainerizationOS POSIXError+Helpers.swift
[652/1144] Compiling ContainerizationOS Path.swift
[653/1147] Compiling ContainerizationOS Pipe+Close.swift
[654/1147] Compiling ContainerizationOS Reaper.swift
[655/1147] Compiling ContainerizationOS Signals.swift
[656/1147] Compiling ContainerizationOS Binfmt.swift
[657/1147] Compiling ContainerizationOS Capabilities.swift
[658/1147] Compiling ContainerizationOS Epoll.swift
[658/1147] Compiling tls_record.cc
[672/1147] Compiling ContainerizationOS AsyncSignalHandler.swift
[673/1147] Compiling ContainerizationOS BinaryInteger+Extensions.swift
[674/1147] Compiling ContainerizationOS Command.swift
[675/1147] Compiling ContainerizationOS File.swift
[676/1147] Compiling ContainerizationOS FileDescriptor+SecurePath.swift
[677/1147] Compiling ContainerizationOS KeychainQuery.swift
[684/1147] Compiling ContainerizationOS VsockType.swift
[685/1147] Compiling ContainerizationOS Syscall.swift
[686/1147] Compiling ContainerizationOS Sysctl.swift
[686/1147] Compiling tls_method.cc
[687/1147] Compiling tls13_enc.cc
[688/1147] Compiling tls13_server.cc
[692/1147] Compiling tls13_client.cc
[696/1149] Compiling ContainerizationOS Terminal.swift
[697/1149] Compiling ContainerizationOS URL+Extensions.swift
[698/1149] Compiling ContainerizationOS User.swift
[702/1149] Compiling ContainerizationOS Socket.swift
[703/1149] Compiling Yams YamlError.swift
[704/1149] Compiling Yams YamlTagProviding.swift
[705/1149] Emitting module Yams
[711/1149] Compiling t1_enc.cc
[712/1149] Compiling tls13_both.cc
[715/1149] Compiling ssl_versions.cc
[716/1149] Compiling ssl_transcript.cc
[729/1149] Compiling ssl_x509.cc
[738/1149] Compiling ssl_stat.cc
[739/1149] Compiling ssl_session.cc
[740/1149] Compiling ssl_privkey.cc
[741/1149] Compiling ssl_key_share.cc
[742/1149] Compiling ssl_lib.cc
[743/1149] Compiling ssl_file.cc
[744/1149] Compiling ssl_credential.cc
[745/1149] Compiling ssl_cipher.cc
[746/1149] Compiling ssl_cert.cc
[747/1149] Compiling ssl_buffer.cc
[748/1149] Compiling ssl_asn1.cc
[750/1149] Emitting module ContainerizationOS
[753/1149] Compiling ssl_aead_ctx.cc
[754/1160] Compiling s3_both.cc
[755/1160] Compiling s3_pkt.cc
[756/1168] Compiling s3_lib.cc
[758/1168] Compiling TerminalProgress ProgressUpdate.swift
[759/1169] Compiling TerminalProgress ProgressTheme.swift
[760/1169] Compiling TerminalProgress ProgressTaskCoordinator.swift
[761/1169] Compiling TerminalProgress StandardError.swift
[762/1169] Compiling ContainerPlugin PluginFactory.swift
[763/1170] Compiling ContainerPlugin PluginConfig.swift
[763/1170] Compiling handshake_server.cc
[765/1170] Compiling ContainerPlugin LaunchPlist.swift
[766/1170] Compiling ContainerPlugin ApplicationRoot.swift
[767/1170] Compiling ContainerPlugin InstallRoot.swift
[768/1170] Emitting module ContainerPlugin
[769/1170] Compiling ContainerPlugin Plugin.swift
[770/1170] Compiling ContainerPlugin PluginLoader.swift
[770/1170] Compiling handshake_client.cc
[771/1170] Compiling handshake.cc
[773/1170] Emitting module TerminalProgress
[774/1170] Compiling TerminalProgress ProgressBar+Add.swift
[775/1170] Compiling TerminalProgress ProgressBar+State.swift
[776/1170] Compiling TerminalProgress ProgressConfig.swift
[777/1170] Compiling TerminalProgress Int+Formatted.swift
[778/1170] Compiling TerminalProgress Int64+Formatted.swift
[779/1170] Compiling TerminalProgress ProgressBar+Terminal.swift
[780/1170] Compiling TerminalProgress ProgressBar.swift
[780/1170] Compiling handoff.cc
[781/1170] Compiling encrypted_client_hello.cc
[782/1170] Compiling extensions.cc
[784/1170] Compiling ContainerPlugin ServiceManager.swift
[784/1170] Compiling dtls_record.cc
[785/1170] Compiling dtls_method.cc
[786/1170] Compiling md5-x86_64-linux.S
[787/1170] Compiling md5-x86_64-apple.S
[788/1170] Compiling md5-586-linux.S
[789/1170] Compiling md5-586-apple.S
[790/1170] Compiling chacha20_poly1305_x86_64-linux.S
[791/1170] Compiling chacha20_poly1305_x86_64-apple.S
[792/1170] Compiling chacha20_poly1305_armv8-win.S
[793/1170] Compiling d1_srtp.cc
[794/1170] Compiling d1_pkt.cc
[795/1170] Compiling chacha20_poly1305_armv8-linux.S
[796/1170] Compiling chacha-x86_64-linux.S
[797/1170] Compiling chacha20_poly1305_armv8-apple.S
[798/1170] Compiling chacha-x86_64-apple.S
[799/1170] Compiling chacha-x86-linux.S
[800/1170] Compiling chacha-x86-apple.S
[801/1170] Compiling chacha-armv8-win.S
[802/1170] Compiling chacha-armv8-linux.S
[803/1170] Compiling chacha-armv4-linux.S
[806/1170] Compiling SwiftProtobuf descriptor.pb.swift
[807/1170] Compiling SwiftProtobuf duration.pb.swift
[808/1170] Compiling SwiftProtobuf empty.pb.swift
[809/1170] Compiling SwiftProtobuf field_mask.pb.swift
[810/1170] Compiling SwiftProtobuf source_context.pb.swift
[811/1170] Compiling SwiftProtobuf struct.pb.swift
[812/1170] Compiling SwiftProtobuf timestamp.pb.swift
[813/1170] Compiling SwiftProtobuf type.pb.swift
[814/1170] Compiling SwiftProtobuf wrappers.pb.swift
[815/1170] Compiling SwiftProtobuf resource_bundle_accessor.swift
[815/1170] Compiling chacha-armv8-apple.S
[816/1170] Compiling aes128gcmsiv-x86_64-linux.S
[817/1170] Compiling err_data.cc
[818/1170] Compiling aes128gcmsiv-x86_64-apple.S
[819/1170] Compiling x86_64-mont5-apple.S
[820/1170] Compiling x86_64-mont5-linux.S
[821/1170] Compiling x86_64-mont-linux.S
[822/1170] Compiling x86-mont-linux.S
[823/1170] Compiling x86-mont-apple.S
[824/1170] Compiling x86_64-mont-apple.S
[825/1170] Compiling vpaes-x86_64-linux.S
[826/1170] Compiling bio_ssl.cc
[827/1170] Compiling vpaes-x86_64-apple.S
[828/1170] Compiling vpaes-x86-linux.S
[829/1170] Compiling vpaes-x86-apple.S
[830/1170] Compiling vpaes-armv8-win.S
[831/1170] Compiling vpaes-armv8-linux.S
[832/1170] Compiling vpaes-armv8-apple.S
[833/1170] Compiling vpaes-armv7-linux.S
[834/1170] Compiling sha512-x86_64-linux.S
[835/1170] Compiling sha512-x86_64-apple.S
[836/1170] Compiling sha512-armv8-win.S
[837/1170] Compiling sha512-armv8-linux.S
[837/1170] Compiling sha512-armv4-linux.S
[839/1170] Compiling sha512-586-linux.S
[840/1170] Compiling sha512-586-apple.S
[840/1170] Compiling sha512-armv8-apple.S
[842/1170] Compiling sha256-x86_64-linux.S
[843/1170] Compiling d1_lib.cc
[844/1170] Compiling sha256-armv8-win.S
[845/1170] Compiling sha256-x86_64-apple.S
[846/1170] Compiling sha256-armv8-linux.S
[847/1170] Compiling sha256-armv4-linux.S
[848/1170] Compiling sha256-586-linux.S
[849/1170] Compiling sha256-armv8-apple.S
[850/1170] Compiling sha256-586-apple.S
[851/1170] Compiling sha1-x86_64-linux.S
[852/1170] Compiling sha1-x86_64-apple.S
[852/1170] Compiling sha1-armv8-win.S
[854/1170] Compiling sha1-armv8-linux.S
[855/1170] Compiling sha1-armv4-large-linux.S
[856/1170] Compiling sha1-586-linux.S
[857/1170] Compiling sha1-armv8-apple.S
[857/1170] Compiling rsaz-avx2-linux.S
[859/1170] Compiling sha1-586-apple.S
[859/1170] Compiling rsaz-avx2-apple.S
[861/1170] Compiling rdrand-x86_64-linux.S
[862/1170] Compiling rdrand-x86_64-apple.S
[863/1170] Compiling p256_beeu-x86_64-asm-linux.S
[864/1170] Compiling p256_beeu-x86_64-asm-apple.S
[865/1170] Compiling p256_beeu-armv8-asm-linux.S
[866/1170] Compiling p256_beeu-armv8-asm-win.S
[867/1170] Compiling p256_beeu-armv8-asm-apple.S
[868/1170] Compiling p256-x86_64-asm-linux.S
[869/1170] Compiling p256-armv8-asm-win.S
[870/1170] Compiling p256-x86_64-asm-apple.S
[871/1170] Compiling p256-armv8-asm-linux.S
[872/1170] Compiling ghashv8-armv8-linux.S
[872/1170] Compiling ghashv8-armv8-win.S
[874/1170] Compiling p256-armv8-asm-apple.S
[875/1170] Compiling ghashv8-armv8-apple.S
[876/1170] Compiling ghashv8-armv7-linux.S
[877/1170] Compiling ghash-x86_64-linux.S
[878/1170] Compiling ghash-x86_64-apple.S
[879/1170] Compiling ghash-x86-linux.S
[879/1170] Compiling ghash-ssse3-x86_64-linux.S
[881/1170] Compiling ghash-x86-apple.S
[882/1170] Compiling ghash-ssse3-x86-linux.S
[882/1170] Compiling ghash-ssse3-x86_64-apple.S
[884/1170] Compiling ghash-neon-armv8-win.S
[885/1170] Compiling ghash-ssse3-x86-apple.S
[886/1170] Compiling ghash-neon-armv8-apple.S
[887/1170] Compiling ghash-neon-armv8-linux.S
[888/1170] Compiling ghash-armv4-linux.S
[889/1170] Compiling co-586-apple.S
[890/1170] Compiling co-586-linux.S
[891/1170] Compiling bn-armv8-linux.S
[892/1170] Compiling bn-armv8-win.S
[893/1170] Compiling bsaes-armv7-linux.S
[894/1170] Compiling bn-armv8-apple.S
[895/1170] Compiling bn-586-linux.S
[896/1170] Compiling bn-586-apple.S
[897/1170] Compiling armv8-mont-win.S
[898/1170] Compiling armv8-mont-linux.S
[899/1170] Compiling armv4-mont-linux.S
[900/1170] Compiling aesv8-gcm-armv8-win.S
[901/1170] Compiling armv8-mont-apple.S
[902/1170] Compiling aesv8-gcm-armv8-linux.S
[903/1170] Compiling aesv8-armv8-win.S
[904/1170] Compiling aesv8-gcm-armv8-apple.S
[905/1170] Compiling aesni-x86-linux.S
[906/1170] Compiling aesni-x86-apple.S
[907/1170] Compiling aesv8-armv8-linux.S
[908/1170] Compiling aesni-gcm-x86_64-linux.S
[909/1170] Compiling aesni-gcm-x86_64-apple.S
[910/1170] Compiling aes-gcm-avx2-x86_64-linux.S
[911/1170] Compiling aes-gcm-avx2-x86_64-apple.S
[912/1170] Compiling aes-gcm-avx10-x86_64-linux.S
[913/1170] Compiling aes-gcm-avx10-x86_64-apple.S
[914/1170] Compiling d1_both.cc
[915/1170] Compiling x_sig.cc
[916/1170] Compiling x_pubkey.cc
[917/1170] Compiling x_spki.cc
[918/1170] Compiling x_req.cc
[919/1170] Compiling x_x509.cc
[920/1170] Compiling x_val.cc
[921/1170] Compiling x_x509a.cc
[922/1170] Compiling x_name.cc
[923/1170] Compiling x_all.cc
[924/1170] Compiling x_crl.cc
[925/1170] Compiling x_exten.cc
[926/1170] Compiling x_algor.cc
[927/1170] Compiling x509rset.cc
[928/1170] Compiling x_attrib.cc
[929/1170] Compiling x509spki.cc
[930/1170] Compiling x509name.cc
[931/1170] Compiling x509_set.cc
[932/1170] Compiling x509cset.cc
[933/1170] Compiling x509_txt.cc
[934/1170] Compiling x509_trs.cc
[935/1170] Compiling x509_vpm.cc
[936/1170] Compiling x509_v3.cc
[937/1170] Compiling x509_vfy.cc
[938/1170] Compiling x509_req.cc
[939/1170] Compiling x509_ext.cc
[940/1170] Compiling x509_obj.cc
[941/1170] Compiling x509_cmp.cc
[942/1170] Compiling x509_d2.cc
[943/1170] Compiling x509_def.cc
[944/1170] Compiling x509_att.cc
[945/1170] Compiling x509_lu.cc
[946/1170] Compiling x509.cc
[947/1170] Compiling v3_purp.cc
[948/1170] Compiling v3_skey.cc
[949/1170] Compiling v3_prn.cc
[950/1170] Compiling v3_utl.cc
[951/1170] Compiling v3_pmaps.cc
[952/1170] Compiling v3_pcons.cc
[953/1170] Compiling v3_ocsp.cc
[954/1170] Compiling v3_ncons.cc
[955/1170] Compiling v3_int.cc
[956/1170] Compiling v3_info.cc
[957/1170] Compiling v3_lib.cc
[958/1170] Compiling v3_ia5.cc
[959/1170] Compiling v3_genn.cc
[960/1170] Compiling v3_extku.cc
[961/1170] Compiling v3_enum.cc
[962/1170] Compiling v3_crld.cc
[963/1170] Compiling v3_cpols.cc
[964/1170] Compiling v3_bitst.cc
[965/1170] Compiling v3_conf.cc
[966/1170] Compiling v3_bcons.cc
[967/1170] Compiling v3_alt.cc
[968/1170] Compiling v3_akeya.cc
[969/1170] Compiling v3_akey.cc
[970/1170] Compiling t_x509a.cc
[971/1170] Compiling t_x509.cc
[972/1170] Compiling t_req.cc
[973/1170] Compiling policy.cc
[974/1170] Compiling rsa_pss.cc
[975/1170] Compiling i2d_pr.cc
[976/1170] Compiling name_print.cc
[977/1170] Compiling t_crl.cc
[978/1170] Compiling by_file.cc
[979/1170] Compiling algorithm.cc
[980/1170] Compiling by_dir.cc
[981/1170] Compiling a_sign.cc