-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipeline.log
10265 lines (10246 loc) · 880 KB
/
pipeline.log
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
[0KRunning with gitlab-runner 16.8.0 (c72a09b6)[0;m
[0K on runner tg37BLXiF, system ID: s_1fcf7832a801[0;m
section_start:1706624263:prepare_executor[0K[0K[36;1mPreparing the "docker" executor[0;m[0;m
[0KUsing Docker executor with image docker:24 ...[0;m
[0KPulling docker image docker:24 ...[0;m
[0KUsing docker image sha256:cf839aaaca3c3f8fac9f63be48dfc4f94d554eeccbf9a9f5100352f5fcfcf52d for docker:24 with digest docker@sha256:c68702a0a7ac43d6d69b1896ca55f160d5ac136e48eddfff71e8b8e5cff36494 ...[0;m
section_end:1706624279:prepare_executor[0Ksection_start:1706624279:prepare_script[0K[0K[36;1mPreparing environment[0;m[0;m
Running on runner-tg37blxif-project-3-concurrent-0 via runner...
section_end:1706624300:prepare_script[0Ksection_start:1706624300:get_sources[0K[0K[36;1mGetting source from Git repository[0;m[0;m
[32;1mFetching changes with git depth set to 20...[0;m
Reinitialized existing Git repository in /builds/apps/python-api/.git/
[32;1mChecking out e610df7a as detached HEAD (ref is main)...[0;m
[32;1mSkipping Git submodules setup[0;m
section_end:1706624301:get_sources[0Ksection_start:1706624301:step_script[0K[0K[36;1mExecuting "step_script" stage of the job script[0;m[0;m
[0KUsing docker image sha256:cf839aaaca3c3f8fac9f63be48dfc4f94d554eeccbf9a9f5100352f5fcfcf52d for docker:24 with digest docker@sha256:c68702a0a7ac43d6d69b1896ca55f160d5ac136e48eddfff71e8b8e5cff36494 ...[0;m
[32;1m$ cat $YC_KEY | docker login --username json_key --password-stdin cr.yandex[0;m
WARNING! Your password will be stored unencrypted in /root/.docker/config.json.
Configure a credential helper to remove this warning. See
https://docs.docker.com/engine/reference/commandline/login/#credentials-store
Login Succeeded
[32;1m$ docker build -t $IMAGE_BUILD .[0;m
#0 building with "default" instance using docker driver
#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile: 1.24kB done
#1 DONE 0.1s
#2 [internal] load metadata for docker.io/library/centos:7
#2 DONE 1.7s
#3 [internal] load .dockerignore
#3 transferring context: 2B done
#3 DONE 0.1s
#4 [internal] load build context
#4 transferring context: 515B done
#4 DONE 0.1s
#5 [builder 1/4] FROM docker.io/library/centos:7@sha256:be65f488b7764ad3638f236b7b515b3678369a5124c47b8d32916d6487418ea4
#5 resolve docker.io/library/centos:7@sha256:be65f488b7764ad3638f236b7b515b3678369a5124c47b8d32916d6487418ea4 0.0s done
#5 sha256:eeb6ee3f44bd0b5103bb561b4c16bcb82328cfe5809ab675bb17ab3a16c517c9 2.75kB / 2.75kB done
#5 sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc 0B / 76.10MB 0.1s
#5 sha256:be65f488b7764ad3638f236b7b515b3678369a5124c47b8d32916d6487418ea4 1.20kB / 1.20kB done
#5 sha256:dead07b4d8ed7e29e98de0f4504d87e8880d4347859d839686a31da35a3b532f 529B / 529B done
#5 sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc 7.34MB / 76.10MB 0.3s
#5 sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc 24.12MB / 76.10MB 0.5s
#5 sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc 33.55MB / 76.10MB 0.7s
#5 sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc 48.23MB / 76.10MB 0.9s
#5 sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc 56.62MB / 76.10MB 1.0s
#5 sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc 70.25MB / 76.10MB 1.2s
#5 sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc 76.10MB / 76.10MB 1.4s
#5 sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc 76.10MB / 76.10MB 5.2s done
#5 extracting sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc 0.1s
#5 extracting sha256:2d473b07cdd5f0912cd6f1a703352c82b512407db6b05b43f2553732b55df3bc 2.3s done
#5 DONE 8.4s
#6 [builder 2/4] RUN yum install gcc openssl-devel bzip2-devel libffi libffi-devel wget make -y && wget https://www.python.org/ftp/python/3.9.18/Python-3.9.18.tgz && tar -xzf Python-3.9.18.tgz && rm Python-3.9.18.tgz && yum clean all && rm -rf /var/cache/yum/*
#6 0.611 Loaded plugins: fastestmirror, ovl
#6 1.372 Determining fastest mirrors
#6 2.077 * base: mirror.sale-dedic.com
#6 2.078 * extras: mirror.yandex.ru
#6 2.078 * updates: mirror.yandex.ru
#6 11.20 Package libffi-3.0.13-19.el7.x86_64 already installed and latest version
#6 11.25 Resolving Dependencies
#6 11.25 --> Running transaction check
#6 11.25 ---> Package bzip2-devel.x86_64 0:1.0.6-13.el7 will be installed
#6 11.25 ---> Package gcc.x86_64 0:4.8.5-44.el7 will be installed
#6 11.26 --> Processing Dependency: libgomp = 4.8.5-44.el7 for package: gcc-4.8.5-44.el7.x86_64
#6 11.40 --> Processing Dependency: cpp = 4.8.5-44.el7 for package: gcc-4.8.5-44.el7.x86_64
#6 11.40 --> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-4.8.5-44.el7.x86_64
#6 11.41 --> Processing Dependency: libmpfr.so.4()(64bit) for package: gcc-4.8.5-44.el7.x86_64
#6 11.41 --> Processing Dependency: libmpc.so.3()(64bit) for package: gcc-4.8.5-44.el7.x86_64
#6 11.41 --> Processing Dependency: libgomp.so.1()(64bit) for package: gcc-4.8.5-44.el7.x86_64
#6 11.41 ---> Package libffi-devel.x86_64 0:3.0.13-19.el7 will be installed
#6 11.42 ---> Package make.x86_64 1:3.82-24.el7 will be installed
#6 11.42 ---> Package openssl-devel.x86_64 1:1.0.2k-26.el7_9 will be installed
#6 11.42 --> Processing Dependency: openssl-libs(x86-64) = 1:1.0.2k-26.el7_9 for package: 1:openssl-devel-1.0.2k-26.el7_9.x86_64
#6 11.42 --> Processing Dependency: zlib-devel(x86-64) for package: 1:openssl-devel-1.0.2k-26.el7_9.x86_64
#6 11.43 --> Processing Dependency: krb5-devel(x86-64) for package: 1:openssl-devel-1.0.2k-26.el7_9.x86_64
#6 11.43 ---> Package wget.x86_64 0:1.14-18.el7_6.1 will be installed
#6 11.44 --> Running transaction check
#6 11.44 ---> Package cpp.x86_64 0:4.8.5-44.el7 will be installed
#6 11.44 ---> Package glibc-devel.x86_64 0:2.17-326.el7_9 will be installed
#6 11.44 --> Processing Dependency: glibc-headers = 2.17-326.el7_9 for package: glibc-devel-2.17-326.el7_9.x86_64
#6 11.45 --> Processing Dependency: glibc = 2.17-326.el7_9 for package: glibc-devel-2.17-326.el7_9.x86_64
#6 11.46 --> Processing Dependency: glibc-headers for package: glibc-devel-2.17-326.el7_9.x86_64
#6 11.46 ---> Package krb5-devel.x86_64 0:1.15.1-55.el7_9 will be installed
#6 11.47 --> Processing Dependency: libkadm5(x86-64) = 1.15.1-55.el7_9 for package: krb5-devel-1.15.1-55.el7_9.x86_64
#6 11.47 --> Processing Dependency: krb5-libs(x86-64) = 1.15.1-55.el7_9 for package: krb5-devel-1.15.1-55.el7_9.x86_64
#6 11.48 --> Processing Dependency: libverto-devel for package: krb5-devel-1.15.1-55.el7_9.x86_64
#6 11.48 --> Processing Dependency: libselinux-devel for package: krb5-devel-1.15.1-55.el7_9.x86_64
#6 11.48 --> Processing Dependency: libcom_err-devel for package: krb5-devel-1.15.1-55.el7_9.x86_64
#6 11.49 --> Processing Dependency: keyutils-libs-devel for package: krb5-devel-1.15.1-55.el7_9.x86_64
#6 11.49 ---> Package libgomp.x86_64 0:4.8.5-44.el7 will be installed
#6 11.49 ---> Package libmpc.x86_64 0:1.0.1-3.el7 will be installed
#6 11.49 ---> Package mpfr.x86_64 0:3.1.1-4.el7 will be installed
#6 11.49 ---> Package openssl-libs.x86_64 1:1.0.2k-19.el7 will be updated
#6 13.83 ---> Package openssl-libs.x86_64 1:1.0.2k-26.el7_9 will be an update
#6 13.83 ---> Package zlib-devel.x86_64 0:1.2.7-21.el7_9 will be installed
#6 13.83 --> Processing Dependency: zlib = 1.2.7-21.el7_9 for package: zlib-devel-1.2.7-21.el7_9.x86_64
#6 13.84 --> Running transaction check
#6 13.84 ---> Package glibc.x86_64 0:2.17-317.el7 will be updated
#6 13.85 --> Processing Dependency: glibc = 2.17-317.el7 for package: glibc-common-2.17-317.el7.x86_64
#6 13.85 ---> Package glibc.x86_64 0:2.17-326.el7_9 will be an update
#6 13.85 ---> Package glibc-headers.x86_64 0:2.17-326.el7_9 will be installed
#6 13.85 --> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.17-326.el7_9.x86_64
#6 13.88 --> Processing Dependency: kernel-headers for package: glibc-headers-2.17-326.el7_9.x86_64
#6 13.88 ---> Package keyutils-libs-devel.x86_64 0:1.5.8-3.el7 will be installed
#6 13.88 ---> Package krb5-libs.x86_64 0:1.15.1-50.el7 will be updated
#6 13.88 ---> Package krb5-libs.x86_64 0:1.15.1-55.el7_9 will be an update
#6 13.89 ---> Package libcom_err-devel.x86_64 0:1.42.9-19.el7 will be installed
#6 13.89 ---> Package libkadm5.x86_64 0:1.15.1-55.el7_9 will be installed
#6 13.89 ---> Package libselinux-devel.x86_64 0:2.5-15.el7 will be installed
#6 13.89 --> Processing Dependency: libsepol-devel(x86-64) >= 2.5-10 for package: libselinux-devel-2.5-15.el7.x86_64
#6 13.89 --> Processing Dependency: pkgconfig(libsepol) for package: libselinux-devel-2.5-15.el7.x86_64
#6 13.89 --> Processing Dependency: pkgconfig(libpcre) for package: libselinux-devel-2.5-15.el7.x86_64
#6 13.90 ---> Package libverto-devel.x86_64 0:0.2.5-4.el7 will be installed
#6 13.90 ---> Package zlib.x86_64 0:1.2.7-18.el7 will be updated
#6 13.90 ---> Package zlib.x86_64 0:1.2.7-21.el7_9 will be an update
#6 13.90 --> Running transaction check
#6 13.90 ---> Package glibc-common.x86_64 0:2.17-317.el7 will be updated
#6 13.90 ---> Package glibc-common.x86_64 0:2.17-326.el7_9 will be an update
#6 13.90 ---> Package kernel-headers.x86_64 0:3.10.0-1160.108.1.el7 will be installed
#6 13.90 ---> Package libsepol-devel.x86_64 0:2.5-10.el7 will be installed
#6 13.90 ---> Package pcre-devel.x86_64 0:8.32-17.el7 will be installed
#6 14.01 --> Finished Dependency Resolution
#6 14.02
#6 14.02 Dependencies Resolved
#6 14.03
#6 14.03 ================================================================================
#6 14.03 Package Arch Version Repository Size
#6 14.03 ================================================================================
#6 14.03 Installing:
#6 14.03 bzip2-devel x86_64 1.0.6-13.el7 base 218 k
#6 14.03 gcc x86_64 4.8.5-44.el7 base 16 M
#6 14.03 libffi-devel x86_64 3.0.13-19.el7 base 23 k
#6 14.03 make x86_64 1:3.82-24.el7 base 421 k
#6 14.03 openssl-devel x86_64 1:1.0.2k-26.el7_9 updates 1.5 M
#6 14.03 wget x86_64 1.14-18.el7_6.1 base 547 k
#6 14.03 Installing for dependencies:
#6 14.03 cpp x86_64 4.8.5-44.el7 base 5.9 M
#6 14.03 glibc-devel x86_64 2.17-326.el7_9 updates 1.1 M
#6 14.03 glibc-headers x86_64 2.17-326.el7_9 updates 691 k
#6 14.03 kernel-headers x86_64 3.10.0-1160.108.1.el7 updates 9.1 M
#6 14.03 keyutils-libs-devel x86_64 1.5.8-3.el7 base 37 k
#6 14.03 krb5-devel x86_64 1.15.1-55.el7_9 updates 273 k
#6 14.03 libcom_err-devel x86_64 1.42.9-19.el7 base 32 k
#6 14.03 libgomp x86_64 4.8.5-44.el7 base 159 k
#6 14.03 libkadm5 x86_64 1.15.1-55.el7_9 updates 180 k
#6 14.03 libmpc x86_64 1.0.1-3.el7 base 51 k
#6 14.03 libselinux-devel x86_64 2.5-15.el7 base 187 k
#6 14.03 libsepol-devel x86_64 2.5-10.el7 base 77 k
#6 14.03 libverto-devel x86_64 0.2.5-4.el7 base 12 k
#6 14.03 mpfr x86_64 3.1.1-4.el7 base 203 k
#6 14.03 pcre-devel x86_64 8.32-17.el7 base 480 k
#6 14.03 zlib-devel x86_64 1.2.7-21.el7_9 updates 50 k
#6 14.03 Updating for dependencies:
#6 14.03 glibc x86_64 2.17-326.el7_9 updates 3.6 M
#6 14.03 glibc-common x86_64 2.17-326.el7_9 updates 12 M
#6 14.03 krb5-libs x86_64 1.15.1-55.el7_9 updates 810 k
#6 14.03 openssl-libs x86_64 1:1.0.2k-26.el7_9 updates 1.2 M
#6 14.03 zlib x86_64 1.2.7-21.el7_9 updates 90 k
#6 14.03
#6 14.03 Transaction Summary
#6 14.03 ================================================================================
#6 14.03 Install 6 Packages (+16 Dependent packages)
#6 14.03 Upgrade ( 5 Dependent packages)
#6 14.03
#6 14.03 Total download size: 55 M
#6 14.03 Downloading packages:
#6 14.03 Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
#6 14.13 warning: /var/cache/yum/x86_64/7/base/packages/bzip2-devel-1.0.6-13.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
#6 14.14 Public key for bzip2-devel-1.0.6-13.el7.x86_64.rpm is not installed
#6 14.25 Public key for glibc-common-2.17-326.el7_9.x86_64.rpm is not installed
#6 14.57 --------------------------------------------------------------------------------
#6 14.57 Total 102 MB/s | 55 MB 00:00
#6 14.57 Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
#6 14.58 Importing GPG key 0xF4A80EB5:
#6 14.58 Userid : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>"
#6 14.58 Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
#6 14.58 Package : centos-release-7-9.2009.0.el7.centos.x86_64 (@CentOS)
#6 14.58 From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
#6 23.21 Running transaction check
#6 23.35 Running transaction test
#6 23.47 Transaction test succeeded
#6 23.47 Running transaction
#6 33.05 Updating : glibc-common-2.17-326.el7_9.x86_64 1/32
#6 36.90 Updating : glibc-2.17-326.el7_9.x86_64 2/32
#6 37.07 Updating : zlib-1.2.7-21.el7_9.x86_64 3/32
#6 37.35 Updating : 1:openssl-libs-1.0.2k-26.el7_9.x86_64 4/32
#6 37.53 Updating : krb5-libs-1.15.1-55.el7_9.x86_64 5/32
#6 37.72 Installing : mpfr-3.1.1-4.el7.x86_64 6/32
#6 37.82 Installing : libmpc-1.0.1-3.el7.x86_64 7/32
#6 38.60 Installing : cpp-4.8.5-44.el7.x86_64 8/32
#6 38.72 Installing : libkadm5-1.15.1-55.el7_9.x86_64 9/32
#6 38.82 Installing : zlib-devel-1.2.7-21.el7_9.x86_64 10/32
#6 38.89 Installing : libgomp-4.8.5-44.el7.x86_64 11/32
#6 38.94 Installing : libcom_err-devel-1.42.9-19.el7.x86_64 12/32
#6 39.03 Installing : pcre-devel-8.32-17.el7.x86_64 13/32
#6 39.37 Installing : kernel-headers-3.10.0-1160.108.1.el7.x86_64 14/32
#6 39.60 Installing : glibc-headers-2.17-326.el7_9.x86_64 15/32
#6 39.76 Installing : glibc-devel-2.17-326.el7_9.x86_64 16/32
#6 39.82 Installing : libverto-devel-0.2.5-4.el7.x86_64 17/32
#6 39.90 Installing : libsepol-devel-2.5-10.el7.x86_64 18/32
#6 39.97 Installing : libselinux-devel-2.5-15.el7.x86_64 19/32
#6 40.02 Installing : keyutils-libs-devel-1.5.8-3.el7.x86_64 20/32
#6 40.10 Installing : krb5-devel-1.15.1-55.el7_9.x86_64 21/32
#6 40.33 Installing : 1:openssl-devel-1.0.2k-26.el7_9.x86_64 22/32
#6 43.25 Installing : gcc-4.8.5-44.el7.x86_64 23/32
#6 43.46 Installing : wget-1.14-18.el7_6.1.x86_64 24/32
#6 43.54 install-info: No such file or directory for /usr/share/info/wget.info.gz
#6 43.72 Installing : 1:make-3.82-24.el7.x86_64 25/32
#6 43.99 Installing : bzip2-devel-1.0.6-13.el7.x86_64 26/32
#6 44.17 Installing : libffi-devel-3.0.13-19.el7.x86_64 27/32
#6 44.26 install-info: No such file or directory for /usr/share/info/libffi.info.gz
#6 44.48 Cleanup : krb5-libs-1.15.1-50.el7.x86_64 28/32
#6 44.66 Cleanup : 1:openssl-libs-1.0.2k-19.el7.x86_64 29/32
#6 44.83 Cleanup : zlib-1.2.7-18.el7.x86_64 30/32
#6 45.09 Cleanup : glibc-common-2.17-317.el7.x86_64 31/32
#6 45.22 Cleanup : glibc-2.17-317.el7.x86_64 32/32
#6 45.41 Verifying : libselinux-devel-2.5-15.el7.x86_64 1/32
#6 45.56 Verifying : keyutils-libs-devel-1.5.8-3.el7.x86_64 2/32
#6 45.69 Verifying : glibc-2.17-326.el7_9.x86_64 3/32
#6 45.85 Verifying : krb5-devel-1.15.1-55.el7_9.x86_64 4/32
#6 45.90 Verifying : libffi-devel-3.0.13-19.el7.x86_64 5/32
#6 45.94 Verifying : zlib-1.2.7-21.el7_9.x86_64 6/32
#6 45.97 Verifying : bzip2-devel-1.0.6-13.el7.x86_64 7/32
#6 46.01 Verifying : 1:openssl-devel-1.0.2k-26.el7_9.x86_64 8/32
#6 46.05 Verifying : libsepol-devel-2.5-10.el7.x86_64 9/32
#6 46.08 Verifying : libverto-devel-0.2.5-4.el7.x86_64 10/32
#6 46.14 Verifying : 1:openssl-libs-1.0.2k-26.el7_9.x86_64 11/32
#6 46.18 Verifying : cpp-4.8.5-44.el7.x86_64 12/32
#6 46.23 Verifying : glibc-headers-2.17-326.el7_9.x86_64 13/32
#6 46.27 Verifying : 1:make-3.82-24.el7.x86_64 14/32
#6 46.32 Verifying : zlib-devel-1.2.7-21.el7_9.x86_64 15/32
#6 46.38 Verifying : krb5-libs-1.15.1-55.el7_9.x86_64 16/32
#6 46.41 Verifying : gcc-4.8.5-44.el7.x86_64 17/32
#6 46.46 Verifying : libmpc-1.0.1-3.el7.x86_64 18/32
#6 46.49 Verifying : kernel-headers-3.10.0-1160.108.1.el7.x86_64 19/32
#6 46.57 Verifying : glibc-common-2.17-326.el7_9.x86_64 20/32
#6 46.63 Verifying : pcre-devel-8.32-17.el7.x86_64 21/32
#6 46.68 Verifying : libkadm5-1.15.1-55.el7_9.x86_64 22/32
#6 46.71 Verifying : mpfr-3.1.1-4.el7.x86_64 23/32
#6 46.73 Verifying : glibc-devel-2.17-326.el7_9.x86_64 24/32
#6 46.78 Verifying : libcom_err-devel-1.42.9-19.el7.x86_64 25/32
#6 46.82 Verifying : wget-1.14-18.el7_6.1.x86_64 26/32
#6 46.85 Verifying : libgomp-4.8.5-44.el7.x86_64 27/32
#6 46.89 Verifying : glibc-2.17-317.el7.x86_64 28/32
#6 46.89 Verifying : glibc-common-2.17-317.el7.x86_64 29/32
#6 46.90 Verifying : krb5-libs-1.15.1-50.el7.x86_64 30/32
#6 46.90 Verifying : zlib-1.2.7-18.el7.x86_64 31/32
#6 46.90 Verifying : 1:openssl-libs-1.0.2k-19.el7.x86_64 32/32
#6 46.98
#6 46.98 Installed:
#6 46.98 bzip2-devel.x86_64 0:1.0.6-13.el7 gcc.x86_64 0:4.8.5-44.el7
#6 46.98 libffi-devel.x86_64 0:3.0.13-19.el7 make.x86_64 1:3.82-24.el7
#6 46.98 openssl-devel.x86_64 1:1.0.2k-26.el7_9 wget.x86_64 0:1.14-18.el7_6.1
#6 46.98
#6 46.98 Dependency Installed:
#6 46.98 cpp.x86_64 0:4.8.5-44.el7
#6 46.98 glibc-devel.x86_64 0:2.17-326.el7_9
#6 46.98 glibc-headers.x86_64 0:2.17-326.el7_9
#6 46.98 kernel-headers.x86_64 0:3.10.0-1160.108.1.el7
#6 46.98 keyutils-libs-devel.x86_64 0:1.5.8-3.el7
#6 46.98 krb5-devel.x86_64 0:1.15.1-55.el7_9
#6 46.98 libcom_err-devel.x86_64 0:1.42.9-19.el7
#6 46.98 libgomp.x86_64 0:4.8.5-44.el7
#6 46.98 libkadm5.x86_64 0:1.15.1-55.el7_9
#6 46.98 libmpc.x86_64 0:1.0.1-3.el7
#6 46.98 libselinux-devel.x86_64 0:2.5-15.el7
#6 46.98 libsepol-devel.x86_64 0:2.5-10.el7
#6 46.98 libverto-devel.x86_64 0:0.2.5-4.el7
#6 46.98 mpfr.x86_64 0:3.1.1-4.el7
#6 46.98 pcre-devel.x86_64 0:8.32-17.el7
#6 46.98 zlib-devel.x86_64 0:1.2.7-21.el7_9
#6 46.98
#6 46.98 Dependency Updated:
#6 46.98 glibc.x86_64 0:2.17-326.el7_9 glibc-common.x86_64 0:2.17-326.el7_9
#6 46.98 krb5-libs.x86_64 0:1.15.1-55.el7_9 openssl-libs.x86_64 1:1.0.2k-26.el7_9
#6 46.98 zlib.x86_64 0:1.2.7-21.el7_9
#6 46.98
#6 46.98 Complete!
#6 47.01 --2024-01-30 14:19:19-- https://www.python.org/ftp/python/3.9.18/Python-3.9.18.tgz
#6 47.01 Resolving www.python.org (www.python.org)... 151.101.244.223, 2a04:4e42:3a::223
#6 47.02 Connecting to www.python.org (www.python.org)|151.101.244.223|:443... connected.
#6 47.10 HTTP request sent, awaiting response... 200 OK
#6 47.12 Length: 26294072 (25M) [application/octet-stream]
#6 47.13 Saving to: 'Python-3.9.18.tgz'
#6 47.13
#6 47.13 0K .......... .......... .......... .......... .......... 0% 1.79M 14s
#6 47.15 50K .......... .......... .......... .......... .......... 0% 2.01M 13s
#6 47.18 100K .......... .......... .......... .......... .......... 0% 8.20M 10s
#6 47.18 150K .......... .......... .......... .......... .......... 0% 9.85M 8s
#6 47.19 200K .......... .......... .......... .......... .......... 0% 3.42M 8s
#6 47.20 250K .......... .......... .......... .......... .......... 1% 15.9M 7s
#6 47.20 300K .......... .......... .......... .......... .......... 1% 16.9M 6s
#6 47.21 350K .......... .......... .......... .......... .......... 1% 12.5M 5s
#6 47.21 400K .......... .......... .......... .......... .......... 1% 20.5M 5s
#6 47.21 450K .......... .......... .......... .......... .......... 1% 25.2M 5s
#6 47.22 500K .......... .......... .......... .......... .......... 2% 4.26M 5s
#6 47.23 550K .......... .......... .......... .......... .......... 2% 29.9M 4s
#6 47.23 600K .......... .......... .......... .......... .......... 2% 28.5M 4s
#6 47.23 650K .......... .......... .......... .......... .......... 2% 31.8M 4s
#6 47.23 700K .......... .......... .......... .......... .......... 2% 34.8M 4s
#6 47.23 750K .......... .......... .......... .......... .......... 3% 24.5M 3s
#6 47.24 800K .......... .......... .......... .......... .......... 3% 40.5M 3s
#6 47.24 850K .......... .......... .......... .......... .......... 3% 27.9M 3s
#6 47.24 900K .......... .......... .......... .......... .......... 3% 39.7M 3s
#6 47.24 950K .......... .......... .......... .......... .......... 3% 57.2M 3s
#6 47.24 1000K .......... .......... .......... .......... .......... 4% 64.3M 3s
#6 47.24 1050K .......... .......... .......... .......... .......... 4% 5.00M 3s
#6 47.25 1100K .......... .......... .......... .......... .......... 4% 34.8M 3s
#6 47.25 1150K .......... .......... .......... .......... .......... 4% 38.7M 3s
#6 47.25 1200K .......... .......... .......... .......... .......... 4% 80.4M 3s
#6 47.25 1250K .......... .......... .......... .......... .......... 5% 104M 2s
#6 47.26 1300K .......... .......... .......... .......... .......... 5% 26.2M 2s
#6 47.26 1350K .......... .......... .......... .......... .......... 5% 41.7M 2s
#6 47.26 1400K .......... .......... .......... .......... .......... 5% 120M 2s
#6 47.26 1450K .......... .......... .......... .......... .......... 5% 93.4M 2s
#6 47.26 1500K .......... .......... .......... .......... .......... 6% 53.2M 2s
#6 47.26 1550K .......... .......... .......... .......... .......... 6% 52.6M 2s
#6 47.26 1600K .......... .......... .......... .......... .......... 6% 41.2M 2s
#6 47.26 1650K .......... .......... .......... .......... .......... 6% 105M 2s
#6 47.26 1700K .......... .......... .......... .......... .......... 6% 60.7M 2s
#6 47.26 1750K .......... .......... .......... .......... .......... 7% 81.1M 2s
#6 47.26 1800K .......... .......... .......... .......... .......... 7% 90.8M 2s
#6 47.26 1850K .......... .......... .......... .......... .......... 7% 104M 2s
#6 47.27 1900K .......... .......... .......... .......... .......... 7% 55.4M 2s
#6 47.27 1950K .......... .......... .......... .......... .......... 7% 70.6M 2s
#6 47.27 2000K .......... .......... .......... .......... .......... 7% 159M 2s
#6 47.27 2050K .......... .......... .......... .......... .......... 8% 91.7M 2s
#6 47.27 2100K .......... .......... .......... .......... .......... 8% 103M 2s
#6 47.27 2150K .......... .......... .......... .......... .......... 8% 5.47M 2s
#6 47.28 2200K .......... .......... .......... .......... .......... 8% 187M 2s
#6 47.28 2250K .......... .......... .......... .......... .......... 8% 53.8M 2s
#6 47.28 2300K .......... .......... .......... .......... .......... 9% 154M 2s
#6 47.28 2350K .......... .......... .......... .......... .......... 9% 66.7M 1s
#6 47.28 2400K .......... .......... .......... .......... .......... 9% 113M 1s
#6 47.28 2450K .......... .......... .......... .......... .......... 9% 188M 1s
#6 47.28 2500K .......... .......... .......... .......... .......... 9% 110M 1s
#6 47.28 2550K .......... .......... .......... .......... .......... 10% 117M 1s
#6 47.28 2600K .......... .......... .......... .......... .......... 10% 164M 1s
#6 47.28 2650K .......... .......... .......... .......... .......... 10% 36.0M 1s
#6 47.28 2700K .......... .......... .......... .......... .......... 10% 413M 1s
#6 47.28 2750K .......... .......... .......... .......... .......... 10% 51.2M 1s
#6 47.28 2800K .......... .......... .......... .......... .......... 11% 167M 1s
#6 47.28 2850K .......... .......... .......... .......... .......... 11% 52.9M 1s
#6 47.28 2900K .......... .......... .......... .......... .......... 11% 318M 1s
#6 47.28 2950K .......... .......... .......... .......... .......... 11% 319M 1s
#6 47.28 3000K .......... .......... .......... .......... .......... 11% 127M 1s
#6 47.29 3050K .......... .......... .......... .......... .......... 12% 387M 1s
#6 47.29 3100K .......... .......... .......... .......... .......... 12% 42.3M 1s
#6 47.29 3150K .......... .......... .......... .......... .......... 12% 40.2M 1s
#6 47.29 3200K .......... .......... .......... .......... .......... 12% 61.4M 1s
#6 47.29 3250K .......... .......... .......... .......... .......... 12% 51.9M 1s
#6 47.29 3300K .......... .......... .......... .......... .......... 13% 72.5M 1s
#6 47.29 3350K .......... .......... .......... .......... .......... 13% 408M 1s
#6 47.29 3400K .......... .......... .......... .......... .......... 13% 379M 1s
#6 47.29 3450K .......... .......... .......... .......... .......... 13% 523M 1s
#6 47.29 3500K .......... .......... .......... .......... .......... 13% 451M 1s
#6 47.29 3550K .......... .......... .......... .......... .......... 14% 362M 1s
#6 47.29 3600K .......... .......... .......... .......... .......... 14% 140M 1s
#6 47.29 3650K .......... .......... .......... .......... .......... 14% 52.4M 1s
#6 47.29 3700K .......... .......... .......... .......... .......... 14% 78.4M 1s
#6 47.29 3750K .......... .......... .......... .......... .......... 14% 152M 1s
#6 47.29 3800K .......... .......... .......... .......... .......... 14% 193M 1s
#6 47.29 3850K .......... .......... .......... .......... .......... 15% 296M 1s
#6 47.29 3900K .......... .......... .......... .......... .......... 15% 126M 1s
#6 47.29 3950K .......... .......... .......... .......... .......... 15% 120M 1s
#6 47.29 4000K .......... .......... .......... .......... .......... 15% 444M 1s
#6 47.29 4050K .......... .......... .......... .......... .......... 15% 493M 1s
#6 47.29 4100K .......... .......... .......... .......... .......... 16% 446M 1s
#6 47.29 4150K .......... .......... .......... .......... .......... 16% 417M 1s
#6 47.29 4200K .......... .......... .......... .......... .......... 16% 394M 1s
#6 47.29 4250K .......... .......... .......... .......... .......... 16% 459M 1s
#6 47.29 4300K .......... .......... .......... .......... .......... 16% 56.9M 1s
#6 47.30 4350K .......... .......... .......... .......... .......... 17% 6.75M 1s
#6 47.30 4400K .......... .......... .......... .......... .......... 17% 57.6M 1s
#6 47.30 4450K .......... .......... .......... .......... .......... 17% 54.3M 1s
#6 47.30 4500K .......... .......... .......... .......... .......... 17% 55.9M 1s
#6 47.31 4550K .......... .......... .......... .......... .......... 17% 40.5M 1s
#6 47.31 4600K .......... .......... .......... .......... .......... 18% 47.9M 1s
#6 47.31 4650K .......... .......... .......... .......... .......... 18% 59.0M 1s
#6 47.31 4700K .......... .......... .......... .......... .......... 18% 91.5M 1s
#6 47.31 4750K .......... .......... .......... .......... .......... 18% 107M 1s
#6 47.31 4800K .......... .......... .......... .......... .......... 18% 100M 1s
#6 47.31 4850K .......... .......... .......... .......... .......... 19% 240M 1s
#6 47.31 4900K .......... .......... .......... .......... .......... 19% 133M 1s
#6 47.31 4950K .......... .......... .......... .......... .......... 19% 95.4M 1s
#6 47.31 5000K .......... .......... .......... .......... .......... 19% 280M 1s
#6 47.31 5050K .......... .......... .......... .......... .......... 19% 89.6M 1s
#6 47.31 5100K .......... .......... .......... .......... .......... 20% 160M 1s
#6 47.31 5150K .......... .......... .......... .......... .......... 20% 108M 1s
#6 47.31 5200K .......... .......... .......... .......... .......... 20% 49.2M 1s
#6 47.31 5250K .......... .......... .......... .......... .......... 20% 47.0M 1s
#6 47.31 5300K .......... .......... .......... .......... .......... 20% 89.2M 1s
#6 47.32 5350K .......... .......... .......... .......... .......... 21% 148M 1s
#6 47.32 5400K .......... .......... .......... .......... .......... 21% 164M 1s
#6 47.32 5450K .......... .......... .......... .......... .......... 21% 107M 1s
#6 47.32 5500K .......... .......... .......... .......... .......... 21% 206M 1s
#6 47.32 5550K .......... .......... .......... .......... .......... 21% 113M 1s
#6 47.32 5600K .......... .......... .......... .......... .......... 22% 143M 1s
#6 47.32 5650K .......... .......... .......... .......... .......... 22% 151M 1s
#6 47.32 5700K .......... .......... .......... .......... .......... 22% 247M 1s
#6 47.32 5750K .......... .......... .......... .......... .......... 22% 127M 1s
#6 47.32 5800K .......... .......... .......... .......... .......... 22% 207M 1s
#6 47.32 5850K .......... .......... .......... .......... .......... 22% 150M 1s
#6 47.32 5900K .......... .......... .......... .......... .......... 23% 142M 1s
#6 47.32 5950K .......... .......... .......... .......... .......... 23% 142M 1s
#6 47.32 6000K .......... .......... .......... .......... .......... 23% 160M 1s
#6 47.32 6050K .......... .......... .......... .......... .......... 23% 157M 1s
#6 47.32 6100K .......... .......... .......... .......... .......... 23% 105M 1s
#6 47.32 6150K .......... .......... .......... .......... .......... 24% 121M 1s
#6 47.32 6200K .......... .......... .......... .......... .......... 24% 207M 1s
#6 47.32 6250K .......... .......... .......... .......... .......... 24% 144M 1s
#6 47.32 6300K .......... .......... .......... .......... .......... 24% 147M 1s
#6 47.32 6350K .......... .......... .......... .......... .......... 24% 121M 1s
#6 47.32 6400K .......... .......... .......... .......... .......... 25% 146M 1s
#6 47.32 6450K .......... .......... .......... .......... .......... 25% 308M 1s
#6 47.32 6500K .......... .......... .......... .......... .......... 25% 270M 1s
#6 47.32 6550K .......... .......... .......... .......... .......... 25% 127M 1s
#6 47.32 6600K .......... .......... .......... .......... .......... 25% 145M 1s
#6 47.32 6650K .......... .......... .......... .......... .......... 26% 171M 1s
#6 47.32 6700K .......... .......... .......... .......... .......... 26% 182M 1s
#6 47.32 6750K .......... .......... .......... .......... .......... 26% 144M 1s
#6 47.32 6800K .......... .......... .......... .......... .......... 26% 168M 1s
#6 47.32 6850K .......... .......... .......... .......... .......... 26% 217M 1s
#6 47.33 6900K .......... .......... .......... .......... .......... 27% 187M 1s
#6 47.33 6950K .......... .......... .......... .......... .......... 27% 168M 1s
#6 47.33 7000K .......... .......... .......... .......... .......... 27% 208M 1s
#6 47.33 7050K .......... .......... .......... .......... .......... 27% 233M 1s
#6 47.33 7100K .......... .......... .......... .......... .......... 27% 168M 1s
#6 47.33 7150K .......... .......... .......... .......... .......... 28% 149M 1s
#6 47.33 7200K .......... .......... .......... .......... .......... 28% 489M 1s
#6 47.33 7250K .......... .......... .......... .......... .......... 28% 407M 1s
#6 47.33 7300K .......... .......... .......... .......... .......... 28% 523M 1s
#6 47.33 7350K .......... .......... .......... .......... .......... 28% 473M 0s
#6 47.33 7400K .......... .......... .......... .......... .......... 29% 56.8M 0s
#6 47.33 7450K .......... .......... .......... .......... .......... 29% 61.7M 0s
#6 47.33 7500K .......... .......... .......... .......... .......... 29% 421M 0s
#6 47.33 7550K .......... .......... .......... .......... .......... 29% 122M 0s
#6 47.33 7600K .......... .......... .......... .......... .......... 29% 41.2M 0s
#6 47.33 7650K .......... .......... .......... .......... .......... 29% 93.9M 0s
#6 47.33 7700K .......... .......... .......... .......... .......... 30% 220M 0s
#6 47.33 7750K .......... .......... .......... .......... .......... 30% 167M 0s
#6 47.33 7800K .......... .......... .......... .......... .......... 30% 288M 0s
#6 47.33 7850K .......... .......... .......... .......... .......... 30% 45.2M 0s
#6 47.33 7900K .......... .......... .......... .......... .......... 30% 82.7M 0s
#6 47.33 7950K .......... .......... .......... .......... .......... 31% 99.6M 0s
#6 47.33 8000K .......... .......... .......... .......... .......... 31% 294M 0s
#6 47.33 8050K .......... .......... .......... .......... .......... 31% 387M 0s
#6 47.33 8100K .......... .......... .......... .......... .......... 31% 202M 0s
#6 47.33 8150K .......... .......... .......... .......... .......... 31% 286M 0s
#6 47.33 8200K .......... .......... .......... .......... .......... 32% 331M 0s
#6 47.33 8250K .......... .......... .......... .......... .......... 32% 433M 0s
#6 47.33 8300K .......... .......... .......... .......... .......... 32% 54.1M 0s
#6 47.34 8350K .......... .......... .......... .......... .......... 32% 87.8M 0s
#6 47.34 8400K .......... .......... .......... .......... .......... 32% 326M 0s
#6 47.34 8450K .......... .......... .......... .......... .......... 33% 303M 0s
#6 47.34 8500K .......... .......... .......... .......... .......... 33% 44.5M 0s
#6 47.34 8550K .......... .......... .......... .......... .......... 33% 289M 0s
#6 47.34 8600K .......... .......... .......... .......... .......... 33% 273M 0s
#6 47.34 8650K .......... .......... .......... .......... .......... 33% 367M 0s
#6 47.34 8700K .......... .......... .......... .......... .......... 34% 42.8M 0s
#6 47.34 8750K .......... .......... .......... .......... .......... 34% 29.1M 0s
#6 47.34 8800K .......... .......... .......... .......... .......... 34% 187M 0s
#6 47.34 8850K .......... .......... .......... .......... .......... 34% 166M 0s
#6 47.34 8900K .......... .......... .......... .......... .......... 34% 229M 0s
#6 47.34 8950K .......... .......... .......... .......... .......... 35% 203M 0s
#6 47.34 9000K .......... .......... .......... .......... .......... 35% 168M 0s
#6 47.34 9050K .......... .......... .......... .......... .......... 35% 237M 0s
#6 47.34 9100K .......... .......... .......... .......... .......... 35% 85.1M 0s
#6 47.34 9150K .......... .......... .......... .......... .......... 35% 77.1M 0s
#6 47.34 9200K .......... .......... .......... .......... .......... 36% 279M 0s
#6 47.34 9250K .......... .......... .......... .......... .......... 36% 212M 0s
#6 47.34 9300K .......... .......... .......... .......... .......... 36% 151M 0s
#6 47.34 9350K .......... .......... .......... .......... .......... 36% 41.2M 0s
#6 47.35 9400K .......... .......... .......... .......... .......... 36% 258M 0s
#6 47.35 9450K .......... .......... .......... .......... .......... 36% 487M 0s
#6 47.35 9500K .......... .......... .......... .......... .......... 37% 311M 0s
#6 47.35 9550K .......... .......... .......... .......... .......... 37% 232M 0s
#6 47.35 9600K .......... .......... .......... .......... .......... 37% 202M 0s
#6 47.35 9650K .......... .......... .......... .......... .......... 37% 9.48M 0s
#6 47.35 9700K .......... .......... .......... .......... .......... 37% 237M 0s
#6 47.35 9750K .......... .......... .......... .......... .......... 38% 266M 0s
#6 47.35 9800K .......... .......... .......... .......... .......... 38% 245M 0s
#6 47.35 9850K .......... .......... .......... .......... .......... 38% 239M 0s
#6 47.35 9900K .......... .......... .......... .......... .......... 38% 196M 0s
#6 47.35 9950K .......... .......... .......... .......... .......... 38% 133M 0s
#6 47.35 10000K .......... .......... .......... .......... .......... 39% 171M 0s
#6 47.35 10050K .......... .......... .......... .......... .......... 39% 74.8M 0s
#6 47.35 10100K .......... .......... .......... .......... .......... 39% 250M 0s
#6 47.35 10150K .......... .......... .......... .......... .......... 39% 163M 0s
#6 47.35 10200K .......... .......... .......... .......... .......... 39% 118M 0s
#6 47.35 10250K .......... .......... .......... .......... .......... 40% 243M 0s
#6 47.35 10300K .......... .......... .......... .......... .......... 40% 282M 0s
#6 47.36 10350K .......... .......... .......... .......... .......... 40% 208M 0s
#6 47.36 10400K .......... .......... .......... .......... .......... 40% 360M 0s
#6 47.36 10450K .......... .......... .......... .......... .......... 40% 353M 0s
#6 47.36 10500K .......... .......... .......... .......... .......... 41% 381M 0s
#6 47.36 10550K .......... .......... .......... .......... .......... 41% 336M 0s
#6 47.36 10600K .......... .......... .......... .......... .......... 41% 259M 0s
#6 47.36 10650K .......... .......... .......... .......... .......... 41% 195M 0s
#6 47.36 10700K .......... .......... .......... .......... .......... 41% 422M 0s
#6 47.36 10750K .......... .......... .......... .......... .......... 42% 375M 0s
#6 47.36 10800K .......... .......... .......... .......... .......... 42% 54.4M 0s
#6 47.36 10850K .......... .......... .......... .......... .......... 42% 71.2M 0s
#6 47.36 10900K .......... .......... .......... .......... .......... 42% 324M 0s
#6 47.36 10950K .......... .......... .......... .......... .......... 42% 85.2M 0s
#6 47.36 11000K .......... .......... .......... .......... .......... 43% 238M 0s
#6 47.36 11050K .......... .......... .......... .......... .......... 43% 394M 0s
#6 47.36 11100K .......... .......... .......... .......... .......... 43% 440M 0s
#6 47.36 11150K .......... .......... .......... .......... .......... 43% 36.8M 0s
#6 47.36 11200K .......... .......... .......... .......... .......... 43% 360M 0s
#6 47.36 11250K .......... .......... .......... .......... .......... 44% 318M 0s
#6 47.36 11300K .......... .......... .......... .......... .......... 44% 307M 0s
#6 47.36 11350K .......... .......... .......... .......... .......... 44% 187M 0s
#6 47.36 11400K .......... .......... .......... .......... .......... 44% 329M 0s
#6 47.36 11450K .......... .......... .......... .......... .......... 44% 37.4M 0s
#6 47.36 11500K .......... .......... .......... .......... .......... 44% 319M 0s
#6 47.36 11550K .......... .......... .......... .......... .......... 45% 348M 0s
#6 47.36 11600K .......... .......... .......... .......... .......... 45% 40.9M 0s
#6 47.36 11650K .......... .......... .......... .......... .......... 45% 268M 0s
#6 47.36 11700K .......... .......... .......... .......... .......... 45% 415M 0s
#6 47.36 11750K .......... .......... .......... .......... .......... 45% 193M 0s
#6 47.36 11800K .......... .......... .......... .......... .......... 46% 44.0M 0s
#6 47.37 11850K .......... .......... .......... .......... .......... 46% 239M 0s
#6 47.37 11900K .......... .......... .......... .......... .......... 46% 60.2M 0s
#6 47.37 11950K .......... .......... .......... .......... .......... 46% 51.7M 0s
#6 47.37 12000K .......... .......... .......... .......... .......... 46% 328M 0s
#6 47.37 12050K .......... .......... .......... .......... .......... 47% 354M 0s
#6 47.37 12100K .......... .......... .......... .......... .......... 47% 433M 0s
#6 47.37 12150K .......... .......... .......... .......... .......... 47% 82.2M 0s
#6 47.37 12200K .......... .......... .......... .......... .......... 47% 372M 0s
#6 47.37 12250K .......... .......... .......... .......... .......... 47% 375M 0s
#6 47.37 12300K .......... .......... .......... .......... .......... 48% 359M 0s
#6 47.37 12350K .......... .......... .......... .......... .......... 48% 34.3M 0s
#6 47.37 12400K .......... .......... .......... .......... .......... 48% 110M 0s
#6 47.37 12450K .......... .......... .......... .......... .......... 48% 337M 0s
#6 47.37 12500K .......... .......... .......... .......... .......... 48% 9.47M 0s
#6 47.38 12550K .......... .......... .......... .......... .......... 49% 212M 0s
#6 47.38 12600K .......... .......... .......... .......... .......... 49% 242M 0s
#6 47.38 12650K .......... .......... .......... .......... .......... 49% 105M 0s
#6 47.38 12700K .......... .......... .......... .......... .......... 49% 231M 0s
#6 47.38 12750K .......... .......... .......... .......... .......... 49% 213M 0s
#6 47.38 12800K .......... .......... .......... .......... .......... 50% 226M 0s
#6 47.38 12850K .......... .......... .......... .......... .......... 50% 198M 0s
#6 47.38 12900K .......... .......... .......... .......... .......... 50% 276M 0s
#6 47.38 12950K .......... .......... .......... .......... .......... 50% 230M 0s
#6 47.38 13000K .......... .......... .......... .......... .......... 50% 269M 0s
#6 47.38 13050K .......... .......... .......... .......... .......... 51% 222M 0s
#6 47.38 13100K .......... .......... .......... .......... .......... 51% 150M 0s
#6 47.38 13150K .......... .......... .......... .......... .......... 51% 130M 0s
#6 47.38 13200K .......... .......... .......... .......... .......... 51% 356M 0s
#6 47.38 13250K .......... .......... .......... .......... .......... 51% 102M 0s
#6 47.38 13300K .......... .......... .......... .......... .......... 51% 279M 0s
#6 47.38 13350K .......... .......... .......... .......... .......... 52% 367M 0s
#6 47.38 13400K .......... .......... .......... .......... .......... 52% 379M 0s
#6 47.38 13450K .......... .......... .......... .......... .......... 52% 219M 0s
#6 47.38 13500K .......... .......... .......... .......... .......... 52% 143M 0s
#6 47.38 13550K .......... .......... .......... .......... .......... 52% 269M 0s
#6 47.38 13600K .......... .......... .......... .......... .......... 53% 419M 0s
#6 47.38 13650K .......... .......... .......... .......... .......... 53% 55.0M 0s
#6 47.38 13700K .......... .......... .......... .......... .......... 53% 346M 0s
#6 47.38 13750K .......... .......... .......... .......... .......... 53% 388M 0s
#6 47.38 13800K .......... .......... .......... .......... .......... 53% 422M 0s
#6 47.38 13850K .......... .......... .......... .......... .......... 54% 110M 0s
#6 47.38 13900K .......... .......... .......... .......... .......... 54% 188M 0s
#6 47.38 13950K .......... .......... .......... .......... .......... 54% 114M 0s
#6 47.38 14000K .......... .......... .......... .......... .......... 54% 366M 0s
#6 47.38 14050K .......... .......... .......... .......... .......... 54% 34.8M 0s
#6 47.39 14100K .......... .......... .......... .......... .......... 55% 121M 0s
#6 47.39 14150K .......... .......... .......... .......... .......... 55% 178M 0s
#6 47.39 14200K .......... .......... .......... .......... .......... 55% 229M 0s
#6 47.39 14250K .......... .......... .......... .......... .......... 55% 256M 0s
#6 47.39 14300K .......... .......... .......... .......... .......... 55% 43.6M 0s
#6 47.39 14350K .......... .......... .......... .......... .......... 56% 202M 0s
#6 47.39 14400K .......... .......... .......... .......... .......... 56% 320M 0s
#6 47.39 14450K .......... .......... .......... .......... .......... 56% 322M 0s
#6 47.39 14500K .......... .......... .......... .......... .......... 56% 306M 0s
#6 47.39 14550K .......... .......... .......... .......... .......... 56% 46.2M 0s
#6 47.39 14600K .......... .......... .......... .......... .......... 57% 159M 0s
#6 47.39 14650K .......... .......... .......... .......... .......... 57% 150M 0s
#6 47.39 14700K .......... .......... .......... .......... .......... 57% 225M 0s
#6 47.39 14750K .......... .......... .......... .......... .......... 57% 58.3M 0s
#6 47.39 14800K .......... .......... .......... .......... .......... 57% 162M 0s
#6 47.39 14850K .......... .......... .......... .......... .......... 58% 188M 0s
#6 47.39 14900K .......... .......... .......... .......... .......... 58% 93.3M 0s
#6 47.39 14950K .......... .......... .......... .......... .......... 58% 144M 0s
#6 47.39 15000K .......... .......... .......... .......... .......... 58% 132M 0s
#6 47.39 15050K .......... .......... .......... .......... .......... 58% 50.6M 0s
#6 47.39 15100K .......... .......... .......... .......... .......... 59% 300M 0s
#6 47.39 15150K .......... .......... .......... .......... .......... 59% 307M 0s
#6 47.39 15200K .......... .......... .......... .......... .......... 59% 359M 0s
#6 47.39 15250K .......... .......... .......... .......... .......... 59% 416M 0s
#6 47.39 15300K .......... .......... .......... .......... .......... 59% 49.9M 0s
#6 47.40 15350K .......... .......... .......... .......... .......... 59% 57.2M 0s
#6 47.40 15400K .......... .......... .......... .......... .......... 60% 171M 0s
#6 47.40 15450K .......... .......... .......... .......... .......... 60% 176M 0s
#6 47.40 15500K .......... .......... .......... .......... .......... 60% 10.7M 0s
#6 47.40 15550K .......... .......... .......... .......... .......... 60% 193M 0s
#6 47.40 15600K .......... .......... .......... .......... .......... 60% 164M 0s
#6 47.40 15650K .......... .......... .......... .......... .......... 61% 265M 0s
#6 47.40 15700K .......... .......... .......... .......... .......... 61% 85.4M 0s
#6 47.40 15750K .......... .......... .......... .......... .......... 61% 82.0M 0s
#6 47.40 15800K .......... .......... .......... .......... .......... 61% 164M 0s
#6 47.40 15850K .......... .......... .......... .......... .......... 61% 385M 0s
#6 47.40 15900K .......... .......... .......... .......... .......... 62% 243M 0s
#6 47.40 15950K .......... .......... .......... .......... .......... 62% 180M 0s
#6 47.40 16000K .......... .......... .......... .......... .......... 62% 241M 0s
#6 47.40 16050K .......... .......... .......... .......... .......... 62% 230M 0s
#6 47.40 16100K .......... .......... .......... .......... .......... 62% 256M 0s
#6 47.41 16150K .......... .......... .......... .......... .......... 63% 205M 0s
#6 47.41 16200K .......... .......... .......... .......... .......... 63% 77.4M 0s
#6 47.41 16250K .......... .......... .......... .......... .......... 63% 219M 0s
#6 47.41 16300K .......... .......... .......... .......... .......... 63% 219M 0s
#6 47.41 16350K .......... .......... .......... .......... .......... 63% 177M 0s
#6 47.41 16400K .......... .......... .......... .......... .......... 64% 219M 0s
#6 47.41 16450K .......... .......... .......... .......... .......... 64% 228M 0s
#6 47.41 16500K .......... .......... .......... .......... .......... 64% 221M 0s
#6 47.41 16550K .......... .......... .......... .......... .......... 64% 89.2M 0s
#6 47.41 16600K .......... .......... .......... .......... .......... 64% 99.3M 0s
#6 47.41 16650K .......... .......... .......... .......... .......... 65% 182M 0s
#6 47.41 16700K .......... .......... .......... .......... .......... 65% 78.8M 0s
#6 47.41 16750K .......... .......... .......... .......... .......... 65% 209M 0s
#6 47.41 16800K .......... .......... .......... .......... .......... 65% 459M 0s
#6 47.41 16850K .......... .......... .......... .......... .......... 65% 410M 0s
#6 47.41 16900K .......... .......... .......... .......... .......... 66% 503M 0s
#6 47.41 16950K .......... .......... .......... .......... .......... 66% 310M 0s
#6 47.41 17000K .......... .......... .......... .......... .......... 66% 61.9M 0s
#6 47.41 17050K .......... .......... .......... .......... .......... 66% 217M 0s
#6 47.41 17100K .......... .......... .......... .......... .......... 66% 349M 0s
#6 47.41 17150K .......... .......... .......... .......... .......... 66% 98.2M 0s
#6 47.41 17200K .......... .......... .......... .......... .......... 67% 32.6M 0s
#6 47.41 17250K .......... .......... .......... .......... .......... 67% 228M 0s
#6 47.41 17300K .......... .......... .......... .......... .......... 67% 273M 0s
#6 47.41 17350K .......... .......... .......... .......... .......... 67% 266M 0s
#6 47.41 17400K .......... .......... .......... .......... .......... 67% 286M 0s
#6 47.41 17450K .......... .......... .......... .......... .......... 68% 51.4M 0s
#6 47.41 17500K .......... .......... .......... .......... .......... 68% 191M 0s
#6 47.42 17550K .......... .......... .......... .......... .......... 68% 135M 0s
#6 47.42 17600K .......... .......... .......... .......... .......... 68% 123M 0s
#6 47.42 17650K .......... .......... .......... .......... .......... 68% 92.5M 0s
#6 47.42 17700K .......... .......... .......... .......... .......... 69% 327M 0s
#6 47.42 17750K .......... .......... .......... .......... .......... 69% 284M 0s
#6 47.42 17800K .......... .......... .......... .......... .......... 69% 379M 0s
#6 47.42 17850K .......... .......... .......... .......... .......... 69% 38.0M 0s
#6 47.42 17900K .......... .......... .......... .......... .......... 69% 101M 0s
#6 47.42 17950K .......... .......... .......... .......... .......... 70% 114M 0s
#6 47.42 18000K .......... .......... .......... .......... .......... 70% 186M 0s
#6 47.42 18050K .......... .......... .......... .......... .......... 70% 120M 0s
#6 47.42 18100K .......... .......... .......... .......... .......... 70% 104M 0s
#6 47.42 18150K .......... .......... .......... .......... .......... 70% 135M 0s
#6 47.42 18200K .......... .......... .......... .......... .......... 71% 99.3M 0s
#6 47.42 18250K .......... .......... .......... .......... .......... 71% 329M 0s
#6 47.42 18300K .......... .......... .......... .......... .......... 71% 325M 0s
#6 47.42 18350K .......... .......... .......... .......... .......... 71% 95.5M 0s
#6 47.42 18400K .......... .......... .......... .......... .......... 71% 85.6M 0s
#6 47.42 18450K .......... .......... .......... .......... .......... 72% 48.1M 0s
#6 47.42 18500K .......... .......... .......... .......... .......... 72% 134M 0s
#6 47.42 18550K .......... .......... .......... .......... .......... 72% 14.4M 0s
#6 47.43 18600K .......... .......... .......... .......... .......... 72% 59.7M 0s
#6 47.43 18650K .......... .......... .......... .......... .......... 72% 360M 0s
#6 47.43 18700K .......... .......... .......... .......... .......... 73% 410M 0s
#6 47.43 18750K .......... .......... .......... .......... .......... 73% 233M 0s
#6 47.43 18800K .......... .......... .......... .......... .......... 73% 80.7M 0s
#6 47.43 18850K .......... .......... .......... .......... .......... 73% 133M 0s
#6 47.43 18900K .......... .......... .......... .......... .......... 73% 172M 0s
#6 47.43 18950K .......... .......... .......... .......... .......... 73% 168M 0s
#6 47.43 19000K .......... .......... .......... .......... .......... 74% 37.7M 0s
#6 47.43 19050K .......... .......... .......... .......... .......... 74% 213M 0s
#6 47.43 19100K .......... .......... .......... .......... .......... 74% 153M 0s
#6 47.43 19150K .......... .......... .......... .......... .......... 74% 142M 0s
#6 47.43 19200K .......... .......... .......... .......... .......... 74% 138M 0s
#6 47.43 19250K .......... .......... .......... .......... .......... 75% 304M 0s
#6 47.43 19300K .......... .......... .......... .......... .......... 75% 163M 0s
#6 47.43 19350K .......... .......... .......... .......... .......... 75% 106M 0s
#6 47.43 19400K .......... .......... .......... .......... .......... 75% 115M 0s
#6 47.43 19450K .......... .......... .......... .......... .......... 75% 319M 0s
#6 47.43 19500K .......... .......... .......... .......... .......... 76% 223M 0s
#6 47.43 19550K .......... .......... .......... .......... .......... 76% 78.2M 0s
#6 47.44 19600K .......... .......... .......... .......... .......... 76% 306M 0s
#6 47.44 19650K .......... .......... .......... .......... .......... 76% 212M 0s
#6 47.44 19700K .......... .......... .......... .......... .......... 76% 361M 0s
#6 47.44 19750K .......... .......... .......... .......... .......... 77% 132M 0s
#6 47.44 19800K .......... .......... .......... .......... .......... 77% 245M 0s
#6 47.44 19850K .......... .......... .......... .......... .......... 77% 141M 0s
#6 47.44 19900K .......... .......... .......... .......... .......... 77% 96.2M 0s
#6 47.44 19950K .......... .......... .......... .......... .......... 77% 160M 0s
#6 47.44 20000K .......... .......... .......... .......... .......... 78% 168M 0s
#6 47.44 20050K .......... .......... .......... .......... .......... 78% 120M 0s
#6 47.44 20100K .......... .......... .......... .......... .......... 78% 103M 0s
#6 47.44 20150K .......... .......... .......... .......... .......... 78% 265M 0s
#6 47.44 20200K .......... .......... .......... .......... .......... 78% 365M 0s
#6 47.44 20250K .......... .......... .......... .......... .......... 79% 236M 0s
#6 47.44 20300K .......... .......... .......... .......... .......... 79% 203M 0s
#6 47.44 20350K .......... .......... .......... .......... .......... 79% 43.9M 0s
#6 47.44 20400K .......... .......... .......... .......... .......... 79% 268M 0s
#6 47.44 20450K .......... .......... .......... .......... .......... 79% 254M 0s
#6 47.44 20500K .......... .......... .......... .......... .......... 80% 372M 0s
#6 47.44 20550K .......... .......... .......... .......... .......... 80% 61.3M 0s
#6 47.44 20600K .......... .......... .......... .......... .......... 80% 119M 0s
#6 47.44 20650K .......... .......... .......... .......... .......... 80% 169M 0s
#6 47.44 20700K .......... .......... .......... .......... .......... 80% 221M 0s
#6 47.44 20750K .......... .......... .......... .......... .......... 81% 63.3M 0s
#6 47.44 20800K .......... .......... .......... .......... .......... 81% 209M 0s
#6 47.44 20850K .......... .......... .......... .......... .......... 81% 136M 0s
#6 47.44 20900K .......... .......... .......... .......... .......... 81% 105M 0s
#6 47.44 20950K .......... .......... .......... .......... .......... 81% 164M 0s
#6 47.44 21000K .......... .......... .......... .......... .......... 81% 81.1M 0s
#6 47.45 21050K .......... .......... .......... .......... .......... 82% 62.5M 0s
#6 47.45 21100K .......... .......... .......... .......... .......... 82% 119M 0s
#6 47.45 21150K .......... .......... .......... .......... .......... 82% 121M 0s
#6 47.45 21200K .......... .......... .......... .......... .......... 82% 71.7M 0s
#6 47.45 21250K .......... .......... .......... .......... .......... 82% 110M 0s
#6 47.45 21300K .......... .......... .......... .......... .......... 83% 170M 0s
#6 47.45 21350K .......... .......... .......... .......... .......... 83% 85.3M 0s
#6 47.45 21400K .......... .......... .......... .......... .......... 83% 76.1M 0s
#6 47.45 21450K .......... .......... .......... .......... .......... 83% 93.2M 0s
#6 47.45 21500K .......... .......... .......... .......... .......... 83% 22.4M 0s
#6 47.45 21550K .......... .......... .......... .......... .......... 84% 111M 0s
#6 47.45 21600K .......... .......... .......... .......... .......... 84% 240M 0s
#6 47.45 21650K .......... .......... .......... .......... .......... 84% 49.8M 0s
#6 47.45 21700K .......... .......... .......... .......... .......... 84% 184M 0s
#6 47.45 21750K .......... .......... .......... .......... .......... 84% 169M 0s
#6 47.45 21800K .......... .......... .......... .......... .......... 85% 187M 0s
#6 47.45 21850K .......... .......... .......... .......... .......... 85% 241M 0s
#6 47.45 21900K .......... .......... .......... .......... .......... 85% 31.8M 0s
#6 47.46 21950K .......... .......... .......... .......... .......... 85% 97.3M 0s
#6 47.46 22000K .......... .......... .......... .......... .......... 85% 200M 0s
#6 47.46 22050K .......... .......... .......... .......... .......... 86% 282M 0s
#6 47.46 22100K .......... .......... .......... .......... .......... 86% 268M 0s
#6 47.46 22150K .......... .......... .......... .......... .......... 86% 241M 0s
#6 47.46 22200K .......... .......... .......... .......... .......... 86% 90.6M 0s
#6 47.46 22250K .......... .......... .......... .......... .......... 86% 195M 0s
#6 47.46 22300K .......... .......... .......... .......... .......... 87% 272M 0s
#6 47.46 22350K .......... .......... .......... .......... .......... 87% 176M 0s
#6 47.46 22400K .......... .......... .......... .......... .......... 87% 243M 0s
#6 47.46 22450K .......... .......... .......... .......... .......... 87% 231M 0s
#6 47.46 22500K .......... .......... .......... .......... .......... 87% 216M 0s
#6 47.46 22550K .......... .......... .......... .......... .......... 88% 111M 0s
#6 47.46 22600K .......... .......... .......... .......... .......... 88% 37.6M 0s
#6 47.46 22650K .......... .......... .......... .......... .......... 88% 228M 0s
#6 47.46 22700K .......... .......... .......... .......... .......... 88% 173M 0s
#6 47.46 22750K .......... .......... .......... .......... .......... 88% 165M 0s
#6 47.46 22800K .......... .......... .......... .......... .......... 88% 201M 0s
#6 47.46 22850K .......... .......... .......... .......... .......... 89% 201M 0s
#6 47.46 22900K .......... .......... .......... .......... .......... 89% 245M 0s
#6 47.46 22950K .......... .......... .......... .......... .......... 89% 88.6M 0s
#6 47.46 23000K .......... .......... .......... .......... .......... 89% 197M 0s
#6 47.46 23050K .......... .......... .......... .......... .......... 89% 231M 0s
#6 47.46 23100K .......... .......... .......... .......... .......... 90% 203M 0s
#6 47.46 23150K .......... .......... .......... .......... .......... 90% 203M 0s
#6 47.46 23200K .......... .......... .......... .......... .......... 90% 249M 0s
#6 47.46 23250K .......... .......... .......... .......... .......... 90% 263M 0s
#6 47.46 23300K .......... .......... .......... .......... .......... 90% 40.7M 0s
#6 47.47 23350K .......... .......... .......... .......... .......... 91% 180M 0s
#6 47.47 23400K .......... .......... .......... .......... .......... 91% 262M 0s
#6 47.47 23450K .......... .......... .......... .......... .......... 91% 251M 0s
#6 47.47 23500K .......... .......... .......... .......... .......... 91% 77.5M 0s
#6 47.47 23550K .......... .......... .......... .......... .......... 91% 180M 0s
#6 47.47 23600K .......... .......... .......... .......... .......... 92% 255M 0s
#6 47.47 23650K .......... .......... .......... .......... .......... 92% 75.6M 0s
#6 47.47 23700K .......... .......... .......... .......... .......... 92% 189M 0s
#6 47.47 23750K .......... .......... .......... .......... .......... 92% 188M 0s
#6 47.47 23800K .......... .......... .......... .......... .......... 92% 243M 0s
#6 47.47 23850K .......... .......... .......... .......... .......... 93% 57.7M 0s
#6 47.47 23900K .......... .......... .......... .......... .......... 93% 69.2M 0s
#6 47.47 23950K .......... .......... .......... .......... .......... 93% 73.7M 0s
#6 47.47 24000K .......... .......... .......... .......... .......... 93% 54.9M 0s
#6 47.47 24050K .......... .......... .......... .......... .......... 93% 207M 0s
#6 47.47 24100K .......... .......... .......... .......... .......... 94% 200M 0s
#6 47.47 24150K .......... .......... .......... .......... .......... 94% 193M 0s
#6 47.47 24200K .......... .......... .......... .......... .......... 94% 236M 0s
#6 47.47 24250K .......... .......... .......... .......... .......... 94% 222M 0s
#6 47.47 24300K .......... .......... .......... .......... .......... 94% 42.8M 0s
#6 47.47 24350K .......... .......... .......... .......... .......... 95% 101M 0s
#6 47.47 24400K .......... .......... .......... .......... .......... 95% 18.7M 0s
#6 47.48 24450K .......... .......... .......... .......... .......... 95% 278M 0s
#6 47.48 24500K .......... .......... .......... .......... .......... 95% 106M 0s
#6 47.48 24550K .......... .......... .......... .......... .......... 95% 166M 0s
#6 47.48 24600K .......... .......... .......... .......... .......... 95% 105M 0s
#6 47.48 24650K .......... .......... .......... .......... .......... 96% 149M 0s
#6 47.48 24700K .......... .......... .......... .......... .......... 96% 151M 0s
#6 47.48 24750K .......... .......... .......... .......... .......... 96% 83.7M 0s
#6 47.48 24800K .......... .......... .......... .......... .......... 96% 34.1M 0s
#6 47.48 24850K .......... .......... .......... .......... .......... 96% 210M 0s
#6 47.48 24900K .......... .......... .......... .......... .......... 97% 99.5M 0s
#6 47.48 24950K .......... .......... .......... .......... .......... 97% 228M 0s
#6 47.48 25000K .......... .......... .......... .......... .......... 97% 177M 0s
#6 47.48 25050K .......... .......... .......... .......... .......... 97% 190M 0s
#6 47.48 25100K .......... .......... .......... .......... .......... 97% 196M 0s
#6 47.48 25150K .......... .......... .......... .......... .......... 98% 117M 0s
#6 47.48 25200K .......... .......... .......... .......... .......... 98% 126M 0s
#6 47.48 25250K .......... .......... .......... .......... .......... 98% 176M 0s
#6 47.48 25300K .......... .......... .......... .......... .......... 98% 175M 0s
#6 47.48 25350K .......... .......... .......... .......... .......... 98% 208M 0s
#6 47.48 25400K .......... .......... .......... .......... .......... 99% 371M 0s
#6 47.48 25450K .......... .......... .......... .......... .......... 99% 202M 0s
#6 47.49 25500K .......... .......... .......... .......... .......... 99% 149M 0s
#6 47.49 25550K .......... .......... .......... .......... .......... 99% 57.3M 0s
#6 47.49 25600K .......... .......... .......... .......... .......... 99% 329M 0s
#6 47.49 25650K .......... .......... ....... 100% 221M=0.4s
#6 47.49
#6 47.49 2024-01-30 14:19:19 (69.4 MB/s) - 'Python-3.9.18.tgz' saved [26294072/26294072]
#6 47.49
#6 48.38 Loaded plugins: fastestmirror, ovl
#6 48.44 Cleaning repos: base extras updates
#6 48.47 Cleaning up list of fastest mirrors
#6 DONE 61.0s
#7 [builder 3/4] WORKDIR /Python-3.9.18
#7 DONE 0.2s
#8 [builder 4/4] RUN ./configure --enable-optimizations && make altinstall && cd ../ && rm -rf /Python-3.9.18
#8 0.306 checking build system type... x86_64-pc-linux-gnu
#8 0.348 checking host system type... x86_64-pc-linux-gnu
#8 0.349 checking for python3.9... no
#8 0.349 checking for python3... no
#8 0.350 checking for python... python
#8 0.355 checking for --enable-universalsdk... no
#8 0.356 checking for --with-universal-archs... no
#8 0.358 checking MACHDEP... "linux"
#8 0.365 checking for gcc... gcc
#8 0.381 checking whether the C compiler works... yes
#8 0.411 checking for C compiler default output file name... a.out
#8 0.412 checking for suffix of executables...
#8 0.443 checking whether we are cross compiling... no
#8 0.476 checking for suffix of object files... o
#8 0.493 checking whether we are using the GNU C compiler... yes
#8 0.514 checking whether gcc accepts -g... yes
#8 0.532 checking for gcc option to accept ISO C89... none needed
#8 0.554 checking how to run the C preprocessor... gcc -E
#8 0.595 checking for grep that handles long lines and -e... /usr/bin/grep
#8 0.597 checking for a sed that does not truncate output... /usr/bin/sed
#8 0.601 checking for --with-cxx-main=<compiler>... no
#8 0.603 checking for g++... no
#8 0.604 configure:
#8 0.604
#8 0.604 By default, distutils will build C++ extension modules with "g++".
#8 0.604 If this is not intended, then set CXX on the configure command line.
#8 0.604
#8 0.604 checking for the platform triplet based on compiler characteristics... x86_64-linux-gnu
#8 0.612 checking for multiarch...
#8 0.614 checking for -Wl,--no-as-needed... yes
#8 0.645 checking for egrep... /usr/bin/grep -E
#8 0.646 checking for ANSI C header files... yes
#8 0.724 checking for sys/types.h... yes
#8 0.752 checking for sys/stat.h... yes
#8 0.779 checking for stdlib.h... yes
#8 0.813 checking for string.h... yes
#8 0.841 checking for memory.h... yes
#8 0.869 checking for strings.h... yes
#8 0.901 checking for inttypes.h... yes
#8 0.931 checking for stdint.h... yes
#8 0.976 checking for unistd.h... yes
#8 1.004 checking minix/config.h usability... no
#8 1.070 checking minix/config.h presence... no
#8 1.083 checking for minix/config.h... no
#8 1.083 checking whether it is safe to define __EXTENSIONS__... yes
#8 1.113 checking for the Android API level... not Android
#8 1.120 checking for --with-suffix...
#8 1.120 checking for case-insensitive build directory... no
#8 1.122 checking LIBRARY... libpython$(VERSION)$(ABIFLAGS).a
#8 1.122 checking LINKCC... $(PURIFY) $(MAINCC)
#8 1.122 checking EXPORTSYMS...
#8 1.123 checking for GNU ld... yes
#8 1.126 checking for --enable-shared... no
#8 1.126 checking for --enable-profiling... no
#8 1.126 checking LDLIBRARY... libpython$(VERSION)$(ABIFLAGS).a
#8 1.127 checking for ar... ar
#8 1.128 checking for readelf... readelf
#8 1.128 checking for a BSD-compatible install... /usr/bin/install -c
#8 1.134 checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
#8 1.136 checking for --with-pydebug... no
#8 1.136 checking for --with-trace-refs... no
#8 1.137 checking for --with-assertions... no
#8 1.137 checking for --enable-optimizations... yes
#8 1.138 checking PROFILE_TASK... -m test --pgo
#8 1.138 checking for --with-lto... no
#8 1.139 checking for llvm-profdata... no
#8 1.154 checking for -Wextra... yes
#8 1.177 checking whether gcc accepts and needs -fno-strict-aliasing... no
#8 1.210 checking if we can turn off gcc unused result warning... yes
#8 1.226 checking if we can turn off gcc unused parameter warning... yes
#8 1.243 checking if we can turn off gcc missing field initializers warning... yes
#8 1.259 checking if we can turn on gcc mixed sign comparison warning... yes
#8 1.287 checking if we can turn on gcc unreachable code warning... no
#8 1.305 checking if we can turn on gcc strict-prototypes warning... no
#8 1.322 checking if we can make implicit function declaration an error in gcc... yes
#8 1.347 checking if we can use visibility in gcc... yes
#8 1.365 checking whether pthreads are available without options... no
#8 1.419 checking whether gcc accepts -Kpthread... no
#8 1.425 checking whether gcc accepts -Kthread... no
#8 1.431 checking whether gcc accepts -pthread... yes
#8 1.469 checking whether g++ also accepts flags for thread support... no
#8 1.471 checking for ANSI C header files... (cached) yes
#8 1.475 checking asm/types.h usability... yes
#8 1.499 checking asm/types.h presence... yes
#8 1.506 checking for asm/types.h... yes
#8 1.511 checking crypt.h usability... yes
#8 1.536 checking crypt.h presence... yes
#8 1.543 checking for crypt.h... yes
#8 1.549 checking conio.h usability... no
#8 1.614 checking conio.h presence... no
#8 1.625 checking for conio.h... no
#8 1.628 checking direct.h usability... no
#8 1.698 checking direct.h presence... no
#8 1.708 checking for direct.h... no
#8 1.710 checking dlfcn.h usability... yes
#8 1.736 checking dlfcn.h presence... yes
#8 1.744 checking for dlfcn.h... yes
#8 1.749 checking errno.h usability... yes
#8 1.781 checking errno.h presence... yes
#8 1.788 checking for errno.h... yes
#8 1.794 checking fcntl.h usability... yes
#8 1.821 checking fcntl.h presence... yes
#8 1.831 checking for fcntl.h... yes
#8 1.837 checking grp.h usability... yes
#8 1.862 checking grp.h presence... yes
#8 1.870 checking for grp.h... yes
#8 1.876 checking ieeefp.h usability... no
#8 1.941 checking ieeefp.h presence... no
#8 1.952 checking for ieeefp.h... no
#8 1.954 checking io.h usability... no
#8 2.020 checking io.h presence... no
#8 2.030 checking for io.h... no
#8 2.033 checking langinfo.h usability... yes
#8 2.059 checking langinfo.h presence... yes
#8 2.066 checking for langinfo.h... yes
#8 2.072 checking libintl.h usability... yes
#8 2.096 checking libintl.h presence... yes
#8 2.103 checking for libintl.h... yes
#8 2.108 checking process.h usability... no
#8 2.174 checking process.h presence... no
#8 2.184 checking for process.h... no
#8 2.186 checking pthread.h usability... yes
#8 2.213 checking pthread.h presence... yes
#8 2.223 checking for pthread.h... yes
#8 2.229 checking sched.h usability... yes
#8 2.254 checking sched.h presence... yes
#8 2.262 checking for sched.h... yes
#8 2.268 checking shadow.h usability... yes
#8 2.293 checking shadow.h presence... yes
#8 2.301 checking for shadow.h... yes
#8 2.307 checking signal.h usability... yes
#8 2.334 checking signal.h presence... yes
#8 2.342 checking for signal.h... yes
#8 2.348 checking stropts.h usability... no
#8 2.415 checking stropts.h presence... no
#8 2.424 checking for stropts.h... no
#8 2.427 checking termios.h usability... yes
#8 2.453 checking termios.h presence... yes
#8 2.460 checking for termios.h... yes
#8 2.466 checking utime.h usability... yes
#8 2.490 checking utime.h presence... yes
#8 2.498 checking for utime.h... yes
#8 2.503 checking poll.h usability... yes
#8 2.528 checking poll.h presence... yes
#8 2.535 checking for poll.h... yes
#8 2.541 checking sys/devpoll.h usability... no
#8 2.609 checking sys/devpoll.h presence... no
#8 2.619 checking for sys/devpoll.h... no
#8 2.622 checking sys/epoll.h usability... yes
#8 2.647 checking sys/epoll.h presence... yes
#8 2.655 checking for sys/epoll.h... yes
#8 2.661 checking sys/poll.h usability... yes
#8 2.687 checking sys/poll.h presence... yes
#8 2.695 checking for sys/poll.h... yes
#8 2.701 checking sys/audioio.h usability... no
#8 2.771 checking sys/audioio.h presence... no
#8 2.781 checking for sys/audioio.h... no
#8 2.783 checking sys/xattr.h usability... yes
#8 2.809 checking sys/xattr.h presence... yes
#8 2.817 checking for sys/xattr.h... yes
#8 2.823 checking sys/bsdtty.h usability... no
#8 2.897 checking sys/bsdtty.h presence... no
#8 2.907 checking for sys/bsdtty.h... no
#8 2.910 checking sys/event.h usability... no
#8 2.981 checking sys/event.h presence... no
#8 2.992 checking for sys/event.h... no
#8 2.995 checking sys/file.h usability... yes
#8 3.022 checking sys/file.h presence... yes
#8 3.032 checking for sys/file.h... yes
#8 3.038 checking sys/ioctl.h usability... yes
#8 3.064 checking sys/ioctl.h presence... yes
#8 3.071 checking for sys/ioctl.h... yes
#8 3.077 checking sys/kern_control.h usability... no
#8 3.143 checking sys/kern_control.h presence... no
#8 3.154 checking for sys/kern_control.h... no
#8 3.157 checking sys/loadavg.h usability... no
#8 3.225 checking sys/loadavg.h presence... no
#8 3.235 checking for sys/loadavg.h... no
#8 3.238 checking sys/lock.h usability... no
#8 3.306 checking sys/lock.h presence... no
#8 3.315 checking for sys/lock.h... no
#8 3.318 checking sys/mkdev.h usability... no
#8 3.387 checking sys/mkdev.h presence... no