forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3_Win64 native fuzz, VS 2022.txt
More file actions
1761 lines (1761 loc) · 201 KB
/
Copy path3_Win64 native fuzz, VS 2022.txt
File metadata and controls
1761 lines (1761 loc) · 201 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
2025-04-04T20:54:33.8697427Z Current runner version: '2.323.0'
2025-04-04T20:54:33.8722142Z ##[group]Operating System
2025-04-04T20:54:33.8722893Z Microsoft Windows Server 2022
2025-04-04T20:54:33.8723434Z 10.0.20348
2025-04-04T20:54:33.8723848Z Datacenter
2025-04-04T20:54:33.8724306Z ##[endgroup]
2025-04-04T20:54:33.8724743Z ##[group]Runner Image
2025-04-04T20:54:33.8725260Z Image: windows-2022
2025-04-04T20:54:33.8725711Z Version: 20250330.1.0
2025-04-04T20:54:33.8726695Z Included Software: https://github.com/actions/runner-images/blob/win22/20250330.1/images/windows/Windows2022-Readme.md
2025-04-04T20:54:33.8727977Z Image Release: https://github.com/actions/runner-images/releases/tag/win22%2F20250330.1
2025-04-04T20:54:33.8728779Z ##[endgroup]
2025-04-04T20:54:33.8729248Z ##[group]Runner Image Provisioner
2025-04-04T20:54:33.8729772Z 2.0.422.1
2025-04-04T20:54:33.8730186Z ##[endgroup]
2025-04-04T20:54:33.8732390Z ##[group]GITHUB_TOKEN Permissions
2025-04-04T20:54:33.8734140Z Actions: read
2025-04-04T20:54:33.8734998Z Attestations: read
2025-04-04T20:54:33.8735512Z Checks: read
2025-04-04T20:54:33.8735968Z Contents: read
2025-04-04T20:54:33.8736380Z Deployments: read
2025-04-04T20:54:33.8736820Z Discussions: read
2025-04-04T20:54:33.8737276Z Issues: read
2025-04-04T20:54:33.8737673Z Metadata: read
2025-04-04T20:54:33.8738092Z Models: read
2025-04-04T20:54:33.8738514Z Packages: read
2025-04-04T20:54:33.8738953Z Pages: read
2025-04-04T20:54:33.8739365Z PullRequests: read
2025-04-04T20:54:33.8739850Z RepositoryProjects: read
2025-04-04T20:54:33.8740320Z SecurityEvents: read
2025-04-04T20:54:33.8740780Z Statuses: read
2025-04-04T20:54:33.8741261Z ##[endgroup]
2025-04-04T20:54:33.8743243Z Secret source: None
2025-04-04T20:54:33.8743922Z Prepare workflow directory
2025-04-04T20:54:33.9154313Z Prepare all required actions
2025-04-04T20:54:33.9199106Z Getting action download info
2025-04-04T20:54:34.3852858Z ##[group]Download immutable action package 'actions/checkout@v4'
2025-04-04T20:54:34.3854113Z Version: 4.2.2
2025-04-04T20:54:34.3855316Z Digest: sha256:ccb2698953eaebd21c7bf6268a94f9c26518a7e38e27e0b83c1fe1ad049819b1
2025-04-04T20:54:34.3856765Z Source commit SHA: 11bd71901bbe5b1630ceea73d27597364c9af683
2025-04-04T20:54:34.3857626Z ##[endgroup]
2025-04-04T20:54:34.5500556Z Download action repository 'ilammy/msvc-dev-cmd@v1' (SHA:0b201ec74fa43914dc39ae48a89fd1d8cb592756)
2025-04-04T20:54:35.0767186Z ##[group]Download immutable action package 'actions/cache@v4'
2025-04-04T20:54:35.0767937Z Version: 4.2.3
2025-04-04T20:54:35.0768661Z Digest: sha256:c8a3bb963e1f1826d8fcc8d1354f0dd29d8ac1db1d4f6f20247055ae11b81ed9
2025-04-04T20:54:35.0769585Z Source commit SHA: 5a3ec84eff668545956fd18022155c47e93e2684
2025-04-04T20:54:35.0770268Z ##[endgroup]
2025-04-04T20:54:35.5930635Z Complete job name: Win64 native fuzz, VS 2022
2025-04-04T20:54:35.7056303Z ##[group]Run actions/checkout@v4
2025-04-04T20:54:35.7057962Z with:
2025-04-04T20:54:35.7058856Z repository: bitcoinknots/bitcoin
2025-04-04T20:54:35.7060328Z token: ***
2025-04-04T20:54:35.7061168Z ssh-strict: true
2025-04-04T20:54:35.7062063Z ssh-user: git
2025-04-04T20:54:35.7062956Z persist-credentials: true
2025-04-04T20:54:35.7063822Z clean: true
2025-04-04T20:54:35.7064551Z sparse-checkout-cone-mode: true
2025-04-04T20:54:35.7065433Z fetch-depth: 1
2025-04-04T20:54:35.7066127Z fetch-tags: false
2025-04-04T20:54:35.7066857Z show-progress: true
2025-04-04T20:54:35.7067589Z lfs: false
2025-04-04T20:54:35.7068252Z submodules: false
2025-04-04T20:54:35.7068994Z set-safe-directory: true
2025-04-04T20:54:35.7070063Z env:
2025-04-04T20:54:35.7070748Z CI_FAILFAST_TEST_LEAVE_DANGLING: 1
2025-04-04T20:54:35.7071673Z MAKEJOBS: -j10
2025-04-04T20:54:35.7072411Z PYTHONUTF8: 1
2025-04-04T20:54:35.7073182Z TEST_RUNNER_TIMEOUT_FACTOR: 40
2025-04-04T20:54:35.7074025Z ##[endgroup]
2025-04-04T20:54:36.0897080Z Syncing repository: bitcoinknots/bitcoin
2025-04-04T20:54:36.0919242Z ##[group]Getting Git version info
2025-04-04T20:54:36.0922442Z Working directory is 'D:\a\bitcoin\bitcoin'
2025-04-04T20:54:36.2955759Z [command]"C:\Program Files\Git\bin\git.exe" version
2025-04-04T20:54:36.3525817Z git version 2.49.0.windows.1
2025-04-04T20:54:36.3626110Z ##[endgroup]
2025-04-04T20:54:36.3646355Z Temporarily overriding HOME='D:\a\_temp\040bd3d5-bd10-4123-8969-12819703c1ed' before making global git config changes
2025-04-04T20:54:36.3648667Z Adding repository directory to the temporary git global config as a safe directory
2025-04-04T20:54:36.3658521Z [command]"C:\Program Files\Git\bin\git.exe" config --global --add safe.directory D:\a\bitcoin\bitcoin
2025-04-04T20:54:36.4202938Z Deleting the contents of 'D:\a\bitcoin\bitcoin'
2025-04-04T20:54:36.4208878Z ##[group]Initializing the repository
2025-04-04T20:54:36.4219455Z [command]"C:\Program Files\Git\bin\git.exe" init D:\a\bitcoin\bitcoin
2025-04-04T20:54:36.5601405Z Initialized empty Git repository in D:/a/bitcoin/bitcoin/.git/
2025-04-04T20:54:36.5644246Z [command]"C:\Program Files\Git\bin\git.exe" remote add origin https://github.com/bitcoinknots/bitcoin
2025-04-04T20:54:36.6154293Z ##[endgroup]
2025-04-04T20:54:36.6155616Z ##[group]Disabling automatic garbage collection
2025-04-04T20:54:36.6162794Z [command]"C:\Program Files\Git\bin\git.exe" config --local gc.auto 0
2025-04-04T20:54:36.6392414Z ##[endgroup]
2025-04-04T20:54:36.6393613Z ##[group]Setting up auth
2025-04-04T20:54:36.6405811Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp core\.sshCommand
2025-04-04T20:54:36.6640476Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\""
2025-04-04T20:54:37.9575900Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2025-04-04T20:54:37.9820091Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\""
2025-04-04T20:54:38.4124637Z [command]"C:\Program Files\Git\bin\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***"
2025-04-04T20:54:38.4379621Z ##[endgroup]
2025-04-04T20:54:38.4380555Z ##[group]Fetching the repository
2025-04-04T20:54:38.4394133Z [command]"C:\Program Files\Git\bin\git.exe" -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +70fccd82cfca47ea4aa91e1f70c628b1aec5e41b:refs/remotes/pull/103/merge
2025-04-04T20:54:40.7952381Z From https://github.com/bitcoinknots/bitcoin
2025-04-04T20:54:40.7957302Z * [new ref] 70fccd82cfca47ea4aa91e1f70c628b1aec5e41b -> pull/103/merge
2025-04-04T20:54:40.8149691Z ##[endgroup]
2025-04-04T20:54:40.8150365Z ##[group]Determining the checkout info
2025-04-04T20:54:40.8153901Z ##[endgroup]
2025-04-04T20:54:40.8165094Z [command]"C:\Program Files\Git\bin\git.exe" sparse-checkout disable
2025-04-04T20:54:40.8935769Z [command]"C:\Program Files\Git\bin\git.exe" config --local --unset-all extensions.worktreeConfig
2025-04-04T20:54:40.9167559Z ##[group]Checking out the ref
2025-04-04T20:54:40.9181179Z [command]"C:\Program Files\Git\bin\git.exe" checkout --progress --force refs/remotes/pull/103/merge
2025-04-04T20:54:41.5735065Z Note: switching to 'refs/remotes/pull/103/merge'.
2025-04-04T20:54:41.5735537Z
2025-04-04T20:54:41.5735850Z You are in 'detached HEAD' state. You can look around, make experimental
2025-04-04T20:54:41.5736514Z changes and commit them, and you can discard any commits you make in this
2025-04-04T20:54:41.5737081Z state without impacting any branches by switching back to a branch.
2025-04-04T20:54:41.5737392Z
2025-04-04T20:54:41.5737548Z If you want to create a new branch to retain commits you create, you may
2025-04-04T20:54:41.5737917Z do so (now or later) by using -c with the switch command. Example:
2025-04-04T20:54:41.5739100Z
2025-04-04T20:54:41.5739207Z git switch -c <new-branch-name>
2025-04-04T20:54:41.5739425Z
2025-04-04T20:54:41.5739516Z Or undo this operation with:
2025-04-04T20:54:41.5739663Z
2025-04-04T20:54:41.5739732Z git switch -
2025-04-04T20:54:41.5739896Z
2025-04-04T20:54:41.5740141Z Turn off this advice by setting config variable advice.detachedHead to false
2025-04-04T20:54:41.5740429Z
2025-04-04T20:54:41.5740737Z HEAD is now at 70fccd8 Merge 63768965f1c0f4633ba22bc42b5fab58befb8c6b into 8cb6ab0b971a27ba255ad6a48959a8c7b84c00f3
2025-04-04T20:54:41.5795926Z ##[endgroup]
2025-04-04T20:54:41.6175533Z [command]"C:\Program Files\Git\bin\git.exe" log -1 --format=%H
2025-04-04T20:54:41.6382481Z 70fccd82cfca47ea4aa91e1f70c628b1aec5e41b
2025-04-04T20:54:41.6875856Z ##[group]Run ilammy/msvc-dev-cmd@v1
2025-04-04T20:54:41.6876298Z with:
2025-04-04T20:54:41.6876502Z arch: x64
2025-04-04T20:54:41.6876688Z env:
2025-04-04T20:54:41.6876879Z CI_FAILFAST_TEST_LEAVE_DANGLING: 1
2025-04-04T20:54:41.6877217Z MAKEJOBS: -j10
2025-04-04T20:54:41.6877419Z PYTHONUTF8: 1
2025-04-04T20:54:41.6877638Z TEST_RUNNER_TIMEOUT_FACTOR: 40
2025-04-04T20:54:41.6877886Z ##[endgroup]
2025-04-04T20:54:42.8676054Z Found with vswhere: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat
2025-04-04T20:54:48.5395447Z ##[group]Environment variables
2025-04-04T20:54:48.5395885Z Setting CommandPromptType
2025-04-04T20:54:48.5407843Z Setting DevEnvDir
2025-04-04T20:54:48.5411869Z Setting ExtensionSdkDir
2025-04-04T20:54:48.5414530Z Setting EXTERNAL_INCLUDE
2025-04-04T20:54:48.5419587Z Setting Framework40Version
2025-04-04T20:54:48.5422181Z Setting FrameworkDir
2025-04-04T20:54:48.5424643Z Setting FrameworkDir64
2025-04-04T20:54:48.5428636Z Setting FrameworkVersion
2025-04-04T20:54:48.5431253Z Setting FrameworkVersion64
2025-04-04T20:54:48.5435049Z Setting FSHARPINSTALLDIR
2025-04-04T20:54:48.5446207Z Setting HTMLHelpDir
2025-04-04T20:54:48.5449055Z Setting IFCPATH
2025-04-04T20:54:48.5452790Z Setting INCLUDE
2025-04-04T20:54:48.5458090Z Setting is_x64_arch
2025-04-04T20:54:48.5460487Z Setting LIB
2025-04-04T20:54:48.5462857Z Setting LIBPATH
2025-04-04T20:54:48.5464980Z Setting NETFXSDKDir
2025-04-04T20:54:48.5468033Z Setting Path
2025-04-04T20:54:48.5470667Z Setting Platform
2025-04-04T20:54:48.5472866Z Setting UCRTVersion
2025-04-04T20:54:48.5474524Z Setting UniversalCRTSdkDir
2025-04-04T20:54:48.5476204Z Setting VCIDEInstallDir
2025-04-04T20:54:48.5478789Z Setting VCINSTALLDIR
2025-04-04T20:54:48.5480469Z Setting VCPKG_ROOT
2025-04-04T20:54:48.5482095Z Setting VCToolsInstallDir
2025-04-04T20:54:48.5483837Z Setting VCToolsRedistDir
2025-04-04T20:54:48.5485897Z Setting VCToolsVersion
2025-04-04T20:54:48.5488178Z Setting VisualStudioVersion
2025-04-04T20:54:48.5490365Z Setting VS170COMNTOOLS
2025-04-04T20:54:48.5492602Z Setting VSCMD_ARG_app_plat
2025-04-04T20:54:48.5494751Z Setting VSCMD_ARG_HOST_ARCH
2025-04-04T20:54:48.5497020Z Setting VSCMD_ARG_TGT_ARCH
2025-04-04T20:54:48.5499212Z Setting VSCMD_VER
2025-04-04T20:54:48.5501717Z Setting VSINSTALLDIR
2025-04-04T20:54:48.5503996Z Setting VSSDK150INSTALL
2025-04-04T20:54:48.5506076Z Setting VSSDKINSTALL
2025-04-04T20:54:48.5508592Z Setting WindowsLibPath
2025-04-04T20:54:48.5510839Z Setting WindowsSdkBinPath
2025-04-04T20:54:48.5513095Z Setting WindowsSdkDir
2025-04-04T20:54:48.5515364Z Setting WindowsSDKLibVersion
2025-04-04T20:54:48.5517531Z Setting WindowsSdkVerBinPath
2025-04-04T20:54:48.5519764Z Setting WindowsSDKVersion
2025-04-04T20:54:48.5522022Z Setting WindowsSDK_ExecutablePath_x64
2025-04-04T20:54:48.5524230Z Setting WindowsSDK_ExecutablePath_x86
2025-04-04T20:54:48.5526482Z Setting __DOTNET_ADD_64BIT
2025-04-04T20:54:48.5529136Z Setting __DOTNET_PREFERRED_BITNESS
2025-04-04T20:54:48.5531070Z Setting __VSCMD_PREINIT_PATH
2025-04-04T20:54:48.5534489Z ##[endgroup]
2025-04-04T20:54:48.5534776Z Configured Developer Command Prompt
2025-04-04T20:54:48.5752700Z ##[group]Run cmake -version | Tee-Object -FilePath "cmake_version"
2025-04-04T20:54:48.5753317Z [36;1mcmake -version | Tee-Object -FilePath "cmake_version"[0m
2025-04-04T20:54:48.5753638Z [36;1mWrite-Output "---"[0m
2025-04-04T20:54:48.5753939Z [36;1mmsbuild -version | Tee-Object -FilePath "msbuild_version"[0m
2025-04-04T20:54:48.5754332Z [36;1m$env:VCToolsVersion | Tee-Object -FilePath "toolset_version"[0m
2025-04-04T20:54:48.5754641Z [36;1mpy -3 --version[0m
2025-04-04T20:54:48.5754985Z [36;1mWrite-Host "PowerShell version $($PSVersionTable.PSVersion.ToString())"[0m
2025-04-04T20:54:48.5788619Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'"
2025-04-04T20:54:48.5788945Z env:
2025-04-04T20:54:48.5789112Z CI_FAILFAST_TEST_LEAVE_DANGLING: 1
2025-04-04T20:54:48.5789336Z MAKEJOBS: -j10
2025-04-04T20:54:48.5789499Z PYTHONUTF8: 1
2025-04-04T20:54:48.5789677Z TEST_RUNNER_TIMEOUT_FACTOR: 40
2025-04-04T20:54:48.5789936Z CommandPromptType: Native
2025-04-04T20:54:48.5790293Z DevEnvDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\
2025-04-04T20:54:48.5790805Z ExtensionSdkDir: C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs
2025-04-04T20:54:48.5792984Z EXTERNAL_INCLUDE: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um
2025-04-04T20:54:48.5794996Z Framework40Version: v4.0
2025-04-04T20:54:48.5795253Z FrameworkDir: C:\Windows\Microsoft.NET\Framework64\
2025-04-04T20:54:48.5795566Z FrameworkDir64: C:\Windows\Microsoft.NET\Framework64\
2025-04-04T20:54:48.5795840Z FrameworkVersion: v4.0.30319
2025-04-04T20:54:48.5796045Z FrameworkVersion64: v4.0.30319
2025-04-04T20:54:48.5796532Z FSHARPINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp\Tools
2025-04-04T20:54:48.5797087Z HTMLHelpDir: C:\Program Files (x86)\HTML Help Workshop
2025-04-04T20:54:48.5797527Z IFCPATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ifc\x64
2025-04-04T20:54:48.5799636Z INCLUDE: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um
2025-04-04T20:54:48.5801559Z is_x64_arch: true
2025-04-04T20:54:48.5802630Z LIB: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.26100.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.26100.0\\um\x64
2025-04-04T20:54:48.5806718Z LIBPATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.26100.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.26100.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319
2025-04-04T20:54:48.5808386Z NETFXSDKDir: C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\
2025-04-04T20:54:48.5821385Z Path: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\bin\HostX64\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\VCPackages;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\HTML Help Workshop;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp\Tools;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Team Tools\DiagnosticsHub\Collector;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\;C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\Program Files (x86)\NSIS\;C:\tools\zstd;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\3.5.1\x64;C:\cabal\bin;C:\\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Program Files\R\R-4.4.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver\;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.21.13\x64\bin;C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts;C:\hostedtoolcache\windows\Python\3.9.13\x64;C:\hostedtoolcache\windows\Ruby\3.0.7\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.442-6\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\WiX Toolset v3.14\bin;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\160\DTS\Binn\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.9.9\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI\;c:\tools\php;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\SessionManagerPlugin\bin\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\Installer;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\x64\bin;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\Linux\bin\ConnectionManagerExe;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\vcpkg
2025-04-04T20:54:48.5834319Z Platform: x64
2025-04-04T20:54:48.5834497Z UCRTVersion: 10.0.26100.0
2025-04-04T20:54:48.5834758Z UniversalCRTSdkDir: C:\Program Files (x86)\Windows Kits\10\
2025-04-04T20:54:48.5835203Z VCIDEInstallDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\
2025-04-04T20:54:48.5835688Z VCINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\
2025-04-04T20:54:48.5836105Z VCPKG_ROOT: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\vcpkg
2025-04-04T20:54:48.5836612Z VCToolsInstallDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\
2025-04-04T20:54:48.5837200Z VCToolsRedistDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Redist\MSVC\14.42.34433\
2025-04-04T20:54:48.5837602Z VCToolsVersion: 14.43.34808
2025-04-04T20:54:48.5837811Z VisualStudioVersion: 17.0
2025-04-04T20:54:48.5838137Z VS170COMNTOOLS: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\
2025-04-04T20:54:48.5838507Z VSCMD_ARG_app_plat: Desktop
2025-04-04T20:54:48.5838710Z VSCMD_ARG_HOST_ARCH: x64
2025-04-04T20:54:48.5838895Z VSCMD_ARG_TGT_ARCH: x64
2025-04-04T20:54:48.5839070Z VSCMD_VER: 17.13.2
2025-04-04T20:54:48.5839332Z VSINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\
2025-04-04T20:54:48.5839767Z VSSDK150INSTALL: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VSSDK
2025-04-04T20:54:48.5840197Z VSSDKINSTALL: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VSSDK
2025-04-04T20:54:48.5840793Z WindowsLibPath: C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.26100.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.26100.0
2025-04-04T20:54:48.5841360Z WindowsSdkBinPath: C:\Program Files (x86)\Windows Kits\10\bin\
2025-04-04T20:54:48.5841694Z WindowsSdkDir: C:\Program Files (x86)\Windows Kits\10\
2025-04-04T20:54:48.5841966Z WindowsSDKLibVersion: 10.0.26100.0\
2025-04-04T20:54:48.5842291Z WindowsSdkVerBinPath: C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\
2025-04-04T20:54:48.5842629Z WindowsSDKVersion: 10.0.26100.0\
2025-04-04T20:54:48.5843037Z WindowsSDK_ExecutablePath_x64: C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\
2025-04-04T20:54:48.5843627Z WindowsSDK_ExecutablePath_x86: C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\
2025-04-04T20:54:48.5844022Z __DOTNET_ADD_64BIT: 1
2025-04-04T20:54:48.5844217Z __DOTNET_PREFERRED_BITNESS: 64
2025-04-04T20:54:48.5851629Z __VSCMD_PREINIT_PATH: C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\Program Files (x86)\NSIS\;C:\tools\zstd;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\3.5.1\x64;C:\cabal\bin;C:\\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Program Files\R\R-4.4.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver\;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.21.13\x64\bin;C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts;C:\hostedtoolcache\windows\Python\3.9.13\x64;C:\hostedtoolcache\windows\Ruby\3.0.7\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.442-6\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\WiX Toolset v3.14\bin;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\160\DTS\Binn\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.9.9\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI\;c:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\SessionManagerPlugin\bin\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\Installer
2025-04-04T20:54:48.5859204Z ##[endgroup]
2025-04-04T20:54:51.4102168Z cmake version 4.0.0
2025-04-04T20:54:51.4105923Z
2025-04-04T20:54:51.4108457Z CMake suite maintained and supported by Kitware (kitware.com/cmake).
2025-04-04T20:54:51.4141966Z ---
2025-04-04T20:54:55.8851140Z MSBuild version 17.13.15+18b3035f6 for .NET Framework
2025-04-04T20:54:56.0123909Z 17.13.15.12501
2025-04-04T20:54:56.0171063Z 14.43.34808
2025-04-04T20:54:56.6778925Z Python 3.13.2
2025-04-04T20:54:56.7570679Z PowerShell version 7.4.7
2025-04-04T20:54:56.8467331Z ##[group]Run Set-Location "$env:VCPKG_INSTALLATION_ROOT"
2025-04-04T20:54:56.8467758Z [36;1mSet-Location "$env:VCPKG_INSTALLATION_ROOT"[0m
2025-04-04T20:54:56.8468221Z [36;1mAdd-Content -Path "triplets\x64-windows.cmake" -Value "set(VCPKG_BUILD_TYPE release)"[0m
2025-04-04T20:54:56.8468800Z [36;1mAdd-Content -Path "triplets\x64-windows-static.cmake" -Value "set(VCPKG_BUILD_TYPE release)"[0m
2025-04-04T20:54:56.8499077Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'"
2025-04-04T20:54:56.8499373Z env:
2025-04-04T20:54:56.8499563Z CI_FAILFAST_TEST_LEAVE_DANGLING: 1
2025-04-04T20:54:56.8499786Z MAKEJOBS: -j10
2025-04-04T20:54:56.8499945Z PYTHONUTF8: 1
2025-04-04T20:54:56.8500119Z TEST_RUNNER_TIMEOUT_FACTOR: 40
2025-04-04T20:54:56.8500332Z CommandPromptType: Native
2025-04-04T20:54:56.8500668Z DevEnvDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\
2025-04-04T20:54:56.8501169Z ExtensionSdkDir: C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs
2025-04-04T20:54:56.8503167Z EXTERNAL_INCLUDE: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um
2025-04-04T20:54:56.8505190Z Framework40Version: v4.0
2025-04-04T20:54:56.8505428Z FrameworkDir: C:\Windows\Microsoft.NET\Framework64\
2025-04-04T20:54:56.8505740Z FrameworkDir64: C:\Windows\Microsoft.NET\Framework64\
2025-04-04T20:54:56.8506009Z FrameworkVersion: v4.0.30319
2025-04-04T20:54:56.8506221Z FrameworkVersion64: v4.0.30319
2025-04-04T20:54:56.8506696Z FSHARPINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp\Tools
2025-04-04T20:54:56.8507222Z HTMLHelpDir: C:\Program Files (x86)\HTML Help Workshop
2025-04-04T20:54:56.8507649Z IFCPATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ifc\x64
2025-04-04T20:54:56.8509707Z INCLUDE: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um
2025-04-04T20:54:56.8511523Z is_x64_arch: true
2025-04-04T20:54:56.8512535Z LIB: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.26100.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.26100.0\\um\x64
2025-04-04T20:54:56.8516266Z LIBPATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.26100.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.26100.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319
2025-04-04T20:54:56.8517836Z NETFXSDKDir: C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\
2025-04-04T20:54:56.8530841Z Path: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\bin\HostX64\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\VCPackages;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\HTML Help Workshop;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp\Tools;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Team Tools\DiagnosticsHub\Collector;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\;C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\Program Files (x86)\NSIS\;C:\tools\zstd;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\3.5.1\x64;C:\cabal\bin;C:\\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Program Files\R\R-4.4.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver\;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.21.13\x64\bin;C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts;C:\hostedtoolcache\windows\Python\3.9.13\x64;C:\hostedtoolcache\windows\Ruby\3.0.7\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.442-6\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\WiX Toolset v3.14\bin;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\160\DTS\Binn\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.9.9\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI\;c:\tools\php;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\SessionManagerPlugin\bin\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\Installer;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\x64\bin;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\Linux\bin\ConnectionManagerExe;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\vcpkg
2025-04-04T20:54:56.8543421Z Platform: x64
2025-04-04T20:54:56.8543591Z UCRTVersion: 10.0.26100.0
2025-04-04T20:54:56.8543866Z UniversalCRTSdkDir: C:\Program Files (x86)\Windows Kits\10\
2025-04-04T20:54:56.8544299Z VCIDEInstallDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\
2025-04-04T20:54:56.8544771Z VCINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\
2025-04-04T20:54:56.8545205Z VCPKG_ROOT: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\vcpkg
2025-04-04T20:54:56.8545710Z VCToolsInstallDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\
2025-04-04T20:54:56.8546299Z VCToolsRedistDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Redist\MSVC\14.42.34433\
2025-04-04T20:54:56.8546706Z VCToolsVersion: 14.43.34808
2025-04-04T20:54:56.8546920Z VisualStudioVersion: 17.0
2025-04-04T20:54:56.8547258Z VS170COMNTOOLS: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\
2025-04-04T20:54:56.8548132Z VSCMD_ARG_app_plat: Desktop
2025-04-04T20:54:56.8548336Z VSCMD_ARG_HOST_ARCH: x64
2025-04-04T20:54:56.8548521Z VSCMD_ARG_TGT_ARCH: x64
2025-04-04T20:54:56.8548698Z VSCMD_VER: 17.13.2
2025-04-04T20:54:56.8548968Z VSINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\
2025-04-04T20:54:56.8549404Z VSSDK150INSTALL: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VSSDK
2025-04-04T20:54:56.8549844Z VSSDKINSTALL: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VSSDK
2025-04-04T20:54:56.8550448Z WindowsLibPath: C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.26100.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.26100.0
2025-04-04T20:54:56.8551027Z WindowsSdkBinPath: C:\Program Files (x86)\Windows Kits\10\bin\
2025-04-04T20:54:56.8551371Z WindowsSdkDir: C:\Program Files (x86)\Windows Kits\10\
2025-04-04T20:54:56.8551653Z WindowsSDKLibVersion: 10.0.26100.0\
2025-04-04T20:54:56.8551989Z WindowsSdkVerBinPath: C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\
2025-04-04T20:54:56.8552328Z WindowsSDKVersion: 10.0.26100.0\
2025-04-04T20:54:56.8552737Z WindowsSDK_ExecutablePath_x64: C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\
2025-04-04T20:54:56.8553324Z WindowsSDK_ExecutablePath_x86: C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\
2025-04-04T20:54:56.8553733Z __DOTNET_ADD_64BIT: 1
2025-04-04T20:54:56.8553928Z __DOTNET_PREFERRED_BITNESS: 64
2025-04-04T20:54:56.8561348Z __VSCMD_PREINIT_PATH: C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\Program Files (x86)\NSIS\;C:\tools\zstd;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\3.5.1\x64;C:\cabal\bin;C:\\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Program Files\R\R-4.4.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver\;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.21.13\x64\bin;C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts;C:\hostedtoolcache\windows\Python\3.9.13\x64;C:\hostedtoolcache\windows\Ruby\3.0.7\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.442-6\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\WiX Toolset v3.14\bin;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\160\DTS\Binn\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.9.9\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI\;c:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\SessionManagerPlugin\bin\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\Installer
2025-04-04T20:54:56.8568833Z ##[endgroup]
2025-04-04T20:54:57.2205697Z ##[group]Run actions/cache@v4
2025-04-04T20:54:57.2205980Z with:
2025-04-04T20:54:57.2206163Z path: C:/vcpkg/downloads/tools
2025-04-04T20:54:57.2206395Z key: win64-native-vcpkg-tools
2025-04-04T20:54:57.2206620Z enableCrossOsArchive: false
2025-04-04T20:54:57.2206835Z fail-on-cache-miss: false
2025-04-04T20:54:57.2207029Z lookup-only: false
2025-04-04T20:54:57.2207206Z save-always: false
2025-04-04T20:54:57.2207361Z env:
2025-04-04T20:54:57.2207517Z CI_FAILFAST_TEST_LEAVE_DANGLING: 1
2025-04-04T20:54:57.2207734Z MAKEJOBS: -j10
2025-04-04T20:54:57.2207901Z PYTHONUTF8: 1
2025-04-04T20:54:57.2208065Z TEST_RUNNER_TIMEOUT_FACTOR: 40
2025-04-04T20:54:57.2208275Z CommandPromptType: Native
2025-04-04T20:54:57.2208599Z DevEnvDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\
2025-04-04T20:54:57.2209083Z ExtensionSdkDir: C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs
2025-04-04T20:54:57.2211116Z EXTERNAL_INCLUDE: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um
2025-04-04T20:54:57.2212984Z Framework40Version: v4.0
2025-04-04T20:54:57.2213219Z FrameworkDir: C:\Windows\Microsoft.NET\Framework64\
2025-04-04T20:54:57.2213586Z FrameworkDir64: C:\Windows\Microsoft.NET\Framework64\
2025-04-04T20:54:57.2213858Z FrameworkVersion: v4.0.30319
2025-04-04T20:54:57.2214068Z FrameworkVersion64: v4.0.30319
2025-04-04T20:54:57.2214546Z FSHARPINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp\Tools
2025-04-04T20:54:57.2215070Z HTMLHelpDir: C:\Program Files (x86)\HTML Help Workshop
2025-04-04T20:54:57.2215498Z IFCPATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ifc\x64
2025-04-04T20:54:57.2217497Z INCLUDE: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um
2025-04-04T20:54:57.2219305Z is_x64_arch: true
2025-04-04T20:54:57.2220310Z LIB: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.26100.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.26100.0\\um\x64
2025-04-04T20:54:57.2224029Z LIBPATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.26100.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.26100.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319
2025-04-04T20:54:57.2225701Z NETFXSDKDir: C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\
2025-04-04T20:54:57.2238561Z Path: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\bin\HostX64\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\VCPackages;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\HTML Help Workshop;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp\Tools;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Team Tools\DiagnosticsHub\Collector;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\;C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\Program Files (x86)\NSIS\;C:\tools\zstd;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\3.5.1\x64;C:\cabal\bin;C:\\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Program Files\R\R-4.4.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver\;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.21.13\x64\bin;C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts;C:\hostedtoolcache\windows\Python\3.9.13\x64;C:\hostedtoolcache\windows\Ruby\3.0.7\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.442-6\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\WiX Toolset v3.14\bin;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\160\DTS\Binn\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.9.9\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI\;c:\tools\php;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\SessionManagerPlugin\bin\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\Installer;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\x64\bin;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\Linux\bin\ConnectionManagerExe;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\vcpkg
2025-04-04T20:54:57.2251105Z Platform: x64
2025-04-04T20:54:57.2251271Z UCRTVersion: 10.0.26100.0
2025-04-04T20:54:57.2251537Z UniversalCRTSdkDir: C:\Program Files (x86)\Windows Kits\10\
2025-04-04T20:54:57.2251966Z VCIDEInstallDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\
2025-04-04T20:54:57.2252438Z VCINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\
2025-04-04T20:54:57.2252867Z VCPKG_ROOT: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\vcpkg
2025-04-04T20:54:57.2253374Z VCToolsInstallDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\
2025-04-04T20:54:57.2253962Z VCToolsRedistDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Redist\MSVC\14.42.34433\
2025-04-04T20:54:57.2254370Z VCToolsVersion: 14.43.34808
2025-04-04T20:54:57.2254580Z VisualStudioVersion: 17.0
2025-04-04T20:54:57.2254910Z VS170COMNTOOLS: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\
2025-04-04T20:54:57.2255276Z VSCMD_ARG_app_plat: Desktop
2025-04-04T20:54:57.2255467Z VSCMD_ARG_HOST_ARCH: x64
2025-04-04T20:54:57.2255660Z VSCMD_ARG_TGT_ARCH: x64
2025-04-04T20:54:57.2255834Z VSCMD_VER: 17.13.2
2025-04-04T20:54:57.2256106Z VSINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\
2025-04-04T20:54:57.2256534Z VSSDK150INSTALL: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VSSDK
2025-04-04T20:54:57.2256972Z VSSDKINSTALL: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VSSDK
2025-04-04T20:54:57.2257571Z WindowsLibPath: C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.26100.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.26100.0
2025-04-04T20:54:57.2258133Z WindowsSdkBinPath: C:\Program Files (x86)\Windows Kits\10\bin\
2025-04-04T20:54:57.2258479Z WindowsSdkDir: C:\Program Files (x86)\Windows Kits\10\
2025-04-04T20:54:57.2258762Z WindowsSDKLibVersion: 10.0.26100.0\
2025-04-04T20:54:57.2259095Z WindowsSdkVerBinPath: C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\
2025-04-04T20:54:57.2259429Z WindowsSDKVersion: 10.0.26100.0\
2025-04-04T20:54:57.2259826Z WindowsSDK_ExecutablePath_x64: C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\
2025-04-04T20:54:57.2260419Z WindowsSDK_ExecutablePath_x86: C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\
2025-04-04T20:54:57.2260813Z __DOTNET_ADD_64BIT: 1
2025-04-04T20:54:57.2261005Z __DOTNET_PREFERRED_BITNESS: 64
2025-04-04T20:54:57.2268434Z __VSCMD_PREINIT_PATH: C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\Program Files (x86)\NSIS\;C:\tools\zstd;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\3.5.1\x64;C:\cabal\bin;C:\\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Program Files\R\R-4.4.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver\;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.21.13\x64\bin;C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts;C:\hostedtoolcache\windows\Python\3.9.13\x64;C:\hostedtoolcache\windows\Ruby\3.0.7\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.442-6\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\WiX Toolset v3.14\bin;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\160\DTS\Binn\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.9.9\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI\;c:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\SessionManagerPlugin\bin\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\Installer
2025-04-04T20:54:57.2275922Z ##[endgroup]
2025-04-04T20:54:58.0682089Z Cache not found for input keys: win64-native-vcpkg-tools
2025-04-04T20:54:58.3308674Z ##[group]Run actions/cache/restore@v4
2025-04-04T20:54:58.3309019Z with:
2025-04-04T20:54:58.3309215Z path: ~/AppData/Local/vcpkg/archives
2025-04-04T20:54:58.3309996Z key: win64-native-vcpkg-binary-86a91da98bfe83e86341c30d3b737a0a2802a493ee59e8f597ac4b5ad04681ea
2025-04-04T20:54:58.3310809Z enableCrossOsArchive: false
2025-04-04T20:54:58.3311175Z fail-on-cache-miss: false
2025-04-04T20:54:58.3311515Z lookup-only: false
2025-04-04T20:54:58.3311793Z env:
2025-04-04T20:54:58.3312064Z CI_FAILFAST_TEST_LEAVE_DANGLING: 1
2025-04-04T20:54:58.3312431Z MAKEJOBS: -j10
2025-04-04T20:54:58.3312712Z PYTHONUTF8: 1
2025-04-04T20:54:58.3313005Z TEST_RUNNER_TIMEOUT_FACTOR: 40
2025-04-04T20:54:58.3313353Z CommandPromptType: Native
2025-04-04T20:54:58.3313886Z DevEnvDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\
2025-04-04T20:54:58.3314681Z ExtensionSdkDir: C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs
2025-04-04T20:54:58.3318189Z EXTERNAL_INCLUDE: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um
2025-04-04T20:54:58.3321547Z Framework40Version: v4.0
2025-04-04T20:54:58.3321984Z FrameworkDir: C:\Windows\Microsoft.NET\Framework64\
2025-04-04T20:54:58.3322542Z FrameworkDir64: C:\Windows\Microsoft.NET\Framework64\
2025-04-04T20:54:58.3323023Z FrameworkVersion: v4.0.30319
2025-04-04T20:54:58.3323410Z FrameworkVersion64: v4.0.30319
2025-04-04T20:54:58.3324711Z FSHARPINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp\Tools
2025-04-04T20:54:58.3325696Z HTMLHelpDir: C:\Program Files (x86)\HTML Help Workshop
2025-04-04T20:54:58.3326469Z IFCPATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ifc\x64
2025-04-04T20:54:58.3331333Z INCLUDE: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um
2025-04-04T20:54:58.3334497Z is_x64_arch: true
2025-04-04T20:54:58.3336252Z LIB: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.26100.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.26100.0\\um\x64
2025-04-04T20:54:58.3342406Z LIBPATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.26100.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.26100.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319
2025-04-04T20:54:58.3344027Z NETFXSDKDir: C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\
2025-04-04T20:54:58.3357561Z Path: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\bin\HostX64\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\VCPackages;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\HTML Help Workshop;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp\Tools;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Team Tools\DiagnosticsHub\Collector;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\;C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\Program Files (x86)\NSIS\;C:\tools\zstd;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\3.5.1\x64;C:\cabal\bin;C:\\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Program Files\R\R-4.4.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver\;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.21.13\x64\bin;C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts;C:\hostedtoolcache\windows\Python\3.9.13\x64;C:\hostedtoolcache\windows\Ruby\3.0.7\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.442-6\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\WiX Toolset v3.14\bin;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\160\DTS\Binn\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.9.9\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI\;c:\tools\php;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\SessionManagerPlugin\bin\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\Installer;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\x64\bin;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\Linux\bin\ConnectionManagerExe;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\vcpkg
2025-04-04T20:54:58.3370198Z Platform: x64
2025-04-04T20:54:58.3370376Z UCRTVersion: 10.0.26100.0
2025-04-04T20:54:58.3370648Z UniversalCRTSdkDir: C:\Program Files (x86)\Windows Kits\10\
2025-04-04T20:54:58.3371089Z VCIDEInstallDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\
2025-04-04T20:54:58.3371561Z VCINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\
2025-04-04T20:54:58.3371995Z VCPKG_ROOT: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\vcpkg
2025-04-04T20:54:58.3372503Z VCToolsInstallDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\
2025-04-04T20:54:58.3373137Z VCToolsRedistDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Redist\MSVC\14.42.34433\
2025-04-04T20:54:58.3396884Z VCToolsVersion: 14.43.34808
2025-04-04T20:54:58.3397351Z VisualStudioVersion: 17.0
2025-04-04T20:54:58.3397982Z VS170COMNTOOLS: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\
2025-04-04T20:54:58.3398610Z VSCMD_ARG_app_plat: Desktop
2025-04-04T20:54:58.3398950Z VSCMD_ARG_HOST_ARCH: x64
2025-04-04T20:54:58.3399236Z VSCMD_ARG_TGT_ARCH: x64
2025-04-04T20:54:58.3399531Z VSCMD_VER: 17.13.2
2025-04-04T20:54:58.3399949Z VSINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\
2025-04-04T20:54:58.3400638Z VSSDK150INSTALL: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VSSDK
2025-04-04T20:54:58.3401344Z VSSDKINSTALL: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VSSDK
2025-04-04T20:54:58.3402205Z WindowsLibPath: C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.26100.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.26100.0
2025-04-04T20:54:58.3402814Z WindowsSdkBinPath: C:\Program Files (x86)\Windows Kits\10\bin\
2025-04-04T20:54:58.3403169Z WindowsSdkDir: C:\Program Files (x86)\Windows Kits\10\
2025-04-04T20:54:58.3403447Z WindowsSDKLibVersion: 10.0.26100.0\
2025-04-04T20:54:58.3403787Z WindowsSdkVerBinPath: C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\
2025-04-04T20:54:58.3404131Z WindowsSDKVersion: 10.0.26100.0\
2025-04-04T20:54:58.3404539Z WindowsSDK_ExecutablePath_x64: C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\
2025-04-04T20:54:58.3405130Z WindowsSDK_ExecutablePath_x86: C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\
2025-04-04T20:54:58.3405531Z __DOTNET_ADD_64BIT: 1
2025-04-04T20:54:58.3405735Z __DOTNET_PREFERRED_BITNESS: 64
2025-04-04T20:54:58.3420786Z __VSCMD_PREINIT_PATH: C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\Program Files (x86)\NSIS\;C:\tools\zstd;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\3.5.1\x64;C:\cabal\bin;C:\\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Program Files\R\R-4.4.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver\;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.21.13\x64\bin;C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts;C:\hostedtoolcache\windows\Python\3.9.13\x64;C:\hostedtoolcache\windows\Ruby\3.0.7\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.442-6\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\WiX Toolset v3.14\bin;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\160\DTS\Binn\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.9.9\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI\;c:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\SessionManagerPlugin\bin\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\Installer
2025-04-04T20:54:58.3428713Z ##[endgroup]
2025-04-04T20:54:59.0767963Z Cache not found for input keys: win64-native-vcpkg-binary-86a91da98bfe83e86341c30d3b737a0a2802a493ee59e8f597ac4b5ad04681ea
2025-04-04T20:54:59.1000061Z ##[group]Run cmake -B build --preset vs2022-static -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT\scripts\buildsystems\vcpkg.cmake" -DVCPKG_MANIFEST_NO_DEFAULT_FEATURES=ON -DVCPKG_MANIFEST_FEATURES="sqlite" -DBUILD_GUI=OFF -DBUILD_FOR_FUZZING=ON -DWERROR=ON
2025-04-04T20:54:59.1002719Z [36;1mcmake -B build --preset vs2022-static -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT\scripts\buildsystems\vcpkg.cmake" -DVCPKG_MANIFEST_NO_DEFAULT_FEATURES=ON -DVCPKG_MANIFEST_FEATURES="sqlite" -DBUILD_GUI=OFF -DBUILD_FOR_FUZZING=ON -DWERROR=ON[0m
2025-04-04T20:54:59.1051563Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'"
2025-04-04T20:54:59.1052056Z env:
2025-04-04T20:54:59.1052324Z CI_FAILFAST_TEST_LEAVE_DANGLING: 1
2025-04-04T20:54:59.1052690Z MAKEJOBS: -j10
2025-04-04T20:54:59.1052967Z PYTHONUTF8: 1
2025-04-04T20:54:59.1053248Z TEST_RUNNER_TIMEOUT_FACTOR: 40
2025-04-04T20:54:59.1053615Z CommandPromptType: Native
2025-04-04T20:54:59.1054221Z DevEnvDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\
2025-04-04T20:54:59.1055060Z ExtensionSdkDir: C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs
2025-04-04T20:54:59.1058595Z EXTERNAL_INCLUDE: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um
2025-04-04T20:54:59.1060551Z Framework40Version: v4.0
2025-04-04T20:54:59.1060866Z FrameworkDir: C:\Windows\Microsoft.NET\Framework64\
2025-04-04T20:54:59.1061190Z FrameworkDir64: C:\Windows\Microsoft.NET\Framework64\
2025-04-04T20:54:59.1061457Z FrameworkVersion: v4.0.30319
2025-04-04T20:54:59.1061679Z FrameworkVersion64: v4.0.30319
2025-04-04T20:54:59.1062151Z FSHARPINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp\Tools
2025-04-04T20:54:59.1062684Z HTMLHelpDir: C:\Program Files (x86)\HTML Help Workshop
2025-04-04T20:54:59.1063112Z IFCPATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ifc\x64
2025-04-04T20:54:59.1065102Z INCLUDE: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\include;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.26100.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.26100.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um
2025-04-04T20:54:59.1066930Z is_x64_arch: true
2025-04-04T20:54:59.1067946Z LIB: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x64;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\lib\um\x64;C:\Program Files (x86)\Windows Kits\10\lib\10.0.26100.0\ucrt\x64;C:\Program Files (x86)\Windows Kits\10\\lib\10.0.26100.0\\um\x64
2025-04-04T20:54:59.1072150Z LIBPATH: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\ATLMFC\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\lib\x86\store\references;C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.26100.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.26100.0;C:\Windows\Microsoft.NET\Framework64\v4.0.30319
2025-04-04T20:54:59.1073947Z NETFXSDKDir: C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\
2025-04-04T20:54:59.1086845Z Path: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\bin\HostX64\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\VCPackages;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\HTML Help Workshop;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\FSharp\Tools;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Team Tools\DiagnosticsHub\Collector;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\Extensions\Microsoft\CodeCoverage.Console;C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\;C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\Program Files (x86)\NSIS\;C:\tools\zstd;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\3.5.1\x64;C:\cabal\bin;C:\\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Program Files\R\R-4.4.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver\;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.21.13\x64\bin;C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts;C:\hostedtoolcache\windows\Python\3.9.13\x64;C:\hostedtoolcache\windows\Ruby\3.0.7\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.442-6\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\WiX Toolset v3.14\bin;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\160\DTS\Binn\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.9.9\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI\;c:\tools\php;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\SessionManagerPlugin\bin\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\Installer;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\Llvm\x64\bin;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\CMake\bin;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\CommonExtensions\Microsoft\CMake\Ninja;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\Linux\bin\ConnectionManagerExe;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\vcpkg
2025-04-04T20:54:59.1099436Z Platform: x64
2025-04-04T20:54:59.1099606Z UCRTVersion: 10.0.26100.0
2025-04-04T20:54:59.1099877Z UniversalCRTSdkDir: C:\Program Files (x86)\Windows Kits\10\
2025-04-04T20:54:59.1100317Z VCIDEInstallDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\VC\
2025-04-04T20:54:59.1100789Z VCINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\
2025-04-04T20:54:59.1101217Z VCPKG_ROOT: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\vcpkg
2025-04-04T20:54:59.1101736Z VCToolsInstallDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.43.34808\
2025-04-04T20:54:59.1102329Z VCToolsRedistDir: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Redist\MSVC\14.42.34433\
2025-04-04T20:54:59.1102744Z VCToolsVersion: 14.43.34808
2025-04-04T20:54:59.1102946Z VisualStudioVersion: 17.0
2025-04-04T20:54:59.1103281Z VS170COMNTOOLS: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\
2025-04-04T20:54:59.1103640Z VSCMD_ARG_app_plat: Desktop
2025-04-04T20:54:59.1103840Z VSCMD_ARG_HOST_ARCH: x64
2025-04-04T20:54:59.1104023Z VSCMD_ARG_TGT_ARCH: x64
2025-04-04T20:54:59.1104200Z VSCMD_VER: 17.13.2
2025-04-04T20:54:59.1104468Z VSINSTALLDIR: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\
2025-04-04T20:54:59.1104904Z VSSDK150INSTALL: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VSSDK
2025-04-04T20:54:59.1105339Z VSSDKINSTALL: C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VSSDK
2025-04-04T20:54:59.1105938Z WindowsLibPath: C:\Program Files (x86)\Windows Kits\10\UnionMetadata\10.0.26100.0;C:\Program Files (x86)\Windows Kits\10\References\10.0.26100.0
2025-04-04T20:54:59.1106789Z WindowsSdkBinPath: C:\Program Files (x86)\Windows Kits\10\bin\
2025-04-04T20:54:59.1107408Z WindowsSdkDir: C:\Program Files (x86)\Windows Kits\10\
2025-04-04T20:54:59.1107892Z WindowsSDKLibVersion: 10.0.26100.0\
2025-04-04T20:54:59.1108490Z WindowsSdkVerBinPath: C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\
2025-04-04T20:54:59.1109089Z WindowsSDKVersion: 10.0.26100.0\
2025-04-04T20:54:59.1109797Z WindowsSDK_ExecutablePath_x64: C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\
2025-04-04T20:54:59.1110889Z WindowsSDK_ExecutablePath_x86: C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\
2025-04-04T20:54:59.1111615Z __DOTNET_ADD_64BIT: 1
2025-04-04T20:54:59.1111960Z __DOTNET_PREFERRED_BITNESS: 64
2025-04-04T20:54:59.1119831Z __VSCMD_PREINIT_PATH: C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\Program Files (x86)\NSIS\;C:\tools\zstd;C:\Program Files\Mercurial\;C:\hostedtoolcache\windows\stack\3.5.1\x64;C:\cabal\bin;C:\\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 8.0\bin;C:\Program Files\R\R-4.4.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver\;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.21.13\x64\bin;C:\hostedtoolcache\windows\Python\3.9.13\x64\Scripts;C:\hostedtoolcache\windows\Python\3.9.13\x64;C:\hostedtoolcache\windows\Ruby\3.0.7\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.442-6\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\PowerShell\7\;C:\Program Files\Microsoft\Web Platform Installer\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\;C:\Program Files (x86)\WiX Toolset v3.14\bin;C:\Program Files\Microsoft SQL Server\130\DTS\Binn\;C:\Program Files\Microsoft SQL Server\140\DTS\Binn\;C:\Program Files\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\Microsoft SQL Server\160\DTS\Binn\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.9.9\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI\;c:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2\;C:\Program Files\Amazon\SessionManagerPlugin\bin\;C:\Program Files\Amazon\AWSSAMCLI\bin\;C:\Program Files\Microsoft SQL Server\130\Tools\Binn\;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps;C:\Program Files (x86)\Microsoft Visual Studio\Installer
2025-04-04T20:54:59.1127780Z ##[endgroup]
2025-04-04T20:54:59.8876284Z -- Running vcpkg install
2025-04-04T20:55:15.3888997Z Detecting compiler hash for triplet x64-windows...
2025-04-04T20:55:37.6491860Z Compiler found: C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.43.34808/bin/Hostx64/x64/cl.exe
2025-04-04T20:55:38.0422407Z Detecting compiler hash for triplet x64-windows-static...
2025-04-04T20:55:38.7372519Z Compiler found: C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Tools/MSVC/14.43.34808/bin/Hostx64/x64/cl.exe
2025-04-04T20:55:38.9999442Z The following packages will be built and installed:
2025-04-04T20:55:39.0001001Z * boost-assert:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-assert\a776f9bcec97f99c681858373363b6c973deecff
2025-04-04T20:55:39.0002085Z * boost-bind:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-bind\111429d845df26d20305f3d7da0286840f2ab06a
2025-04-04T20:55:39.0002957Z * boost-cmake:x64-windows-static@1.85.0#2 -- C:\vcpkg\buildtrees\versioning_\versions\boost-cmake\2b1869c19b01257dc08348e1b29bcd7d5bad2fcc
2025-04-04T20:55:39.0003834Z * boost-concept-check:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-concept-check\837108f5652827b449bdfb5830891aba380293c3
2025-04-04T20:55:39.0004724Z * boost-config:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-config\964bd95c86a98c1c8c5271b4a18e617869ce2348
2025-04-04T20:55:39.0005594Z * boost-container-hash:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-container-hash\dea487fe4339749373fbbb3d67d38bc07f25fcd6
2025-04-04T20:55:39.0006467Z * boost-core:x64-windows-static@1.85.0#2 -- C:\vcpkg\buildtrees\versioning_\versions\boost-core\1a9aca564910d4927aab2a0b3edd5dcc92a0a484
2025-04-04T20:55:39.0007286Z * boost-describe:x64-windows-static@1.85.0#2 -- C:\vcpkg\buildtrees\versioning_\versions\boost-describe\bc47f93f7585264ea56a760693785eef00fc2324
2025-04-04T20:55:39.0008352Z * boost-detail:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-detail\c61fada41d8ba3839e6cbed4e90bcd12e44ee839
2025-04-04T20:55:39.0009163Z * boost-function:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-function\6a43002e49ebc7efbaef90a797ab79a73a3c914d
2025-04-04T20:55:39.0010174Z * boost-function-types:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-function-types\f104ffe8e18e3f3ee0a80d8e5bf80b57933dfe2d
2025-04-04T20:55:39.0011033Z * boost-functional:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-functional\985d85794495e615e94e17c007055281850498e3
2025-04-04T20:55:39.0011900Z * boost-fusion:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-fusion\2defb3e586f0a240aebb673357201d5a3332da96
2025-04-04T20:55:39.0013266Z * boost-headers:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-headers\dc074dbcbe8adaf7970a9dc92d8c385267042e0c
2025-04-04T20:55:39.0014692Z * boost-integer:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-integer\a1ffd40ae899157571353903f1d34f26a76d2314
2025-04-04T20:55:39.0016005Z * boost-io:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-io\3fa4c0dc034227cee5c7e0725300c2f90359b14e
2025-04-04T20:55:39.0017338Z * boost-iterator:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-iterator\7140544c82b8985f676a67fbe07e70118cf4278f
2025-04-04T20:55:39.0018712Z * boost-move:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-move\0b7c85608cba0c5e4f3f68f8c3687edae3b77b14
2025-04-04T20:55:39.0020035Z * boost-mp11:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-mp11\880c42ad4df9c2f2f7dc3125f9f49c3c289726ce
2025-04-04T20:55:39.0021349Z * boost-mpl:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-mpl\44e66fb813fd1c2180fb4676afc5be607f22baf7
2025-04-04T20:55:39.0022748Z boost-multi-index:x64-windows-static@1.85.0#2 -- C:\vcpkg\buildtrees\versioning_\versions\boost-multi-index\68615dce25456d402abe96e7c97be69f6209d60d
2025-04-04T20:55:39.0024205Z * boost-optional:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-optional\315e38ed952641dc2a064ab7a51f8050640190b9
2025-04-04T20:55:39.0025673Z * boost-parameter:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-parameter\355ecc02b1782f48f977906d1ebaf8ec048b01b3
2025-04-04T20:55:39.0027097Z * boost-predef:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-predef\509cb8e43b7f40b5ac27f6d2fcc930517726af4d
2025-04-04T20:55:39.0028564Z * boost-preprocessor:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-preprocessor\77759780d7bf4571b481aa189a7bb7150206b3cb
2025-04-04T20:55:39.0030045Z boost-signals2:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-signals2\1ed53bf8b407448d660a178946f2099a2f9aa9df
2025-04-04T20:55:39.0031498Z * boost-smart-ptr:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-smart-ptr\12b7fc7a25dc88e99e9a71da259c5467f3ae4e4a
2025-04-04T20:55:39.0033026Z * boost-static-assert:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-static-assert\da6fbe5e5e5a77cd1a4507e272781f5ac12f61f1
2025-04-04T20:55:39.0034858Z * boost-throw-exception:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-throw-exception\1484d8b3741dbf840c0c88a8bb1205efcf66c288
2025-04-04T20:55:39.0036369Z * boost-tuple:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-tuple\0f3d4dcd2e276bfcf1af7e3eaab6503d281e5407
2025-04-04T20:55:39.0037820Z * boost-type-index:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-type-index\6adc7c806c0465ba3d419938d7cea2b3c1c62a72
2025-04-04T20:55:39.0040308Z * boost-type-traits:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-type-traits\fd334eb6c15dd762232760cb740567c6a2ade780
2025-04-04T20:55:39.0041242Z * boost-typeof:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-typeof\1f5378d3498322cbbfbfe18cdbbeb0ec8079aaeb
2025-04-04T20:55:39.0042203Z * boost-uninstall:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-uninstall\ac48829be60fd0ac2bd81b1774ae317c2d0d406e
2025-04-04T20:55:39.0043011Z * boost-utility:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-utility\0421ccb31f254874d8f0814bb2266c13255c4822
2025-04-04T20:55:39.0043781Z * boost-variant:x64-windows-static@1.85.0#1 -- C:\vcpkg\buildtrees\versioning_\versions\boost-variant\479cb9754b33ed6005f55373d2b5364c2ad7b377
2025-04-04T20:55:39.0044568Z libevent[core,thread]:x64-windows-static@2.1.12#7 -- C:\vcpkg\buildtrees\versioning_\versions\libevent\49a66da074def8806e42235e6c64af567987498f
2025-04-04T20:55:39.0045350Z sqlite3[core,json1]:x64-windows-static@3.46.1 -- C:\vcpkg\buildtrees\versioning_\versions\sqlite3\9cc1e5365321142755736cbc5a61cfa194f5b297
2025-04-04T20:55:39.0046106Z * vcpkg-boost:x64-windows@2024-05-15 -- C:\vcpkg\buildtrees\versioning_\versions\vcpkg-boost\aca8ab6ec76d120c4482a629de23cad5ad7e4643
2025-04-04T20:55:39.0046846Z * vcpkg-cmake:x64-windows@2024-04-23 -- C:\vcpkg\buildtrees\versioning_\versions\vcpkg-cmake\e74aa1e8f93278a8e71372f1fa08c3df420eb840
2025-04-04T20:55:39.0047618Z * vcpkg-cmake-config:x64-windows@2024-05-23 -- C:\vcpkg\buildtrees\versioning_\versions\vcpkg-cmake-config\97a63e4bc1a17422ffe4eff71da53b4b561a7841
2025-04-04T20:55:39.0048244Z Additional packages (*) will be modified to complete this operation.
2025-04-04T20:55:39.1032556Z Restored 0 package(s) from C:\Users\runneradmin\AppData\Local\vcpkg\archives in 737 us. Use --debug to see more details.
2025-04-04T20:55:39.1033766Z Installing 1/41 vcpkg-cmake-config:x64-windows@2024-05-23...
2025-04-04T20:55:39.1034165Z Building vcpkg-cmake-config:x64-windows@2024-05-23...
2025-04-04T20:55:39.1034824Z C:\vcpkg\buildtrees\versioning_\versions\vcpkg-cmake-config\97a63e4bc1a17422ffe4eff71da53b4b561a7841: info: installing overlay port from here
2025-04-04T20:55:39.1332860Z -- Installing: C:/vcpkg/packages/vcpkg-cmake-config_x64-windows/share/vcpkg-cmake-config/vcpkg_cmake_config_fixup.cmake
2025-04-04T20:55:39.1343695Z -- Installing: C:/vcpkg/packages/vcpkg-cmake-config_x64-windows/share/vcpkg-cmake-config/vcpkg-port-config.cmake
2025-04-04T20:55:39.1353783Z -- Installing: C:/vcpkg/packages/vcpkg-cmake-config_x64-windows/share/vcpkg-cmake-config/copyright
2025-04-04T20:55:39.1412167Z -- Skipping post-build validation due to VCPKG_POLICY_EMPTY_PACKAGE
2025-04-04T20:55:39.1622507Z Starting submission of vcpkg-cmake-config:x64-windows@2024-05-23 to 1 binary cache(s) in the background
2025-04-04T20:55:39.1623371Z Elapsed time to handle vcpkg-cmake-config:x64-windows: 58.9 ms
2025-04-04T20:55:39.1624356Z vcpkg-cmake-config:x64-windows package ABI: 7deb2bc9e969d67ec2ee9eac012687ee7e1be0e45b64efad85dcfa052bc960b5
2025-04-04T20:55:39.1625030Z Installing 2/41 vcpkg-cmake:x64-windows@2024-04-23...
2025-04-04T20:55:39.1625542Z Building vcpkg-cmake:x64-windows@2024-04-23...
2025-04-04T20:55:39.1626495Z C:\vcpkg\buildtrees\versioning_\versions\vcpkg-cmake\e74aa1e8f93278a8e71372f1fa08c3df420eb840: info: installing overlay port from here
2025-04-04T20:55:39.2014652Z -- Installing: C:/vcpkg/packages/vcpkg-cmake_x64-windows/share/vcpkg-cmake/vcpkg_cmake_configure.cmake
2025-04-04T20:55:39.2024944Z -- Installing: C:/vcpkg/packages/vcpkg-cmake_x64-windows/share/vcpkg-cmake/vcpkg_cmake_build.cmake
2025-04-04T20:55:39.2325208Z -- Installing: C:/vcpkg/packages/vcpkg-cmake_x64-windows/share/vcpkg-cmake/vcpkg_cmake_install.cmake
2025-04-04T20:55:39.2376077Z -- Installing: C:/vcpkg/packages/vcpkg-cmake_x64-windows/share/vcpkg-cmake/vcpkg-port-config.cmake
2025-04-04T20:55:39.2540493Z -- Installing: C:/vcpkg/packages/vcpkg-cmake_x64-windows/share/vcpkg-cmake/copyright
2025-04-04T20:55:39.3222313Z -- Performing post-build validation
2025-04-04T20:55:39.3976800Z Starting submission of vcpkg-cmake:x64-windows@2024-04-23 to 1 binary cache(s) in the background
2025-04-04T20:55:39.3977734Z Elapsed time to handle vcpkg-cmake:x64-windows: 235 ms
2025-04-04T20:55:39.3978580Z vcpkg-cmake:x64-windows package ABI: 860255fc95b8aad7eca81434e8635ff5e97205a838baaeb466b9ca990d9dd6f4
2025-04-04T20:55:39.3979068Z Installing 3/41 vcpkg-boost:x64-windows@2024-05-15...
2025-04-04T20:55:39.3979372Z Building vcpkg-boost:x64-windows@2024-05-15...
2025-04-04T20:55:39.3979923Z C:\vcpkg\buildtrees\versioning_\versions\vcpkg-boost\aca8ab6ec76d120c4482a629de23cad5ad7e4643: info: installing overlay port from here
2025-04-04T20:55:39.4589124Z -- Installing: C:/vcpkg/packages/vcpkg-boost_x64-windows/share/vcpkg-boost/usage.in
2025-04-04T20:55:39.4843100Z -- Installing: C:/vcpkg/packages/vcpkg-boost_x64-windows/share/vcpkg-boost/boost-install.cmake
2025-04-04T20:55:39.4893417Z -- Installing: C:/vcpkg/packages/vcpkg-boost_x64-windows/share/vcpkg-boost/vcpkg-port-config.cmake
2025-04-04T20:55:39.5171992Z -- Installing: C:/vcpkg/packages/vcpkg-boost_x64-windows/share/vcpkg-boost/copyright
2025-04-04T20:55:39.5324871Z -- Performing post-build validation
2025-04-04T20:55:39.5636283Z Starting submission of vcpkg-boost:x64-windows@2024-05-15 to 1 binary cache(s) in the background
2025-04-04T20:55:39.5637179Z Elapsed time to handle vcpkg-boost:x64-windows: 166 ms
2025-04-04T20:55:39.5637686Z vcpkg-boost:x64-windows package ABI: 1c7c244f106c381780180cf8da72160443189c2ed76d61b75a5efbc9a5cbd711
2025-04-04T20:55:39.5638211Z Installing 4/41 boost-uninstall:x64-windows-static@1.85.0#1...
2025-04-04T20:55:39.5638560Z Building boost-uninstall:x64-windows-static@1.85.0#1...
2025-04-04T20:55:39.5639171Z C:\vcpkg\buildtrees\versioning_\versions\boost-uninstall\ac48829be60fd0ac2bd81b1774ae317c2d0d406e: info: installing overlay port from here
2025-04-04T20:55:39.6143020Z --
2025-04-04T20:55:39.6143696Z Please use the following command when you need to remove all boost ports/components:
2025-04-04T20:55:39.6144480Z "./vcpkg remove boost-uninstall:x64-windows-static --recurse"
2025-04-04T20:55:39.6144860Z
2025-04-04T20:55:39.6514982Z -- Skipping post-build validation due to VCPKG_POLICY_EMPTY_PACKAGE
2025-04-04T20:55:39.6918032Z Starting submission of boost-uninstall:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:55:39.6919310Z Elapsed time to handle boost-uninstall:x64-windows-static: 128 ms
2025-04-04T20:55:39.6920490Z boost-uninstall:x64-windows-static package ABI: 01561e91d29b57390f977a5d0761d0ddfadb3e63468537eed521383879a186ad
2025-04-04T20:55:39.6922054Z Completed submission of vcpkg-cmake-config:x64-windows@2024-05-23 to 1 binary cache(s) in 451 ms
2025-04-04T20:55:39.6922829Z Completed submission of vcpkg-cmake:x64-windows@2024-04-23 to 1 binary cache(s) in 74.7 ms
2025-04-04T20:55:39.6923320Z Installing 5/41 boost-cmake:x64-windows-static@1.85.0#2...
2025-04-04T20:55:39.6923888Z Building boost-cmake:x64-windows-static@1.85.0#2...
2025-04-04T20:55:39.6924848Z C:\vcpkg\buildtrees\versioning_\versions\boost-cmake\2b1869c19b01257dc08348e1b29bcd7d5bad2fcc: info: installing overlay port from here
2025-04-04T20:55:39.9914853Z Downloading https://github.com/boostorg/boost/archive/boost-1.85.0.tar.gz -> boostorg-boost-boost-1.85.0.tar.gz
2025-04-04T20:55:40.4821264Z Successfully downloaded boostorg-boost-boost-1.85.0.tar.gz
2025-04-04T20:55:40.9218211Z -- Extracting source C:/vcpkg/downloads/boostorg-boost-boost-1.85.0.tar.gz
2025-04-04T20:55:41.4746535Z -- Using source at C:/vcpkg/buildtrees/boost-cmake/src/ost-1.85.0-27110fc97f.clean
2025-04-04T20:55:41.4836866Z Downloading https://github.com/boostorg/cmake/commit/ae2e6a647187246d6009f80b56ba4c2c8f3a008c.patch?full_index=1 -> boostorg-cmake-boost-1.85.0-0009-msvc-1940-still-vc143.patch
2025-04-04T20:55:41.7261902Z Successfully downloaded boostorg-cmake-boost-1.85.0-0009-msvc-1940-still-vc143.patch
2025-04-04T20:55:41.7464077Z Downloading https://github.com/boostorg/cmake/archive/boost-1.85.0.tar.gz -> boostorg-cmake-boost-1.85.0.tar.gz
2025-04-04T20:55:42.2997101Z Successfully downloaded boostorg-cmake-boost-1.85.0.tar.gz
2025-04-04T20:55:42.3103498Z -- Extracting source C:/vcpkg/downloads/boostorg-cmake-boost-1.85.0.tar.gz
2025-04-04T20:55:42.5370962Z -- Applying patch vcpkg-build.diff
2025-04-04T20:55:42.8748019Z -- Applying patch fix-mpi.diff
2025-04-04T20:55:42.9029136Z -- Applying patch no-prefix.diff
2025-04-04T20:55:42.9292697Z -- Applying patch zstd.diff
2025-04-04T20:55:42.9562849Z -- Applying patch add-optional-deps.diff
2025-04-04T20:55:42.9796115Z -- Applying patch fix-missing-archs.diff
2025-04-04T20:55:43.0028566Z -- Applying patch C:/vcpkg/downloads/boostorg-cmake-boost-1.85.0-0009-msvc-1940-still-vc143.patch
2025-04-04T20:55:43.0269841Z -- Using source at C:/vcpkg/buildtrees/boost-cmake/src/ost-1.85.0-8c0d889226.clean
2025-04-04T20:55:43.0285696Z -- Installing: C:/vcpkg/packages/boost-cmake_x64-windows-static/share/boost-cmake/usage
2025-04-04T20:55:43.0383929Z -- Found external ninja('1.12.1').
2025-04-04T20:55:43.0419126Z -- Configuring x64-windows-static
2025-04-04T20:55:43.2806119Z -- Building x64-windows-static-rel
2025-04-04T20:55:43.3326041Z -- Up-to-date: C:/vcpkg/packages/boost-cmake_x64-windows-static/share/boost/cmake-build
2025-04-04T20:55:43.3328584Z -- Installing: C:/vcpkg/packages/boost-cmake_x64-windows-static/share/boost/cmake-build/BoostFetch.cmake
2025-04-04T20:55:43.3337862Z -- Installing: C:/vcpkg/packages/boost-cmake_x64-windows-static/share/boost/cmake-build/BoostInstall.cmake
2025-04-04T20:55:43.3390205Z -- Installing: C:/vcpkg/packages/boost-cmake_x64-windows-static/share/boost/cmake-build/BoostMessage.cmake
2025-04-04T20:55:43.3400605Z -- Installing: C:/vcpkg/packages/boost-cmake_x64-windows-static/share/boost/cmake-build/BoostRoot.cmake
2025-04-04T20:55:43.3410129Z -- Installing: C:/vcpkg/packages/boost-cmake_x64-windows-static/share/boost/cmake-build/BoostTest.cmake
2025-04-04T20:55:43.3419426Z -- Installing: C:/vcpkg/packages/boost-cmake_x64-windows-static/share/boost/cmake-build/BoostTestJamfile.cmake
2025-04-04T20:55:43.3429991Z -- Installing: C:/vcpkg/packages/boost-cmake_x64-windows-static/share/boost-cmake/vcpkg-port-config.cmake
2025-04-04T20:55:43.3440095Z -- Installing: C:/vcpkg/packages/boost-cmake_x64-windows-static/share/boost-cmake/copyright
2025-04-04T20:55:43.3502419Z -- Performing post-build validation
2025-04-04T20:55:43.3590703Z Starting submission of boost-cmake:x64-windows-static@1.85.0#2 to 1 binary cache(s) in the background
2025-04-04T20:55:43.3591607Z Elapsed time to handle boost-cmake:x64-windows-static: 3.7 s
2025-04-04T20:55:43.3592508Z boost-cmake:x64-windows-static package ABI: 4fffa14dbdafa1ec4c39016acf55ee83a06edc43bb073fc2cfbd513c25ad0a2b
2025-04-04T20:55:43.3593741Z Completed submission of vcpkg-boost:x64-windows@2024-05-15 to 1 binary cache(s) in 51.2 ms
2025-04-04T20:55:43.3595088Z Completed submission of boost-uninstall:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 61.7 ms
2025-04-04T20:55:43.3596051Z Installing 6/41 boost-headers:x64-windows-static@1.85.0#1...
2025-04-04T20:55:43.3596594Z Building boost-headers:x64-windows-static@1.85.0#1...
2025-04-04T20:55:43.3597411Z C:\vcpkg\buildtrees\versioning_\versions\boost-headers\dc074dbcbe8adaf7970a9dc92d8c385267042e0c: info: installing overlay port from here
2025-04-04T20:55:43.4037338Z Downloading https://github.com/boostorg/headers/archive/boost-1.85.0.tar.gz -> boostorg-headers-boost-1.85.0.tar.gz
2025-04-04T20:55:43.8102941Z Successfully downloaded boostorg-headers-boost-1.85.0.tar.gz
2025-04-04T20:55:43.8221440Z -- Extracting source C:/vcpkg/downloads/boostorg-headers-boost-1.85.0.tar.gz
2025-04-04T20:55:43.9457300Z -- Using source at C:/vcpkg/buildtrees/boost-headers/src/ost-1.85.0-f4cb877742.clean
2025-04-04T20:55:43.9574508Z -- Found external ninja('1.12.1').
2025-04-04T20:55:43.9611761Z -- Configuring x64-windows-static
2025-04-04T20:55:55.7938975Z -- Building x64-windows-static-rel
2025-04-04T20:55:55.8702763Z -- Installing: C:/vcpkg/packages/boost-headers_x64-windows-static/share/boost-headers/copyright
2025-04-04T20:55:55.8769312Z -- Performing post-build validation
2025-04-04T20:55:55.8842840Z Starting submission of boost-headers:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:55:55.8844013Z Elapsed time to handle boost-headers:x64-windows-static: 13 s
2025-04-04T20:55:55.8845092Z boost-headers:x64-windows-static package ABI: 11c17a65f54751c0bec57418b98bc9482f8538df83fb3ede026488fc40b74625
2025-04-04T20:55:55.8846268Z Completed submission of boost-cmake:x64-windows-static@1.85.0#2 to 1 binary cache(s) in 51.9 ms
2025-04-04T20:55:55.8847064Z Installing 7/41 boost-config:x64-windows-static@1.85.0#1...
2025-04-04T20:55:55.8847469Z Building boost-config:x64-windows-static@1.85.0#1...
2025-04-04T20:55:55.8848195Z C:\vcpkg\buildtrees\versioning_\versions\boost-config\964bd95c86a98c1c8c5271b4a18e617869ce2348: info: installing overlay port from here
2025-04-04T20:55:55.9446296Z Downloading https://github.com/boostorg/config/archive/boost-1.85.0.tar.gz -> boostorg-config-boost-1.85.0.tar.gz
2025-04-04T20:55:56.4390830Z Successfully downloaded boostorg-config-boost-1.85.0.tar.gz
2025-04-04T20:55:56.4503196Z -- Extracting source C:/vcpkg/downloads/boostorg-config-boost-1.85.0.tar.gz
2025-04-04T20:55:57.3185596Z -- Using source at C:/vcpkg/buildtrees/boost-config/src/ost-1.85.0-27fd0e3b2d.clean
2025-04-04T20:55:57.3302808Z -- Found external ninja('1.12.1').
2025-04-04T20:55:57.3340457Z -- Configuring x64-windows-static
2025-04-04T20:55:58.4983115Z -- Building x64-windows-static-rel
2025-04-04T20:55:58.6606971Z -- Installing: C:/vcpkg/packages/boost-config_x64-windows-static/share/boost-config/copyright
2025-04-04T20:55:58.8567694Z -- Performing post-build validation
2025-04-04T20:55:58.9449172Z Starting submission of boost-config:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:55:58.9449978Z Elapsed time to handle boost-config:x64-windows-static: 3.1 s
2025-04-04T20:55:58.9450579Z boost-config:x64-windows-static package ABI: 44561403a9dce94fc3d0109130cd3986f5c2a0ec8a47928166d94821533883a7
2025-04-04T20:55:58.9451393Z Completed submission of boost-headers:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 67.2 ms
2025-04-04T20:55:58.9452195Z Installing 8/41 boost-static-assert:x64-windows-static@1.85.0#1...
2025-04-04T20:55:58.9452684Z Building boost-static-assert:x64-windows-static@1.85.0#1...
2025-04-04T20:55:58.9453665Z C:\vcpkg\buildtrees\versioning_\versions\boost-static-assert\da6fbe5e5e5a77cd1a4507e272781f5ac12f61f1: info: installing overlay port from here
2025-04-04T20:55:59.0033799Z Downloading https://github.com/boostorg/static_assert/archive/boost-1.85.0.tar.gz -> boostorg-static_assert-boost-1.85.0.tar.gz
2025-04-04T20:55:59.4005736Z Successfully downloaded boostorg-static_assert-boost-1.85.0.tar.gz
2025-04-04T20:55:59.4119257Z -- Extracting source C:/vcpkg/downloads/boostorg-static_assert-boost-1.85.0.tar.gz
2025-04-04T20:55:59.5710253Z -- Using source at C:/vcpkg/buildtrees/boost-static-assert/src/ost-1.85.0-32286774bc.clean
2025-04-04T20:55:59.6031076Z -- Found external ninja('1.12.1').
2025-04-04T20:55:59.6067535Z -- Configuring x64-windows-static
2025-04-04T20:56:00.7489902Z -- Building x64-windows-static-rel
2025-04-04T20:56:00.8585112Z -- Installing: C:/vcpkg/packages/boost-static-assert_x64-windows-static/share/boost-static-assert/copyright
2025-04-04T20:56:00.8650149Z -- Performing post-build validation
2025-04-04T20:56:00.8718935Z Starting submission of boost-static-assert:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:00.8719969Z Elapsed time to handle boost-static-assert:x64-windows-static: 1.9 s
2025-04-04T20:56:00.8720721Z boost-static-assert:x64-windows-static package ABI: b196a1bbf602708fb1b07880564b848bdc0e9d0e76e24840da0447f6a8350d60
2025-04-04T20:56:00.8722880Z Completed submission of boost-config:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 77.9 ms
2025-04-04T20:56:00.8723603Z Installing 9/41 boost-type-traits:x64-windows-static@1.85.0#1...
2025-04-04T20:56:00.8724174Z Building boost-type-traits:x64-windows-static@1.85.0#1...
2025-04-04T20:56:00.8725206Z C:\vcpkg\buildtrees\versioning_\versions\boost-type-traits\fd334eb6c15dd762232760cb740567c6a2ade780: info: installing overlay port from here
2025-04-04T20:56:00.9207850Z Downloading https://github.com/boostorg/type_traits/archive/boost-1.85.0.tar.gz -> boostorg-type_traits-boost-1.85.0.tar.gz
2025-04-04T20:56:01.4115745Z Successfully downloaded boostorg-type_traits-boost-1.85.0.tar.gz
2025-04-04T20:56:01.4229738Z -- Extracting source C:/vcpkg/downloads/boostorg-type_traits-boost-1.85.0.tar.gz
2025-04-04T20:56:03.2001175Z -- Using source at C:/vcpkg/buildtrees/boost-type-traits/src/ost-1.85.0-a2c00c2c16.clean
2025-04-04T20:56:03.2151260Z -- Found external ninja('1.12.1').
2025-04-04T20:56:03.2222565Z -- Configuring x64-windows-static
2025-04-04T20:56:04.5706738Z -- Building x64-windows-static-rel
2025-04-04T20:56:04.9160124Z -- Installing: C:/vcpkg/packages/boost-type-traits_x64-windows-static/share/boost-type-traits/copyright
2025-04-04T20:56:04.9227790Z -- Performing post-build validation
2025-04-04T20:56:04.9917815Z Starting submission of boost-type-traits:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:04.9918458Z Elapsed time to handle boost-type-traits:x64-windows-static: 4.1 s
2025-04-04T20:56:04.9919037Z boost-type-traits:x64-windows-static package ABI: 55d4b7fe545ecdafbaf7f801fc534bcd5e71804a333fb5a7530b1b71e9f1a2f3
2025-04-04T20:56:04.9919785Z Completed submission of boost-static-assert:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 51.7 ms
2025-04-04T20:56:04.9920296Z Installing 10/41 boost-assert:x64-windows-static@1.85.0#1...
2025-04-04T20:56:04.9920635Z Building boost-assert:x64-windows-static@1.85.0#1...
2025-04-04T20:56:04.9921457Z C:\vcpkg\buildtrees\versioning_\versions\boost-assert\a776f9bcec97f99c681858373363b6c973deecff: info: installing overlay port from here
2025-04-04T20:56:05.0442574Z Downloading https://github.com/boostorg/assert/archive/boost-1.85.0.tar.gz -> boostorg-assert-boost-1.85.0.tar.gz
2025-04-04T20:56:05.4971799Z Successfully downloaded boostorg-assert-boost-1.85.0.tar.gz
2025-04-04T20:56:05.5073373Z -- Extracting source C:/vcpkg/downloads/boostorg-assert-boost-1.85.0.tar.gz
2025-04-04T20:56:05.6551490Z -- Using source at C:/vcpkg/buildtrees/boost-assert/src/ost-1.85.0-3ebeffda26.clean
2025-04-04T20:56:05.6664773Z -- Found external ninja('1.12.1').
2025-04-04T20:56:05.6709219Z -- Configuring x64-windows-static
2025-04-04T20:56:06.7949954Z -- Building x64-windows-static-rel
2025-04-04T20:56:06.8590039Z -- Installing: C:/vcpkg/packages/boost-assert_x64-windows-static/share/boost-assert/copyright
2025-04-04T20:56:06.8650683Z -- Performing post-build validation
2025-04-04T20:56:06.8754865Z Starting submission of boost-assert:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:06.8755964Z Elapsed time to handle boost-assert:x64-windows-static: 1.9 s
2025-04-04T20:56:06.8756642Z boost-assert:x64-windows-static package ABI: d5e2f2af0b75531284f89ea2ec50798599797397eaf49fafa792a02399c157b6
2025-04-04T20:56:06.8757482Z Completed submission of boost-type-traits:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 82 ms
2025-04-04T20:56:06.8758117Z Installing 11/41 boost-throw-exception:x64-windows-static@1.85.0#1...
2025-04-04T20:56:06.8758773Z Building boost-throw-exception:x64-windows-static@1.85.0#1...
2025-04-04T20:56:06.8759682Z C:\vcpkg\buildtrees\versioning_\versions\boost-throw-exception\1484d8b3741dbf840c0c88a8bb1205efcf66c288: info: installing overlay port from here
2025-04-04T20:56:06.9184648Z Downloading https://github.com/boostorg/throw_exception/archive/boost-1.85.0.tar.gz -> boostorg-throw_exception-boost-1.85.0.tar.gz
2025-04-04T20:56:07.3481576Z Successfully downloaded boostorg-throw_exception-boost-1.85.0.tar.gz
2025-04-04T20:56:07.3582783Z -- Extracting source C:/vcpkg/downloads/boostorg-throw_exception-boost-1.85.0.tar.gz
2025-04-04T20:56:07.5152180Z -- Using source at C:/vcpkg/buildtrees/boost-throw-exception/src/ost-1.85.0-86061aa58d.clean
2025-04-04T20:56:07.5268349Z -- Found external ninja('1.12.1').
2025-04-04T20:56:07.5320629Z -- Configuring x64-windows-static
2025-04-04T20:56:08.7173399Z -- Building x64-windows-static-rel
2025-04-04T20:56:08.7820109Z -- Installing: C:/vcpkg/packages/boost-throw-exception_x64-windows-static/share/boost-throw-exception/copyright
2025-04-04T20:56:08.7883705Z -- Performing post-build validation
2025-04-04T20:56:08.7961479Z Starting submission of boost-throw-exception:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:08.7962670Z Elapsed time to handle boost-throw-exception:x64-windows-static: 1.9 s
2025-04-04T20:56:08.7963434Z boost-throw-exception:x64-windows-static package ABI: 84e6067586898ddd1507663dc728bae58e66922e6665cdf17478cd0de2786faa
2025-04-04T20:56:08.7964419Z Completed submission of boost-assert:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 48.7 ms
2025-04-04T20:56:08.7965045Z Installing 12/41 boost-preprocessor:x64-windows-static@1.85.0#1...
2025-04-04T20:56:08.7965509Z Building boost-preprocessor:x64-windows-static@1.85.0#1...
2025-04-04T20:56:08.7966128Z C:\vcpkg\buildtrees\versioning_\versions\boost-preprocessor\77759780d7bf4571b481aa189a7bb7150206b3cb: info: installing overlay port from here
2025-04-04T20:56:08.8396484Z Downloading https://github.com/boostorg/preprocessor/archive/boost-1.85.0.tar.gz -> boostorg-preprocessor-boost-1.85.0.tar.gz
2025-04-04T20:56:09.3441201Z Successfully downloaded boostorg-preprocessor-boost-1.85.0.tar.gz
2025-04-04T20:56:09.3573863Z -- Extracting source C:/vcpkg/downloads/boostorg-preprocessor-boost-1.85.0.tar.gz
2025-04-04T20:56:11.3049265Z -- Using source at C:/vcpkg/buildtrees/boost-preprocessor/src/ost-1.85.0-35c31e4433.clean
2025-04-04T20:56:11.3162406Z -- Found external ninja('1.12.1').
2025-04-04T20:56:11.3239185Z -- Configuring x64-windows-static
2025-04-04T20:56:12.6299759Z -- Building x64-windows-static-rel
2025-04-04T20:56:13.3307227Z -- Installing: C:/vcpkg/packages/boost-preprocessor_x64-windows-static/share/boost-preprocessor/copyright
2025-04-04T20:56:13.3371791Z -- Performing post-build validation
2025-04-04T20:56:13.4912155Z Starting submission of boost-preprocessor:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:13.4913232Z Elapsed time to handle boost-preprocessor:x64-windows-static: 4.7 s
2025-04-04T20:56:13.4914166Z boost-preprocessor:x64-windows-static package ABI: f2216e72ccfb38b04b1c5b66f5f28814299600f68a3061d4171be85e7733401f
2025-04-04T20:56:13.4914907Z Completed submission of boost-throw-exception:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 50.1 ms
2025-04-04T20:56:13.4915431Z Installing 13/41 boost-io:x64-windows-static@1.85.0#1...
2025-04-04T20:56:13.4915751Z Building boost-io:x64-windows-static@1.85.0#1...
2025-04-04T20:56:13.4916342Z C:\vcpkg\buildtrees\versioning_\versions\boost-io\3fa4c0dc034227cee5c7e0725300c2f90359b14e: info: installing overlay port from here
2025-04-04T20:56:13.5503202Z Downloading https://github.com/boostorg/io/archive/boost-1.85.0.tar.gz -> boostorg-io-boost-1.85.0.tar.gz
2025-04-04T20:56:13.9795192Z Successfully downloaded boostorg-io-boost-1.85.0.tar.gz
2025-04-04T20:56:13.9894900Z -- Extracting source C:/vcpkg/downloads/boostorg-io-boost-1.85.0.tar.gz
2025-04-04T20:56:14.1840602Z -- Using source at C:/vcpkg/buildtrees/boost-io/src/ost-1.85.0-a959abc278.clean
2025-04-04T20:56:14.1997498Z -- Found external ninja('1.12.1').
2025-04-04T20:56:14.2074122Z -- Configuring x64-windows-static
2025-04-04T20:56:15.4140461Z -- Building x64-windows-static-rel
2025-04-04T20:56:15.5165294Z -- Installing: C:/vcpkg/packages/boost-io_x64-windows-static/share/boost-io/copyright
2025-04-04T20:56:15.5233917Z -- Performing post-build validation
2025-04-04T20:56:15.5333316Z Starting submission of boost-io:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:15.5333990Z Elapsed time to handle boost-io:x64-windows-static: 2 s
2025-04-04T20:56:15.5334501Z boost-io:x64-windows-static package ABI: cc508e234e886a6af6eba9ec12da64dcd854dd06024ecf7a439ffe2da380f994
2025-04-04T20:56:15.5335295Z Completed submission of boost-preprocessor:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 319 ms
2025-04-04T20:56:15.5335772Z Installing 14/41 boost-core:x64-windows-static@1.85.0#2...
2025-04-04T20:56:15.5336119Z Building boost-core:x64-windows-static@1.85.0#2...
2025-04-04T20:56:15.5336976Z C:\vcpkg\buildtrees\versioning_\versions\boost-core\1a9aca564910d4927aab2a0b3edd5dcc92a0a484: info: installing overlay port from here
2025-04-04T20:56:15.5818679Z Downloading https://github.com/boostorg/core/archive/boost-1.85.0.tar.gz -> boostorg-core-boost-1.85.0.tar.gz
2025-04-04T20:56:16.0561752Z Successfully downloaded boostorg-core-boost-1.85.0.tar.gz
2025-04-04T20:56:16.0667643Z -- Extracting source C:/vcpkg/downloads/boostorg-core-boost-1.85.0.tar.gz
2025-04-04T20:56:16.8904688Z -- Using source at C:/vcpkg/buildtrees/boost-core/src/ost-1.85.0-c75425261b.clean
2025-04-04T20:56:16.9074961Z -- Found external ninja('1.12.1').
2025-04-04T20:56:16.9147433Z -- Configuring x64-windows-static
2025-04-04T20:56:18.1374420Z -- Building x64-windows-static-rel
2025-04-04T20:56:18.3483525Z -- Installing: C:/vcpkg/packages/boost-core_x64-windows-static/share/boost-core/copyright
2025-04-04T20:56:18.3544437Z -- Performing post-build validation
2025-04-04T20:56:18.3854058Z Starting submission of boost-core:x64-windows-static@1.85.0#2 to 1 binary cache(s) in the background
2025-04-04T20:56:18.3854847Z Elapsed time to handle boost-core:x64-windows-static: 2.9 s
2025-04-04T20:56:18.3855420Z boost-core:x64-windows-static package ABI: 7c75aea9d9c950cfa9fbadcfa12ea2c8d548111eb1909aeefa2b0d370e0fb76c
2025-04-04T20:56:18.3856093Z Completed submission of boost-io:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 56.3 ms
2025-04-04T20:56:18.3856599Z Installing 15/41 boost-utility:x64-windows-static@1.85.0#1...
2025-04-04T20:56:18.3856943Z Building boost-utility:x64-windows-static@1.85.0#1...
2025-04-04T20:56:18.3857575Z C:\vcpkg\buildtrees\versioning_\versions\boost-utility\0421ccb31f254874d8f0814bb2266c13255c4822: info: installing overlay port from here
2025-04-04T20:56:18.4345323Z Downloading https://github.com/boostorg/utility/archive/boost-1.85.0.tar.gz -> boostorg-utility-boost-1.85.0.tar.gz
2025-04-04T20:56:18.8798580Z Successfully downloaded boostorg-utility-boost-1.85.0.tar.gz
2025-04-04T20:56:18.8913752Z -- Extracting source C:/vcpkg/downloads/boostorg-utility-boost-1.85.0.tar.gz
2025-04-04T20:56:19.1891889Z -- Using source at C:/vcpkg/buildtrees/boost-utility/src/ost-1.85.0-2f413f4266.clean
2025-04-04T20:56:19.2005800Z -- Found external ninja('1.12.1').
2025-04-04T20:56:19.2077229Z -- Configuring x64-windows-static
2025-04-04T20:56:20.4453871Z -- Building x64-windows-static-rel
2025-04-04T20:56:20.6010097Z -- Installing: C:/vcpkg/packages/boost-utility_x64-windows-static/share/boost-utility/copyright
2025-04-04T20:56:20.6072704Z -- Performing post-build validation
2025-04-04T20:56:20.6230798Z Starting submission of boost-utility:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:20.6231607Z Elapsed time to handle boost-utility:x64-windows-static: 2.2 s
2025-04-04T20:56:20.6232167Z boost-utility:x64-windows-static package ABI: 5059dbce7cc9e8c6f5380364c085213b0824db28a53bfb2b588cb29af48f2514
2025-04-04T20:56:20.6232806Z Completed submission of boost-core:x64-windows-static@1.85.0#2 to 1 binary cache(s) in 67.8 ms
2025-04-04T20:56:20.6233258Z Installing 16/41 boost-tuple:x64-windows-static@1.85.0#1...
2025-04-04T20:56:20.6233583Z Building boost-tuple:x64-windows-static@1.85.0#1...
2025-04-04T20:56:20.6234168Z C:\vcpkg\buildtrees\versioning_\versions\boost-tuple\0f3d4dcd2e276bfcf1af7e3eaab6503d281e5407: info: installing overlay port from here
2025-04-04T20:56:20.6809530Z Downloading https://github.com/boostorg/tuple/archive/boost-1.85.0.tar.gz -> boostorg-tuple-boost-1.85.0.tar.gz
2025-04-04T20:56:21.1291445Z Successfully downloaded boostorg-tuple-boost-1.85.0.tar.gz
2025-04-04T20:56:21.1390383Z -- Extracting source C:/vcpkg/downloads/boostorg-tuple-boost-1.85.0.tar.gz
2025-04-04T20:56:21.3151363Z -- Using source at C:/vcpkg/buildtrees/boost-tuple/src/ost-1.85.0-f850fa235f.clean
2025-04-04T20:56:21.3261264Z -- Found external ninja('1.12.1').
2025-04-04T20:56:21.3338967Z -- Configuring x64-windows-static
2025-04-04T20:56:22.5360698Z -- Building x64-windows-static-rel
2025-04-04T20:56:22.6268189Z -- Installing: C:/vcpkg/packages/boost-tuple_x64-windows-static/share/boost-tuple/copyright
2025-04-04T20:56:22.6334661Z -- Performing post-build validation
2025-04-04T20:56:22.6430379Z Starting submission of boost-tuple:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:22.6431124Z Elapsed time to handle boost-tuple:x64-windows-static: 2 s
2025-04-04T20:56:22.6431804Z boost-tuple:x64-windows-static package ABI: 7d704928d0dd04d18f1f41de3115b958849720e5c1a350673f58551a531e1031
2025-04-04T20:56:22.6432787Z Completed submission of boost-utility:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 57.4 ms
2025-04-04T20:56:22.6433398Z Installing 17/41 boost-move:x64-windows-static@1.85.0#1...
2025-04-04T20:56:22.6433866Z Building boost-move:x64-windows-static@1.85.0#1...
2025-04-04T20:56:22.6434471Z C:\vcpkg\buildtrees\versioning_\versions\boost-move\0b7c85608cba0c5e4f3f68f8c3687edae3b77b14: info: installing overlay port from here
2025-04-04T20:56:22.6904717Z Downloading https://github.com/boostorg/move/archive/boost-1.85.0.tar.gz -> boostorg-move-boost-1.85.0.tar.gz
2025-04-04T20:56:23.1532323Z Successfully downloaded boostorg-move-boost-1.85.0.tar.gz
2025-04-04T20:56:23.1638599Z -- Extracting source C:/vcpkg/downloads/boostorg-move-boost-1.85.0.tar.gz
2025-04-04T20:56:23.4565078Z -- Using source at C:/vcpkg/buildtrees/boost-move/src/ost-1.85.0-d065c57937.clean
2025-04-04T20:56:23.4676021Z -- Found external ninja('1.12.1').
2025-04-04T20:56:23.4754263Z -- Configuring x64-windows-static
2025-04-04T20:56:24.6591445Z -- Building x64-windows-static-rel
2025-04-04T20:56:24.8254207Z -- Installing: C:/vcpkg/packages/boost-move_x64-windows-static/share/boost-move/copyright
2025-04-04T20:56:24.8320001Z -- Performing post-build validation
2025-04-04T20:56:24.8551093Z Starting submission of boost-move:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:24.8551769Z Elapsed time to handle boost-move:x64-windows-static: 2.2 s
2025-04-04T20:56:24.8552415Z boost-move:x64-windows-static package ABI: 6e467c84ef69e9651c2dbe610796e37521d2cde2018af5f92352cc45c8379605
2025-04-04T20:56:24.8553182Z Completed submission of boost-tuple:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 57.4 ms
2025-04-04T20:56:24.8553777Z Installing 18/41 boost-smart-ptr:x64-windows-static@1.85.0#1...
2025-04-04T20:56:24.8554245Z Building boost-smart-ptr:x64-windows-static@1.85.0#1...
2025-04-04T20:56:24.8555592Z C:\vcpkg\buildtrees\versioning_\versions\boost-smart-ptr\12b7fc7a25dc88e99e9a71da259c5467f3ae4e4a: info: installing overlay port from here
2025-04-04T20:56:24.9179780Z Downloading https://github.com/boostorg/smart_ptr/archive/boost-1.85.0.tar.gz -> boostorg-smart_ptr-boost-1.85.0.tar.gz
2025-04-04T20:56:25.3594106Z Successfully downloaded boostorg-smart_ptr-boost-1.85.0.tar.gz
2025-04-04T20:56:25.3737271Z -- Extracting source C:/vcpkg/downloads/boostorg-smart_ptr-boost-1.85.0.tar.gz
2025-04-04T20:56:26.3170999Z -- Using source at C:/vcpkg/buildtrees/boost-smart-ptr/src/ost-1.85.0-cd8f0d6348.clean
2025-04-04T20:56:26.3322333Z -- Found external ninja('1.12.1').
2025-04-04T20:56:26.3399583Z -- Configuring x64-windows-static
2025-04-04T20:56:27.5975691Z -- Building x64-windows-static-rel
2025-04-04T20:56:27.8792239Z -- Installing: C:/vcpkg/packages/boost-smart-ptr_x64-windows-static/share/boost-smart-ptr/copyright
2025-04-04T20:56:27.8857501Z -- Performing post-build validation
2025-04-04T20:56:27.9273720Z Starting submission of boost-smart-ptr:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:27.9274720Z Elapsed time to handle boost-smart-ptr:x64-windows-static: 3.1 s
2025-04-04T20:56:27.9275281Z boost-smart-ptr:x64-windows-static package ABI: 71168d7cdd2850b6524519a889003fd85fd999c6d32f38c40193c8c2432e4619
2025-04-04T20:56:27.9275918Z Completed submission of boost-move:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 66 ms
2025-04-04T20:56:27.9276377Z Installing 19/41 boost-predef:x64-windows-static@1.85.0#1...
2025-04-04T20:56:27.9276723Z Building boost-predef:x64-windows-static@1.85.0#1...
2025-04-04T20:56:27.9277314Z C:\vcpkg\buildtrees\versioning_\versions\boost-predef\509cb8e43b7f40b5ac27f6d2fcc930517726af4d: info: installing overlay port from here
2025-04-04T20:56:27.9824118Z Downloading https://github.com/boostorg/predef/archive/boost-1.85.0.tar.gz -> boostorg-predef-boost-1.85.0.tar.gz
2025-04-04T20:56:28.4630014Z Successfully downloaded boostorg-predef-boost-1.85.0.tar.gz
2025-04-04T20:56:28.4735572Z -- Extracting source C:/vcpkg/downloads/boostorg-predef-boost-1.85.0.tar.gz
2025-04-04T20:56:28.9274771Z -- Using source at C:/vcpkg/buildtrees/boost-predef/src/ost-1.85.0-5f493b23ed.clean
2025-04-04T20:56:28.9429837Z -- Found external ninja('1.12.1').
2025-04-04T20:56:28.9524600Z -- Configuring x64-windows-static
2025-04-04T20:56:30.1085390Z -- Building x64-windows-static-rel
2025-04-04T20:56:30.4739489Z -- Installing: C:/vcpkg/packages/boost-predef_x64-windows-static/share/boost-predef/copyright
2025-04-04T20:56:30.4979864Z -- Performing post-build validation
2025-04-04T20:56:30.5623241Z Starting submission of boost-predef:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:30.5624205Z Elapsed time to handle boost-predef:x64-windows-static: 2.6 s
2025-04-04T20:56:30.5625181Z boost-predef:x64-windows-static package ABI: d6413239690af01810e80fe5cd6708018f69978ee679bd9292e2610b95706715
2025-04-04T20:56:30.5626276Z Completed submission of boost-smart-ptr:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 64 ms
2025-04-04T20:56:30.5627122Z Installing 20/41 boost-mpl:x64-windows-static@1.85.0#1...
2025-04-04T20:56:30.5627661Z Building boost-mpl:x64-windows-static@1.85.0#1...
2025-04-04T20:56:30.5628647Z C:\vcpkg\buildtrees\versioning_\versions\boost-mpl\44e66fb813fd1c2180fb4676afc5be607f22baf7: info: installing overlay port from here
2025-04-04T20:56:30.6162593Z Downloading https://github.com/boostorg/mpl/archive/boost-1.85.0.tar.gz -> boostorg-mpl-boost-1.85.0.tar.gz
2025-04-04T20:56:31.1469194Z Successfully downloaded boostorg-mpl-boost-1.85.0.tar.gz
2025-04-04T20:56:31.1636099Z -- Extracting source C:/vcpkg/downloads/boostorg-mpl-boost-1.85.0.tar.gz
2025-04-04T20:56:33.8607249Z -- Using source at C:/vcpkg/buildtrees/boost-mpl/src/ost-1.85.0-31a42cbf46.clean
2025-04-04T20:56:33.8768339Z -- Found external ninja('1.12.1').
2025-04-04T20:56:33.8843666Z -- Configuring x64-windows-static
2025-04-04T20:56:35.1573032Z -- Building x64-windows-static-rel
2025-04-04T20:56:37.3387236Z -- Installing: C:/vcpkg/packages/boost-mpl_x64-windows-static/share/boost-mpl/copyright
2025-04-04T20:56:37.3451996Z -- Performing post-build validation
2025-04-04T20:56:37.6836693Z Starting submission of boost-mpl:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:37.6837537Z Elapsed time to handle boost-mpl:x64-windows-static: 7.1 s
2025-04-04T20:56:37.6838537Z boost-mpl:x64-windows-static package ABI: 555832e65fc92c004f88ceeffe0ed48fa34d041501dbb5e273bfada143c3254b
2025-04-04T20:56:37.6839417Z Completed submission of boost-predef:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 67.9 ms
2025-04-04T20:56:37.6840049Z Installing 21/41 boost-detail:x64-windows-static@1.85.0#1...
2025-04-04T20:56:37.6840736Z Building boost-detail:x64-windows-static@1.85.0#1...
2025-04-04T20:56:37.6841713Z C:\vcpkg\buildtrees\versioning_\versions\boost-detail\c61fada41d8ba3839e6cbed4e90bcd12e44ee839: info: installing overlay port from here
2025-04-04T20:56:37.7266191Z Downloading https://github.com/boostorg/detail/archive/boost-1.85.0.tar.gz -> boostorg-detail-boost-1.85.0.tar.gz
2025-04-04T20:56:38.1841889Z Successfully downloaded boostorg-detail-boost-1.85.0.tar.gz
2025-04-04T20:56:38.1938331Z -- Extracting source C:/vcpkg/downloads/boostorg-detail-boost-1.85.0.tar.gz
2025-04-04T20:56:38.5482534Z -- Using source at C:/vcpkg/buildtrees/boost-detail/src/ost-1.85.0-9b9b3071af.clean
2025-04-04T20:56:38.5638652Z -- Found external ninja('1.12.1').
2025-04-04T20:56:38.5672937Z -- Configuring x64-windows-static
2025-04-04T20:56:39.7932216Z -- Building x64-windows-static-rel
2025-04-04T20:56:39.9127844Z -- Installing: C:/vcpkg/packages/boost-detail_x64-windows-static/share/boost-detail/copyright
2025-04-04T20:56:39.9189317Z -- Performing post-build validation
2025-04-04T20:56:39.9349323Z Starting submission of boost-detail:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:39.9350542Z Elapsed time to handle boost-detail:x64-windows-static: 2.3 s
2025-04-04T20:56:39.9351367Z boost-detail:x64-windows-static package ABI: 8e9bd8c162e0ef41174856be3f5c68ca9da8e28c6ac459b07d54ffcf1530a55d
2025-04-04T20:56:39.9352449Z Completed submission of boost-mpl:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 190 ms
2025-04-04T20:56:39.9353198Z Installing 22/41 boost-optional:x64-windows-static@1.85.0#1...
2025-04-04T20:56:39.9353765Z Building boost-optional:x64-windows-static@1.85.0#1...
2025-04-04T20:56:39.9354614Z C:\vcpkg\buildtrees\versioning_\versions\boost-optional\315e38ed952641dc2a064ab7a51f8050640190b9: info: installing overlay port from here
2025-04-04T20:56:39.9832048Z Downloading https://github.com/boostorg/optional/archive/boost-1.85.0.tar.gz -> boostorg-optional-boost-1.85.0.tar.gz
2025-04-04T20:56:40.4602687Z Successfully downloaded boostorg-optional-boost-1.85.0.tar.gz
2025-04-04T20:56:40.4751162Z -- Extracting source C:/vcpkg/downloads/boostorg-optional-boost-1.85.0.tar.gz
2025-04-04T20:56:40.9413873Z -- Using source at C:/vcpkg/buildtrees/boost-optional/src/ost-1.85.0-cc8948302e.clean
2025-04-04T20:56:40.9525365Z -- Found external ninja('1.12.1').
2025-04-04T20:56:40.9899960Z -- Configuring x64-windows-static
2025-04-04T20:56:42.3041367Z -- Building x64-windows-static-rel
2025-04-04T20:56:42.4945283Z -- Installing: C:/vcpkg/packages/boost-optional_x64-windows-static/share/boost-optional/copyright
2025-04-04T20:56:42.5008959Z -- Performing post-build validation
2025-04-04T20:56:42.5160688Z Starting submission of boost-optional:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:42.5161840Z Elapsed time to handle boost-optional:x64-windows-static: 2.6 s
2025-04-04T20:56:42.5162551Z boost-optional:x64-windows-static package ABI: 840d0ac07a4665beda27a613fef44433f3468a543fb8ce5e9ef91cf904dab261
2025-04-04T20:56:42.5163377Z Completed submission of boost-detail:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 52.1 ms
2025-04-04T20:56:42.5163962Z Installing 23/41 boost-typeof:x64-windows-static@1.85.0#1...
2025-04-04T20:56:42.5164367Z Building boost-typeof:x64-windows-static@1.85.0#1...
2025-04-04T20:56:42.5165147Z C:\vcpkg\buildtrees\versioning_\versions\boost-typeof\1f5378d3498322cbbfbfe18cdbbeb0ec8079aaeb: info: installing overlay port from here
2025-04-04T20:56:42.5648702Z Downloading https://github.com/boostorg/typeof/archive/boost-1.85.0.tar.gz -> boostorg-typeof-boost-1.85.0.tar.gz
2025-04-04T20:56:43.0027604Z Successfully downloaded boostorg-typeof-boost-1.85.0.tar.gz
2025-04-04T20:56:43.0178481Z -- Extracting source C:/vcpkg/downloads/boostorg-typeof-boost-1.85.0.tar.gz
2025-04-04T20:56:43.2742434Z -- Using source at C:/vcpkg/buildtrees/boost-typeof/src/ost-1.85.0-a5bda758e0.clean
2025-04-04T20:56:43.2899734Z -- Found external ninja('1.12.1').
2025-04-04T20:56:43.2933726Z -- Configuring x64-windows-static
2025-04-04T20:56:44.5019631Z -- Building x64-windows-static-rel
2025-04-04T20:56:44.6362479Z -- Installing: C:/vcpkg/packages/boost-typeof_x64-windows-static/share/boost-typeof/copyright
2025-04-04T20:56:44.6426949Z -- Performing post-build validation
2025-04-04T20:56:44.6603157Z Starting submission of boost-typeof:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:44.6604623Z Elapsed time to handle boost-typeof:x64-windows-static: 2.1 s
2025-04-04T20:56:44.6605745Z boost-typeof:x64-windows-static package ABI: 291478b248a731d4e1557ab6113292cff9fa35a0fdc327062778819206980b5c
2025-04-04T20:56:44.6606862Z Completed submission of boost-optional:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 56.2 ms
2025-04-04T20:56:44.6607792Z Installing 24/41 boost-function-types:x64-windows-static@1.85.0#1...
2025-04-04T20:56:44.6608527Z Building boost-function-types:x64-windows-static@1.85.0#1...
2025-04-04T20:56:44.6609760Z C:\vcpkg\buildtrees\versioning_\versions\boost-function-types\f104ffe8e18e3f3ee0a80d8e5bf80b57933dfe2d: info: installing overlay port from here
2025-04-04T20:56:44.7124762Z Downloading https://github.com/boostorg/function_types/archive/boost-1.85.0.tar.gz -> boostorg-function_types-boost-1.85.0.tar.gz
2025-04-04T20:56:45.2918248Z Successfully downloaded boostorg-function_types-boost-1.85.0.tar.gz
2025-04-04T20:56:45.3016936Z -- Extracting source C:/vcpkg/downloads/boostorg-function_types-boost-1.85.0.tar.gz
2025-04-04T20:56:45.7125557Z -- Using source at C:/vcpkg/buildtrees/boost-function-types/src/ost-1.85.0-c35e45c9bf.clean
2025-04-04T20:56:45.7283923Z -- Found external ninja('1.12.1').
2025-04-04T20:56:45.7471130Z -- Configuring x64-windows-static
2025-04-04T20:56:47.0370787Z -- Building x64-windows-static-rel
2025-04-04T20:56:47.2766903Z -- Installing: C:/vcpkg/packages/boost-function-types_x64-windows-static/share/boost-function-types/copyright
2025-04-04T20:56:47.2830907Z -- Performing post-build validation
2025-04-04T20:56:47.3195273Z Starting submission of boost-function-types:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:47.3262201Z Elapsed time to handle boost-function-types:x64-windows-static: 2.7 s
2025-04-04T20:56:47.3263455Z boost-function-types:x64-windows-static package ABI: 21f3764aa95cd5dc03c2ebbd2931fd13ed28328cb8e57015c0d657e4746661f9
2025-04-04T20:56:47.3264630Z Completed submission of boost-typeof:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 53 ms
2025-04-04T20:56:47.3265365Z Installing 25/41 boost-bind:x64-windows-static@1.85.0#1...
2025-04-04T20:56:47.3265932Z Building boost-bind:x64-windows-static@1.85.0#1...
2025-04-04T20:56:47.3266887Z C:\vcpkg\buildtrees\versioning_\versions\boost-bind\111429d845df26d20305f3d7da0286840f2ab06a: info: installing overlay port from here
2025-04-04T20:56:47.3780822Z Downloading https://github.com/boostorg/bind/archive/boost-1.85.0.tar.gz -> boostorg-bind-boost-1.85.0.tar.gz
2025-04-04T20:56:47.8426357Z Successfully downloaded boostorg-bind-boost-1.85.0.tar.gz
2025-04-04T20:56:47.8526836Z -- Extracting source C:/vcpkg/downloads/boostorg-bind-boost-1.85.0.tar.gz
2025-04-04T20:56:48.2453551Z -- Using source at C:/vcpkg/buildtrees/boost-bind/src/ost-1.85.0-f67515d5c9.clean
2025-04-04T20:56:48.2563539Z -- Found external ninja('1.12.1').
2025-04-04T20:56:48.2638646Z -- Configuring x64-windows-static
2025-04-04T20:56:49.4762842Z -- Building x64-windows-static-rel
2025-04-04T20:56:49.6455963Z -- Installing: C:/vcpkg/packages/boost-bind_x64-windows-static/share/boost-bind/copyright
2025-04-04T20:56:49.6521082Z -- Performing post-build validation
2025-04-04T20:56:49.6671118Z Starting submission of boost-bind:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:49.6671906Z Elapsed time to handle boost-bind:x64-windows-static: 2.3 s
2025-04-04T20:56:49.6672450Z boost-bind:x64-windows-static package ABI: 6f4f2c30de3d2eb6dbc0dd9c96cac658fc5c5050ccd243b5ab282023a687709a
2025-04-04T20:56:49.6673358Z Completed submission of boost-function-types:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 77.4 ms
2025-04-04T20:56:49.6673878Z Installing 26/41 boost-function:x64-windows-static@1.85.0#1...
2025-04-04T20:56:49.6674220Z Building boost-function:x64-windows-static@1.85.0#1...
2025-04-04T20:56:49.6675899Z C:\vcpkg\buildtrees\versioning_\versions\boost-function\6a43002e49ebc7efbaef90a797ab79a73a3c914d: info: installing overlay port from here
2025-04-04T20:56:49.7106409Z Downloading https://github.com/boostorg/function/archive/boost-1.85.0.tar.gz -> boostorg-function-boost-1.85.0.tar.gz
2025-04-04T20:56:50.1577530Z Successfully downloaded boostorg-function-boost-1.85.0.tar.gz
2025-04-04T20:56:50.1678012Z -- Extracting source C:/vcpkg/downloads/boostorg-function-boost-1.85.0.tar.gz
2025-04-04T20:56:50.4343880Z -- Using source at C:/vcpkg/buildtrees/boost-function/src/ost-1.85.0-53efcad5f4.clean
2025-04-04T20:56:50.4453855Z -- Found external ninja('1.12.1').
2025-04-04T20:56:50.4528445Z -- Configuring x64-windows-static
2025-04-04T20:56:51.7082182Z -- Building x64-windows-static-rel
2025-04-04T20:56:51.8150586Z -- Installing: C:/vcpkg/packages/boost-function_x64-windows-static/share/boost-function/copyright
2025-04-04T20:56:51.8215711Z -- Performing post-build validation
2025-04-04T20:56:51.8361104Z Starting submission of boost-function:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:51.8361915Z Elapsed time to handle boost-function:x64-windows-static: 2.2 s
2025-04-04T20:56:51.8362485Z boost-function:x64-windows-static package ABI: 65478d47827a6aef25a30454525237b5b8eacc1e0857c0845164aeb86f7215bd
2025-04-04T20:56:51.8363150Z Completed submission of boost-bind:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 57.7 ms
2025-04-04T20:56:51.8363632Z Installing 27/41 boost-functional:x64-windows-static@1.85.0#1...
2025-04-04T20:56:51.8364014Z Building boost-functional:x64-windows-static@1.85.0#1...
2025-04-04T20:56:51.8364667Z C:\vcpkg\buildtrees\versioning_\versions\boost-functional\985d85794495e615e94e17c007055281850498e3: info: installing overlay port from here
2025-04-04T20:56:51.8940986Z Downloading https://github.com/boostorg/functional/archive/boost-1.85.0.tar.gz -> boostorg-functional-boost-1.85.0.tar.gz
2025-04-04T20:56:52.3141883Z Successfully downloaded boostorg-functional-boost-1.85.0.tar.gz
2025-04-04T20:56:52.3278819Z -- Extracting source C:/vcpkg/downloads/boostorg-functional-boost-1.85.0.tar.gz
2025-04-04T20:56:52.5923983Z -- Using source at C:/vcpkg/buildtrees/boost-functional/src/ost-1.85.0-59b0ff6e1b.clean
2025-04-04T20:56:52.6035571Z -- Found external ninja('1.12.1').
2025-04-04T20:56:52.6110979Z -- Configuring x64-windows-static
2025-04-04T20:56:53.9392402Z -- Building x64-windows-static-rel
2025-04-04T20:56:54.0376151Z -- Installing: C:/vcpkg/packages/boost-functional_x64-windows-static/share/boost-functional/copyright
2025-04-04T20:56:54.0441650Z -- Performing post-build validation
2025-04-04T20:56:54.0572628Z Starting submission of boost-functional:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:54.0573426Z Elapsed time to handle boost-functional:x64-windows-static: 2.2 s
2025-04-04T20:56:54.0573995Z boost-functional:x64-windows-static package ABI: b028b467aed7692125603e999a6cd34ad57cb4edd6e9328f24520307c45134e1
2025-04-04T20:56:54.0575303Z Completed submission of boost-function:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 61 ms
2025-04-04T20:56:54.0575800Z Installing 28/41 boost-mp11:x64-windows-static@1.85.0#1...
2025-04-04T20:56:54.0576308Z Building boost-mp11:x64-windows-static@1.85.0#1...
2025-04-04T20:56:54.0577034Z C:\vcpkg\buildtrees\versioning_\versions\boost-mp11\880c42ad4df9c2f2f7dc3125f9f49c3c289726ce: info: installing overlay port from here
2025-04-04T20:56:54.1085578Z Downloading https://github.com/boostorg/mp11/archive/boost-1.85.0.tar.gz -> boostorg-mp11-boost-1.85.0.tar.gz
2025-04-04T20:56:54.8027073Z Successfully downloaded boostorg-mp11-boost-1.85.0.tar.gz
2025-04-04T20:56:54.8127823Z -- Extracting source C:/vcpkg/downloads/boostorg-mp11-boost-1.85.0.tar.gz
2025-04-04T20:56:55.4389956Z -- Using source at C:/vcpkg/buildtrees/boost-mp11/src/ost-1.85.0-6b8127dc00.clean
2025-04-04T20:56:55.4507628Z -- Found external ninja('1.12.1').
2025-04-04T20:56:55.4584945Z -- Configuring x64-windows-static
2025-04-04T20:56:56.9211961Z -- Building x64-windows-static-rel
2025-04-04T20:56:57.2489830Z -- Installing: C:/vcpkg/packages/boost-mp11_x64-windows-static/share/boost-mp11/copyright
2025-04-04T20:56:57.2558530Z -- Performing post-build validation
2025-04-04T20:56:57.2918374Z Starting submission of boost-mp11:x64-windows-static@1.85.0#1 to 1 binary cache(s) in the background
2025-04-04T20:56:57.2919214Z Elapsed time to handle boost-mp11:x64-windows-static: 3.2 s
2025-04-04T20:56:57.2919750Z boost-mp11:x64-windows-static package ABI: 6cf7f96c1ec903ab27a7905670e9ef785cdaea188946d386434ab6b0c3865894
2025-04-04T20:56:57.2920413Z Completed submission of boost-functional:x64-windows-static@1.85.0#1 to 1 binary cache(s) in 59.9 ms
2025-04-04T20:56:57.2920917Z Installing 29/41 boost-describe:x64-windows-static@1.85.0#2...
2025-04-04T20:56:57.2921262Z Building boost-describe:x64-windows-static@1.85.0#2...
2025-04-04T20:56:57.2921835Z C:\vcpkg\buildtrees\versioning_\versions\boost-describe\bc47f93f7585264ea56a760693785eef00fc2324: info: installing overlay port from here
2025-04-04T20:56:57.3450722Z Downloading https://github.com/boostorg/describe/archive/boost-1.85.0.tar.gz -> boostorg-describe-boost-1.85.0.tar.gz
2025-04-04T20:56:57.7878943Z Successfully downloaded boostorg-describe-boost-1.85.0.tar.gz