view log » | |
flutter | view log » |
configure | view log » |
build | view log » |
analyze | view log » |
deploy | view 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 |
[#1274272] 2024/07/12 07:14:14 Booting image archlinux (default) on port 22744 [#1274272] 2024/07/12 07:14:14 Waiting for guest to settle [#1274272] 2024/07/12 07:14:22 Sending tasks [#1274272] 2024/07/12 07:14:25 Sending build environment [#1274272] 2024/07/12 07:14:25 Sending secrets [#1274272] 2024/07/12 07:14:25 Resolving secret 77c7956b-003e-44f7-bb5c-2944b2047654 [#1274272] 2024/07/12 07:14:26 Resolving secret 6d21b97d-cd64-4490-b325-acf8b05a542f [#1274272] 2024/07/12 07:14:27 Resolving secret 431b0b53-2af2-441b-b879-86c5913bab4d [#1274272] 2024/07/12 07:14:28 Resolving secret 4e454305-057f-44c3-9a4e-eeb74d54545b [#1274272] 2024/07/12 07:14:28 Resolving secret a76ea4e0-b264-4b32-b701-7cadf78b3230 [#1274272] 2024/07/12 07:14:29 Installing packages Warning: Permanently added '[localhost]:22744' (ED25519) to the list of known hosts. :: Synchronizing package databases... core downloading... extra downloading... multilib downloading... resolving dependencies... looking for conflicting packages... Packages (1) archlinux-keyring-20240709-1 Total Download Size: 1.17 MiB Total Installed Size: 1.67 MiB Net Upgrade Size: 0.01 MiB :: Proceed with installation? [Y/n] :: Retrieving packages... archlinux-keyring-20240709-1-any downloading... checking keyring... checking package integrity... loading package files... checking for file conflicts... checking available disk space... :: Processing package changes... upgrading archlinux-keyring... ==> Appending keys from archlinux.gpg... ==> Updating trust database... gpg: next trustdb check due at 2024-11-09 :: Running post-transaction hooks... (1/2) Reloading system manager configuration... (2/2) Arming ConditionNeedsUpdate... Warning: Permanently added '[localhost]:22744' (ED25519) to the list of known hosts. linux: ignoring package upgrade (6.9.7.arch1-1 => 6.9.8.arch1-1) Resolving dependencies... Checking package conflicts... installing core/iana-etc (20240412-1 -> 20240612-1) installing core/bash (5.2.026-2 -> 5.2.026-5) installing core/libtasn1 (4.19.0-1 -> 4.19.0-2) installing core/libp11-kit (0.25.3-1 -> 0.25.5-1) installing extra/lmdb (0.9.32-1) installing core/util-linux-libs (2.40.1-1 -> 2.40.2-1) installing core/gdbm (1.23-2 -> 1.24-1) installing core/krb5 (1.21.2-2 -> 1.21.3-1) installing core/systemd-libs (256.1-1 -> 256.2-1) installing core/p11-kit (0.25.3-1 -> 0.25.5-1) installing core/ca-certificates-mozilla (3.101.1-1 -> 3.102-1) installing core/glib2 (2.80.3-2 -> 2.80.4-1) installing core/gnutls (3.8.5-1 -> 3.8.6-1) installing core/hwdata (0.383-1 -> 0.384-1) installing core/iptables (1:1.8.10-1 -> 1:1.8.10-2) installing core/libbpf (1.4.2-1 -> 1.4.3-1) installing core/iproute2 (6.9.0-1 -> 6.9.0-2) installing core/json-c (0.17-1 -> 0.17-2) installing core/libmpc (1.3.1-1 -> 1.3.1-2) installing core/libxml2 (2.13.1-1 -> 2.13.2-1) installing extra/mercurial (6.7.4-1 -> 6.8-1) installing core/pinentry (1.3.0-1 -> 1.3.1-2) installing core/shadow (4.15.1-2 -> 4.16.0-1) installing core/util-linux (2.40.1-1 -> 2.40.2-1) installing core/systemd (256.1-1 -> 256.2-1) installing core/systemd-sysvcompat (256.1-1 -> 256.2-1) Download Size: 36.94 M Installed Size: 174.08 M Size Delta: 73.50 K Downloading packages... (1/1) systemd-256.2-1-x86_64.pkg.tar.zst (0) (1/5) systemd-256.2-1-x86_64.pkg.tar.zst (32523/8871245) 0% glib2-2.80.4-1-x86_64.pkg.tar.zst (5088431/5088431) 100% (2/5) mercurial-6.8-1-x86_64.pkg.tar.zst (868107/6044724) 14% util-linux-2.40.2-1-x86_64.pkg.tar.zst (3004316/3004316) 100% (3/5) gnutls-3.8.6-1-x86_64.pkg.tar.zst (1736459/2870323) 60% glib2-2.80.4-1-x86_64.pkg.tar.zst.sig (119/119) 100% (4/4) util-linux-2.40.2-1-x86_64.pkg.tar.zst.sig (0) gnutls-3.8.6-1-x86_64.pkg.tar.zst (2870323/2870323) 100% (5/5) gnutls-3.8.6-1-x86_64.pkg.tar.zst.sig (0) util-linux-2.40.2-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/4) systemd-256.2-1-x86_64.pkg.tar.zst (4210443/8871245) 47% gnutls-3.8.6-1-x86_64.pkg.tar.zst.sig (310/310) 100% (2/4) mercurial-6.8-1-x86_64.pkg.tar.zst (3489547/6044724) 57% bash-5.2.026-5-x86_64.pkg.tar.zst (1899348/1899348) 100% (3/5) hwdata-0.384-1-any.pkg.tar.zst (0) systemd-256.2-1-x86_64.pkg.tar.zst (8871245/8871245) 100% (4/5) bash-5.2.026-5-x86_64.pkg.tar.zst.sig (0) hwdata-0.384-1-any.pkg.tar.zst (1670990/1670990) 100% (5/5) hwdata-0.384-1-any.pkg.tar.zst.sig (0) mercurial-6.8-1-x86_64.pkg.tar.zst (6044724/6044724) 100% (1/5) krb5-1.21.3-1-x86_64.pkg.tar.zst (0) bash-5.2.026-5-x86_64.pkg.tar.zst.sig (310/310) 100% (2/4) systemd-256.2-1-x86_64.pkg.tar.zst.sig (0) krb5-1.21.3-1-x86_64.pkg.tar.zst (1341537/1341537) 100% (3/5) mercurial-6.8-1-x86_64.pkg.tar.zst.sig (0) systemd-256.2-1-x86_64.pkg.tar.zst.sig (119/119) 100% (4/4) krb5-1.21.3-1-x86_64.pkg.tar.zst.sig (0) hwdata-0.384-1-any.pkg.tar.zst.sig (310/310) 100% (1/4) mercurial-6.8-1-x86_64.pkg.tar.zst.sig (0) mercurial-6.8-1-x86_64.pkg.tar.zst.sig (566/566) 100% (2/4) krb5-1.21.3-1-x86_64.pkg.tar.zst.sig (0) shadow-4.16.0-1-x86_64.pkg.tar.zst (1279760/1279760) 100% (3/5) iproute2-6.9.0-2-x86_64.pkg.tar.zst (0) krb5-1.21.3-1-x86_64.pkg.tar.zst.sig (566/566) 100% (4/4) shadow-4.16.0-1-x86_64.pkg.tar.zst.sig (0) systemd-libs-256.2-1-x86_64.pkg.tar.zst (1157271/1157271) 100% (5/5) systemd-libs-256.2-1-x86_64.pkg.tar.zst.sig (0) iproute2-6.9.0-2-x86_64.pkg.tar.zst (1149364/1149364) 100% (1/5) libxml2-2.13.2-1-x86_64.pkg.tar.zst (32525/837638) 3% libxml2-2.13.2-1-x86_64.pkg.tar.zst (837638/837638) 100% (2/5) util-linux-libs-2.40.2-1-x86_64.pkg.tar.zst (0) shadow-4.16.0-1-x86_64.pkg.tar.zst.sig (119/119) 100% (3/4) iproute2-6.9.0-2-x86_64.pkg.tar.zst.sig (0) util-linux-libs-2.40.2-1-x86_64.pkg.tar.zst (485371/485371) 100% (4/5) libp11-kit-0.25.5-1-x86_64.pkg.tar.zst (0) systemd-libs-256.2-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/4) iproute2-6.9.0-2-x86_64.pkg.tar.zst.sig (119/119) 100% iproute2-6.9.0-2-x86_64.pkg.tar.zst.sig (119/119) 100% (2/3) libp11-kit-0.25.5-1-x86_64.pkg.tar.zst (0) libxml2-2.13.2-1-x86_64.pkg.tar.zst.sig (119/119) 100% (3/4) iptables-1:1.8.10-2-x86_64.pkg.tar.zst (0) libp11-kit-0.25.5-1-x86_64.pkg.tar.zst (467850/467850) 100% (4/5) ca-certificates-mozilla-3.102-1-x86_64.pkg.tar.zst (0) util-linux-libs-2.40.2-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/4) iptables-1:1.8.10-2-x86_64.pkg.tar.zst (0) iptables-1:1.8.10-2-x86_64.pkg.tar.zst (431631/431631) 100% (2/5) ca-certificates-mozilla-3.102-1-x86_64.pkg.tar.zst (0) iana-etc-20240612-1-any.pkg.tar.zst (407120/407120) 100% (3/5) libbpf-1.4.3-1-x86_64.pkg.tar.zst (0) ca-certificates-mozilla-3.102-1-x86_64.pkg.tar.zst (384281/384281) 100% (4/5) iana-etc-20240612-1-any.pkg.tar.zst.sig (0) libp11-kit-0.25.5-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/4) libbpf-1.4.3-1-x86_64.pkg.tar.zst (0) libbpf-1.4.3-1-x86_64.pkg.tar.zst (260205/260205) 100% (2/5) iana-etc-20240612-1-any.pkg.tar.zst.sig (0) iptables-1:1.8.10-2-x86_64.pkg.tar.zst.sig (119/119) 100% (3/4) gdbm-1.24-1-x86_64.pkg.tar.zst (0) iana-etc-20240612-1-any.pkg.tar.zst.sig (310/310) 100% (4/4) p11-kit-0.25.5-1-x86_64.pkg.tar.zst (0) ca-certificates-mozilla-3.102-1-x86_64.pkg.tar.zst.sig (119/119) 100% (1/4) gdbm-1.24-1-x86_64.pkg.tar.zst (0) gdbm-1.24-1-x86_64.pkg.tar.zst (253051/253051) 100% (2/5) p11-kit-0.25.5-1-x86_64.pkg.tar.zst (0) libbpf-1.4.3-1-x86_64.pkg.tar.zst.sig (566/566) 100% (3/4) libtasn1-4.19.0-2-x86_64.pkg.tar.zst (0) p11-kit-0.25.5-1-x86_64.pkg.tar.zst (228359/228359) 100% (4/5) lmdb-0.9.32-1-x86_64.pkg.tar.zst (0) pinentry-1.3.1-2-x86_64.pkg.tar.zst (188801/188801) 100% (5/5) pinentry-1.3.1-2-x86_64.pkg.tar.zst.sig (0) libtasn1-4.19.0-2-x86_64.pkg.tar.zst (140316/140316) 100% (1/5) gdbm-1.24-1-x86_64.pkg.tar.zst.sig (0) gdbm-1.24-1-x86_64.pkg.tar.zst.sig (119/119) 100% (2/4) p11-kit-0.25.5-1-x86_64.pkg.tar.zst.sig (0) lmdb-0.9.32-1-x86_64.pkg.tar.zst (116407/116407) 100% (3/4) libtasn1-4.19.0-2-x86_64.pkg.tar.zst.sig (0) p11-kit-0.25.5-1-x86_64.pkg.tar.zst.sig (119/119) 100% (4/4) libmpc-1.3.1-2-x86_64.pkg.tar.zst (0) pinentry-1.3.1-2-x86_64.pkg.tar.zst.sig (566/566) 100% (1/4) libtasn1-4.19.0-2-x86_64.pkg.tar.zst.sig (0) libtasn1-4.19.0-2-x86_64.pkg.tar.zst.sig (310/310) 100% (2/4) libmpc-1.3.1-2-x86_64.pkg.tar.zst (0) libmpc-1.3.1-2-x86_64.pkg.tar.zst (87214/87214) 100% (3/4) systemd-sysvcompat-256.2-1-x86_64.pkg.tar.zst (0) lmdb-0.9.32-1-x86_64.pkg.tar.zst.sig (566/566) 100% (1/3) json-c-0.17-2-x86_64.pkg.tar.zst (0) json-c-0.17-2-x86_64.pkg.tar.zst (58957/58957) 100% (2/3) libmpc-1.3.1-2-x86_64.pkg.tar.zst.sig (0) systemd-sysvcompat-256.2-1-x86_64.pkg.tar.zst (6171/6171) 100% (3/3) systemd-sysvcompat-256.2-1-x86_64.pkg.tar.zst.sig (0) libmpc-1.3.1-2-x86_64.pkg.tar.zst.sig (310/310) 100% (1/2) json-c-0.17-2-x86_64.pkg.tar.zst.sig (0) json-c-0.17-2-x86_64.pkg.tar.zst.sig (119/119) 100% (1/1) systemd-sysvcompat-256.2-1-x86_64.pkg.tar.zst.sig (0) systemd-sysvcompat-256.2-1-x86_64.pkg.tar.zst.sig (119/119) 100% checking keys in keyring (0/26) 0% checking keys in keyring (1/26) 3% checking keys in keyring (2/26) 7% checking keys in keyring (3/26) 11% checking keys in keyring (4/26) 15% checking keys in keyring (5/26) 19% checking keys in keyring (6/26) 23% checking keys in keyring (7/26) 26% checking keys in keyring (8/26) 30% checking keys in keyring (9/26) 34% checking keys in keyring (10/26) 38% checking keys in keyring (11/26) 42% checking keys in keyring (12/26) 46% checking keys in keyring (13/26) 50% checking keys in keyring (14/26) 53% checking keys in keyring (15/26) 57% checking keys in keyring (16/26) 61% checking keys in keyring (17/26) 65% checking keys in keyring (18/26) 69% checking keys in keyring (19/26) 73% checking keys in keyring (20/26) 76% checking keys in keyring (21/26) 80% checking keys in keyring (22/26) 84% checking keys in keyring (23/26) 88% checking keys in keyring (24/26) 92% checking keys in keyring (25/26) 96% checking keys in keyring (26/26) 100% checking package integrity (0/26) 0% checking package integrity (1/26) 1% checking package integrity (2/26) 5% checking package integrity (3/26) 6% checking package integrity (4/26) 7% checking package integrity (6/26) 9% checking package integrity (8/26) 13% checking package integrity (9/26) 16% checking package integrity (11/26) 17% checking package integrity (12/26) 30% checking package integrity (13/26) 38% checking package integrity (14/26) 42% checking package integrity (15/26) 43% checking package integrity (16/26) 44% checking package integrity (17/26) 47% checking package integrity (20/26) 49% checking package integrity (21/26) 65% checking package integrity (22/26) 66% checking package integrity (23/26) 69% checking package integrity (24/26) 77% checking package integrity (25/26) 99% checking package integrity (26/26) 100% loading package files (0/26) 0% loading package files (1/26) 1% loading package files (2/26) 5% loading package files (3/26) 6% loading package files (4/26) 7% loading package files (6/26) 9% loading package files (8/26) 13% loading package files (9/26) 16% loading package files (11/26) 17% loading package files (12/26) 30% loading package files (13/26) 38% loading package files (14/26) 42% loading package files (15/26) 43% loading package files (16/26) 44% loading package files (17/26) 47% loading package files (20/26) 49% loading package files (21/26) 65% loading package files (22/26) 66% loading package files (23/26) 69% loading package files (24/26) 77% loading package files (25/26) 99% loading package files (26/26) 100% checking for file conflicts (0/26) 0% checking for file conflicts (1/26) 3% checking for file conflicts (2/26) 7% checking for file conflicts (3/26) 11% checking for file conflicts (4/26) 15% checking for file conflicts (5/26) 19% checking for file conflicts (6/26) 23% checking for file conflicts (7/26) 26% checking for file conflicts (8/26) 30% checking for file conflicts (9/26) 34% checking for file conflicts (10/26) 38% checking for file conflicts (11/26) 42% checking for file conflicts (12/26) 46% checking for file conflicts (13/26) 50% checking for file conflicts (14/26) 53% checking for file conflicts (15/26) 57% checking for file conflicts (16/26) 61% checking for file conflicts (17/26) 65% checking for file conflicts (18/26) 69% checking for file conflicts (19/26) 73% checking for file conflicts (20/26) 76% checking for file conflicts (21/26) 80% checking for file conflicts (22/26) 84% checking for file conflicts (23/26) 88% checking for file conflicts (24/26) 92% checking for file conflicts (25/26) 96% checking for file conflicts (26/26) 100% Starting transaction... upgrading iana-etc (1/26) 0% upgrading iana-etc (1/26) 6% upgrading iana-etc (1/26) 16% upgrading iana-etc (1/26) 99% upgrading iana-etc (1/26) 100% upgrading bash (2/26) 0% upgrading bash (2/26) 2% upgrading bash (2/26) 26% upgrading bash (2/26) 28% upgrading bash (2/26) 29% upgrading bash (2/26) 30% upgrading bash (2/26) 31% upgrading bash (2/26) 32% upgrading bash (2/26) 38% upgrading bash (2/26) 39% upgrading bash (2/26) 40% upgrading bash (2/26) 44% upgrading bash (2/26) 50% upgrading bash (2/26) 56% upgrading bash (2/26) 58% upgrading bash (2/26) 59% upgrading bash (2/26) 61% upgrading bash (2/26) 62% upgrading bash (2/26) 64% upgrading bash (2/26) 65% upgrading bash (2/26) 66% upgrading bash (2/26) 67% upgrading bash (2/26) 69% upgrading bash (2/26) 70% upgrading bash (2/26) 72% upgrading bash (2/26) 74% upgrading bash (2/26) 75% upgrading bash (2/26) 77% upgrading bash (2/26) 78% upgrading bash (2/26) 79% upgrading bash (2/26) 81% upgrading bash (2/26) 83% upgrading bash (2/26) 84% upgrading bash (2/26) 85% upgrading bash (2/26) 86% upgrading bash (2/26) 87% upgrading bash (2/26) 89% upgrading bash (2/26) 90% upgrading bash (2/26) 91% upgrading bash (2/26) 92% upgrading bash (2/26) 94% upgrading bash (2/26) 100% upgrading libtasn1 (3/26) 0% upgrading libtasn1 (3/26) 29% upgrading libtasn1 (3/26) 46% upgrading libtasn1 (3/26) 93% upgrading libtasn1 (3/26) 100% upgrading libp11-kit (4/26) 0% upgrading libp11-kit (4/26) 4% upgrading libp11-kit (4/26) 15% upgrading libp11-kit (4/26) 61% upgrading libp11-kit (4/26) 98% upgrading libp11-kit (4/26) 100% installing lmdb (5/26) 0% installing lmdb (5/26) 42% installing lmdb (5/26) 63% installing lmdb (5/26) 91% installing lmdb (5/26) 100% upgrading util-linux-libs (6/26) 0% upgrading util-linux-libs (6/26) 5% upgrading util-linux-libs (6/26) 18% upgrading util-linux-libs (6/26) 28% upgrading util-linux-libs (6/26) 57% upgrading util-linux-libs (6/26) 89% upgrading util-linux-libs (6/26) 94% upgrading util-linux-libs (6/26) 100% upgrading gdbm (7/26) 0% upgrading gdbm (7/26) 19% upgrading gdbm (7/26) 35% upgrading gdbm (7/26) 61% upgrading gdbm (7/26) 74% upgrading gdbm (7/26) 84% upgrading gdbm (7/26) 97% upgrading gdbm (7/26) 100% upgrading krb5 (8/26) 0% upgrading krb5 (8/26) 3% upgrading krb5 (8/26) 5% upgrading krb5 (8/26) 7% upgrading krb5 (8/26) 10% upgrading krb5 (8/26) 12% upgrading krb5 (8/26) 16% upgrading krb5 (8/26) 18% upgrading krb5 (8/26) 20% upgrading krb5 (8/26) 21% upgrading krb5 (8/26) 23% upgrading krb5 (8/26) 24% upgrading krb5 (8/26) 29% upgrading krb5 (8/26) 32% upgrading krb5 (8/26) 35% upgrading krb5 (8/26) 39% upgrading krb5 (8/26) 50% upgrading krb5 (8/26) 54% upgrading krb5 (8/26) 58% upgrading krb5 (8/26) 60% upgrading krb5 (8/26) 62% upgrading krb5 (8/26) 65% upgrading krb5 (8/26) 68% upgrading krb5 (8/26) 87% upgrading krb5 (8/26) 88% upgrading krb5 (8/26) 92% upgrading krb5 (8/26) 96% upgrading krb5 (8/26) 100% upgrading systemd-libs (9/26) 0% upgrading systemd-libs (9/26) 3% upgrading systemd-libs (9/26) 5% upgrading systemd-libs (9/26) 14% upgrading systemd-libs (9/26) 22% upgrading systemd-libs (9/26) 29% upgrading systemd-libs (9/26) 39% upgrading systemd-libs (9/26) 64% upgrading systemd-libs (9/26) 70% upgrading systemd-libs (9/26) 75% upgrading systemd-libs (9/26) 78% upgrading systemd-libs (9/26) 83% upgrading systemd-libs (9/26) 88% upgrading systemd-libs (9/26) 92% upgrading systemd-libs (9/26) 96% upgrading systemd-libs (9/26) 99% upgrading systemd-libs (9/26) 100% upgrading p11-kit (10/26) 0% upgrading p11-kit (10/26) 25% upgrading p11-kit (10/26) 43% upgrading p11-kit (10/26) 53% upgrading p11-kit (10/26) 60% upgrading p11-kit (10/26) 68% upgrading p11-kit (10/26) 78% upgrading p11-kit (10/26) 85% upgrading p11-kit (10/26) 93% upgrading p11-kit (10/26) 100% upgrading ca-certificates-mozilla (11/26) 0% upgrading ca-certificates-mozilla (11/26) 14% upgrading ca-certificates-mozilla (11/26) 100% upgrading glib2 (12/26) 0% upgrading glib2 (12/26) 1% upgrading glib2 (12/26) 3% upgrading glib2 (12/26) 4% upgrading glib2 (12/26) 5% upgrading glib2 (12/26) 6% upgrading glib2 (12/26) 7% upgrading glib2 (12/26) 8% upgrading glib2 (12/26) 9% upgrading glib2 (12/26) 10% upgrading glib2 (12/26) 11% upgrading glib2 (12/26) 12% upgrading glib2 (12/26) 13% upgrading glib2 (12/26) 28% upgrading glib2 (12/26) 36% upgrading glib2 (12/26) 38% upgrading glib2 (12/26) 39% upgrading glib2 (12/26) 49% upgrading glib2 (12/26) 53% upgrading glib2 (12/26) 56% upgrading glib2 (12/26) 57% upgrading glib2 (12/26) 58% upgrading glib2 (12/26) 64% upgrading glib2 (12/26) 66% upgrading glib2 (12/26) 73% upgrading glib2 (12/26) 74% upgrading glib2 (12/26) 75% upgrading glib2 (12/26) 76% upgrading glib2 (12/26) 77% upgrading glib2 (12/26) 78% upgrading glib2 (12/26) 79% upgrading glib2 (12/26) 80% upgrading glib2 (12/26) 81% upgrading glib2 (12/26) 82% upgrading glib2 (12/26) 83% upgrading glib2 (12/26) 84% upgrading glib2 (12/26) 85% upgrading glib2 (12/26) 86% upgrading glib2 (12/26) 87% upgrading glib2 (12/26) 88% upgrading glib2 (12/26) 89% upgrading glib2 (12/26) 90% upgrading glib2 (12/26) 91% upgrading glib2 (12/26) 92% upgrading glib2 (12/26) 93% upgrading glib2 (12/26) 94% upgrading glib2 (12/26) 95% upgrading glib2 (12/26) 96% upgrading glib2 (12/26) 97% upgrading glib2 (12/26) 98% upgrading glib2 (12/26) 99% upgrading glib2 (12/26) 100% upgrading gnutls (13/26) 0% upgrading gnutls (13/26) 3% upgrading gnutls (13/26) 4% upgrading gnutls (13/26) 7% upgrading gnutls (13/26) 8% upgrading gnutls (13/26) 9% upgrading gnutls (13/26) 10% upgrading gnutls (13/26) 11% upgrading gnutls (13/26) 41% upgrading gnutls (13/26) 44% upgrading gnutls (13/26) 46% upgrading gnutls (13/26) 47% upgrading gnutls (13/26) 51% upgrading gnutls (13/26) 56% upgrading gnutls (13/26) 60% upgrading gnutls (13/26) 61% upgrading gnutls (13/26) 62% upgrading gnutls (13/26) 63% upgrading gnutls (13/26) 64% upgrading gnutls (13/26) 66% upgrading gnutls (13/26) 69% upgrading gnutls (13/26) 71% upgrading gnutls (13/26) 73% upgrading gnutls (13/26) 75% upgrading gnutls (13/26) 78% upgrading gnutls (13/26) 80% upgrading gnutls (13/26) 83% upgrading gnutls (13/26) 85% upgrading gnutls (13/26) 87% upgrading gnutls (13/26) 89% upgrading gnutls (13/26) 92% upgrading gnutls (13/26) 94% upgrading gnutls (13/26) 97% upgrading gnutls (13/26) 99% upgrading gnutls (13/26) 100% upgrading hwdata (14/26) 0% upgrading hwdata (14/26) 1% upgrading hwdata (14/26) 11% upgrading hwdata (14/26) 71% upgrading hwdata (14/26) 87% upgrading hwdata (14/26) 100% upgrading iptables (15/26) 0% upgrading iptables (15/26) 9% upgrading iptables (15/26) 20% upgrading iptables (15/26) 30% upgrading iptables (15/26) 36% upgrading iptables (15/26) 41% upgrading iptables (15/26) 45% upgrading iptables (15/26) 47% upgrading iptables (15/26) 49% upgrading iptables (15/26) 51% upgrading iptables (15/26) 53% upgrading iptables (15/26) 55% upgrading iptables (15/26) 58% upgrading iptables (15/26) 60% upgrading iptables (15/26) 62% upgrading iptables (15/26) 66% upgrading iptables (15/26) 68% upgrading iptables (15/26) 72% upgrading iptables (15/26) 74% upgrading iptables (15/26) 77% upgrading iptables (15/26) 96% upgrading iptables (15/26) 100% upgrading libbpf (16/26) 0% upgrading libbpf (16/26) 12% upgrading libbpf (16/26) 22% upgrading libbpf (16/26) 31% upgrading libbpf (16/26) 50% upgrading libbpf (16/26) 100% upgrading iproute2 (17/26) 0% upgrading iproute2 (17/26) 4% upgrading iproute2 (17/26) 8% upgrading iproute2 (17/26) 15% upgrading iproute2 (17/26) 18% upgrading iproute2 (17/26) 42% upgrading iproute2 (17/26) 44% upgrading iproute2 (17/26) 46% upgrading iproute2 (17/26) 49% upgrading iproute2 (17/26) 68% upgrading iproute2 (17/26) 70% upgrading iproute2 (17/26) 74% upgrading iproute2 (17/26) 83% upgrading iproute2 (17/26) 91% upgrading iproute2 (17/26) 98% upgrading iproute2 (17/26) 100% upgrading json-c (18/26) 0% upgrading json-c (18/26) 55% upgrading json-c (18/26) 100% upgrading libmpc (19/26) 0% upgrading libmpc (19/26) 56% upgrading libmpc (19/26) 100% upgrading libxml2 (20/26) 0% upgrading libxml2 (20/26) 4% upgrading libxml2 (20/26) 7% upgrading libxml2 (20/26) 9% upgrading libxml2 (20/26) 11% upgrading libxml2 (20/26) 15% upgrading libxml2 (20/26) 77% upgrading libxml2 (20/26) 86% upgrading libxml2 (20/26) 88% upgrading libxml2 (20/26) 90% upgrading libxml2 (20/26) 100% upgrading mercurial (21/26) 0% upgrading mercurial (21/26) 1% upgrading mercurial (21/26) 2% upgrading mercurial (21/26) 3% upgrading mercurial (21/26) 4% upgrading mercurial (21/26) 5% upgrading mercurial (21/26) 6% upgrading mercurial (21/26) 7% upgrading mercurial (21/26) 8% upgrading mercurial (21/26) 9% upgrading mercurial (21/26) 10% upgrading mercurial (21/26) 11% upgrading mercurial (21/26) 12% upgrading mercurial (21/26) 13% upgrading mercurial (21/26) 14% upgrading mercurial (21/26) 15% upgrading mercurial (21/26) 16% upgrading mercurial (21/26) 17% upgrading mercurial (21/26) 18% upgrading mercurial (21/26) 19% upgrading mercurial (21/26) 20% upgrading mercurial (21/26) 21% upgrading mercurial (21/26) 22% upgrading mercurial (21/26) 23% upgrading mercurial (21/26) 24% upgrading mercurial (21/26) 25% upgrading mercurial (21/26) 26% upgrading mercurial (21/26) 27% upgrading mercurial (21/26) 28% upgrading mercurial (21/26) 29% upgrading mercurial (21/26) 30% upgrading mercurial (21/26) 31% upgrading mercurial (21/26) 32% upgrading mercurial (21/26) 33% upgrading mercurial (21/26) 34% upgrading mercurial (21/26) 35% upgrading mercurial (21/26) 36% upgrading mercurial (21/26) 37% upgrading mercurial (21/26) 38% upgrading mercurial (21/26) 39% upgrading mercurial (21/26) 40% upgrading mercurial (21/26) 41% upgrading mercurial (21/26) 42% upgrading mercurial (21/26) 43% upgrading mercurial (21/26) 44% upgrading mercurial (21/26) 45% upgrading mercurial (21/26) 46% upgrading mercurial (21/26) 47% upgrading mercurial (21/26) 48% upgrading mercurial (21/26) 49% upgrading mercurial (21/26) 50% upgrading mercurial (21/26) 51% upgrading mercurial (21/26) 52% upgrading mercurial (21/26) 53% upgrading mercurial (21/26) 54% upgrading mercurial (21/26) 55% upgrading mercurial (21/26) 56% upgrading mercurial (21/26) 57% upgrading mercurial (21/26) 58% upgrading mercurial (21/26) 59% upgrading mercurial (21/26) 60% upgrading mercurial (21/26) 61% upgrading mercurial (21/26) 62% upgrading mercurial (21/26) 63% upgrading mercurial (21/26) 65% upgrading mercurial (21/26) 66% upgrading mercurial (21/26) 67% upgrading mercurial (21/26) 71% upgrading mercurial (21/26) 74% upgrading mercurial (21/26) 77% upgrading mercurial (21/26) 78% upgrading mercurial (21/26) 79% upgrading mercurial (21/26) 80% upgrading mercurial (21/26) 81% upgrading mercurial (21/26) 82% upgrading mercurial (21/26) 83% upgrading mercurial (21/26) 84% upgrading mercurial (21/26) 85% upgrading mercurial (21/26) 86% upgrading mercurial (21/26) 87% upgrading mercurial (21/26) 88% upgrading mercurial (21/26) 89% upgrading mercurial (21/26) 90% upgrading mercurial (21/26) 91% upgrading mercurial (21/26) 92% upgrading mercurial (21/26) 93% upgrading mercurial (21/26) 96% upgrading mercurial (21/26) 97% upgrading mercurial (21/26) 99% upgrading mercurial (21/26) 100% upgrading pinentry (22/26) 0% upgrading pinentry (22/26) 21% upgrading pinentry (22/26) 34% upgrading pinentry (22/26) 47% upgrading pinentry (22/26) 82% upgrading pinentry (22/26) 95% upgrading pinentry (22/26) 100% upgrading shadow (23/26) 0% upgrading shadow (23/26) 4% upgrading shadow (23/26) 6% upgrading shadow (23/26) 8% upgrading shadow (23/26) 9% upgrading shadow (23/26) 10% upgrading shadow (23/26) 12% upgrading shadow (23/26) 14% upgrading shadow (23/26) 15% upgrading shadow (23/26) 17% upgrading shadow (23/26) 19% upgrading shadow (23/26) 21% upgrading shadow (23/26) 23% upgrading shadow (23/26) 25% upgrading shadow (23/26) 27% upgrading shadow (23/26) 28% upgrading shadow (23/26) 30% upgrading shadow (23/26) 32% upgrading shadow (23/26) 33% upgrading shadow (23/26) 35% upgrading shadow (23/26) 36% upgrading shadow (23/26) 37% upgrading shadow (23/26) 39% upgrading shadow (23/26) 40% upgrading shadow (23/26) 42% upgrading shadow (23/26) 44% upgrading shadow (23/26) 45% upgrading shadow (23/26) 48% upgrading shadow (23/26) 55% upgrading shadow (23/26) 62% upgrading shadow (23/26) 69% upgrading shadow (23/26) 76% upgrading shadow (23/26) 83% upgrading shadow (23/26) 90% upgrading shadow (23/26) 98% upgrading shadow (23/26) 100% upgrading util-linux (24/26) 0% upgrading util-linux (24/26) 1% upgrading util-linux (24/26) 2% upgrading util-linux (24/26) 4% upgrading util-linux (24/26) 5% upgrading util-linux (24/26) 6% upgrading util-linux (24/26) 7% upgrading util-linux (24/26) 8% upgrading util-linux (24/26) 9% upgrading util-linux (24/26) 10% upgrading util-linux (24/26) 11% upgrading util-linux (24/26) 12% upgrading util-linux (24/26) 13% upgrading util-linux (24/26) 14% upgrading util-linux (24/26) 15% upgrading util-linux (24/26) 16% upgrading util-linux (24/26) 17% upgrading util-linux (24/26) 19% upgrading util-linux (24/26) 20% upgrading util-linux (24/26) 21% upgrading util-linux (24/26) 22% upgrading util-linux (24/26) 23% upgrading util-linux (24/26) 24% upgrading util-linux (24/26) 25% upgrading util-linux (24/26) 26% upgrading util-linux (24/26) 27% upgrading util-linux (24/26) 28% upgrading util-linux (24/26) 29% upgrading util-linux (24/26) 30% upgrading util-linux (24/26) 31% upgrading util-linux (24/26) 32% upgrading util-linux (24/26) 33% upgrading util-linux (24/26) 38% upgrading util-linux (24/26) 41% upgrading util-linux (24/26) 43% upgrading util-linux (24/26) 47% upgrading util-linux (24/26) 48% upgrading util-linux (24/26) 50% upgrading util-linux (24/26) 53% upgrading util-linux (24/26) 55% upgrading util-linux (24/26) 56% upgrading util-linux (24/26) 57% upgrading util-linux (24/26) 60% upgrading util-linux (24/26) 61% upgrading util-linux (24/26) 64% upgrading util-linux (24/26) 67% upgrading util-linux (24/26) 68% upgrading util-linux (24/26) 71% upgrading util-linux (24/26) 73% upgrading util-linux (24/26) 74% upgrading util-linux (24/26) 77% upgrading util-linux (24/26) 79% upgrading util-linux (24/26) 81% upgrading util-linux (24/26) 84% upgrading util-linux (24/26) 86% upgrading util-linux (24/26) 89% upgrading util-linux (24/26) 92% upgrading util-linux (24/26) 96% upgrading util-linux (24/26) 99% upgrading util-linux (24/26) 100% upgrading systemd (25/26) 0% upgrading systemd (25/26) 1% upgrading systemd (25/26) 2% upgrading systemd (25/26) 3% upgrading systemd (25/26) 4% upgrading systemd (25/26) 5% upgrading systemd (25/26) 6% upgrading systemd (25/26) 7% upgrading systemd (25/26) 8% upgrading systemd (25/26) 11% upgrading systemd (25/26) 12% upgrading systemd (25/26) 13% upgrading systemd (25/26) 15% upgrading systemd (25/26) 16% upgrading systemd (25/26) 18% upgrading systemd (25/26) 19% upgrading systemd (25/26) 20% upgrading systemd (25/26) 21% upgrading systemd (25/26) 22% upgrading systemd (25/26) 29% upgrading systemd (25/26) 47% upgrading systemd (25/26) 48% upgrading systemd (25/26) 49% upgrading systemd (25/26) 50% upgrading systemd (25/26) 51% upgrading systemd (25/26) 52% upgrading systemd (25/26) 53% upgrading systemd (25/26) 55% upgrading systemd (25/26) 61% upgrading systemd (25/26) 62% upgrading systemd (25/26) 63% upgrading systemd (25/26) 66% upgrading systemd (25/26) 67% upgrading systemd (25/26) 68% upgrading systemd (25/26) 73% upgrading systemd (25/26) 74% upgrading systemd (25/26) 77% upgrading systemd (25/26) 80% upgrading systemd (25/26) 81% upgrading systemd (25/26) 82% upgrading systemd (25/26) 84% upgrading systemd (25/26) 85% upgrading systemd (25/26) 86% upgrading systemd (25/26) 87% upgrading systemd (25/26) 88% upgrading systemd (25/26) 89% upgrading systemd (25/26) 91% upgrading systemd (25/26) 92% upgrading systemd (25/26) 93% upgrading systemd (25/26) 95% upgrading systemd (25/26) 96% upgrading systemd (25/26) 97% upgrading systemd (25/26) 98% upgrading systemd (25/26) 99% upgrading systemd (25/26) 100% upgrading systemd-sysvcompat (26/26) 0% upgrading systemd-sysvcompat (26/26) 100% Running post-transaction hooks... (1/12) Running 20-systemd-sysusers.hook (Creating system user accounts...) (2/12) Running 30-systemd-catalog.hook (Updating journal message catalog...) (3/12) Running 30-systemd-daemon-reload-system.hook (Reloading system manager configuration...) (4/12) Running 30-systemd-daemon-reload-user.hook (Reloading user manager configuration...) (5/12) Running 30-systemd-hwdb.hook (Updating udev hardware database...) (6/12) Running 30-systemd-sysctl.hook (Applying kernel sysctl settings...) (7/12) Running 30-systemd-tmpfiles.hook (Creating temporary files...) (8/12) Running 30-systemd-udev-reload.hook (Reloading device manager configuration...) (9/12) Running 30-systemd-update.hook (Arming ConditionNeedsUpdate...) (10/12) Running 40-update-ca-trust.hook (Rebuilding certificate stores...) (11/12) Running dbus-reload.hook (Reloading system bus configuration...) (12/12) Running texinfo-install.hook (Updating the info directory file...) Warning: Permanently added '[localhost]:22744' (ED25519) to the list of known hosts. Sync Explicit (2): unzip-6.0-21, jdk17-openjdk-17.0.11.u9-1 Sync Dependency (8): lib32-gcc-libs-14.1.1+r58+gfc9fb69ad62-1, libxrender-0.9.11-2, libxext-1.3.6-1, lib32-glibc-2.39+r52+gf8e4623421-1, fontconfig-2:2.15.0-2, libxtst-1.2.4-2, libx11-1.8.9-1, freetype2-2.13.2-2 AUR Explicit (4): android-sdk-cmdline-tools-latest-13.0-2, android-sdk-build-tools-r34.0.0-2, android-sdk-platform-tools-35.0.1-1, android-sdk-26.1.1-2 :: (1/4) Downloaded PKGBUILD: android-sdk-build-tools :: (2/4) Downloaded PKGBUILD: android-sdk-cmdline-tools-latest :: (3/4) Downloaded PKGBUILD: android-sdk :: (4/4) Downloaded PKGBUILD: android-sdk-platform-tools 4 android-sdk-build-tools (Build Files Exist) 3 android-sdk-platform-tools (Build Files Exist) 2 android-sdk (Build Files Exist) 1 android-sdk-cmdline-tools-latest (Build Files Exist) ==> Packages to cleanBuild? ==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4) ==> 4 android-sdk-platform-tools (Build Files Exist) 3 android-sdk (Build Files Exist) 2 android-sdk-cmdline-tools-latest (Build Files Exist) 1 android-sdk-build-tools (Build Files Exist) ==> Diffs to show? ==> [N]one [A]ll [Ab]ort [I]nstalled [No]tInstalled or (1 2 3, 1-3, ^4) ==> ==> Making package: android-sdk-platform-tools 35.0.1-1 (Fri Jul 12 07:14:40 2024) ==> Retrieving sources... -> Downloading platform-tools_r35.0.1-linux.zip... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 6870k 100 6870k 0 0 80.3M 0 --:--:-- --:--:-- --:--:-- 80.8M -> Found adb.service -> Found license.html -> Found package.xml ==> WARNING: Skipping verification of source file PGP signatures. ==> Validating source files with sha1sums... platform-tools_r35.0.1-linux.zip ... Passed adb.service ... Passed license.html ... Passed package.xml ... Passed ==> Making package: android-sdk 26.1.1-2 (Fri Jul 12 07:14:41 2024) ==> Retrieving sources... -> Downloading sdk-tools-linux-4333796.zip... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 7 147M 7 10.4M 0 0 75.8M 0 0:00:01 --:--:-- 0:00:01 75.5M 100 147M 100 147M 0 0 129M 0 0:00:01 0:00:01 --:--:-- 130M -> Found android-sdk.sh -> Found android-sdk.csh -> Found android-sdk.conf -> Found license.html ==> WARNING: Skipping verification of source file PGP signatures. ==> Validating source files with sha1sums... sdk-tools-linux-4333796.zip ... Passed android-sdk.sh ... Passed android-sdk.csh ... Passed android-sdk.conf ... Passed license.html ... Passed ==> Making package: android-sdk-cmdline-tools-latest 13.0-2 (Fri Jul 12 07:14:43 2024) ==> Retrieving sources... -> Downloading commandlinetools-linux-11479570_latest.zip... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 8 149M 8 12.9M 0 0 55.4M 0 0:00:02 --:--:-- 0:00:02 55.3M 60 149M 60 90.0M 0 0 71.4M 0 0:00:02 0:00:01 0:00:01 71.4M 100 149M 100 149M 0 0 77.2M 0 0:00:01 0:00:01 --:--:-- 77.2M -> Found android-sdk-cmdline-tools-latest.sh -> Found android-sdk-cmdline-tools-latest.csh -> Found package.xml ==> WARNING: Skipping verification of source file PGP signatures. ==> Validating source files with sha1sums... commandlinetools-linux-11479570_latest.zip ... Passed android-sdk-cmdline-tools-latest.sh ... Passed android-sdk-cmdline-tools-latest.csh ... Passed package.xml ... Passed ==> Making package: android-sdk-build-tools r34.0.0-2 (Fri Jul 12 07:14:45 2024) ==> Retrieving sources... -> Downloading build-tools_r34-linux.zip... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 93 58.3M 93 54.6M 0 0 127M 0 --:--:-- --:--:-- --:--:-- 127M 100 58.3M 100 58.3M 0 0 129M 0 --:--:-- --:--:-- --:--:-- 128M -> Found package.xml ==> WARNING: Skipping verification of source file PGP signatures. ==> Validating source files with sha512sums... build-tools_r34-linux.zip ... Passed package.xml ... Passed :: (1/4) Parsing SRCINFO: android-sdk-platform-tools :: (2/4) Parsing SRCINFO: android-sdk :: (3/4) Parsing SRCINFO: android-sdk-cmdline-tools-latest :: (4/4) Parsing SRCINFO: android-sdk-build-tools resolving dependencies... looking for conflicting packages... warning: dependency cycle detected: warning: harfbuzz will be installed before its freetype2 dependency Packages (30) giflib-5.2.2-1 graphite-1:1.3.14-4 harfbuzz-9.0.0-1 hicolor-icon-theme-0.18-1 java-environment-common-3-5 java-runtime-common-3-5 jbigkit-2.1-8 lcms2-2.16-1 libjpeg-turbo-3.0.3-1 libnet-2:1.3-1 libpng-1.6.43-1 libtiff-4.6.0-5 libxau-1.0.11-3 libxcb-1.17.0-1 libxdmcp-1.1.5-1 libxfixes-6.0.1-2 libxi-1.8.1-2 nspr-4.35-3 nss-3.102-1 xcb-proto-1.17.0-2 xorgproto-2024.1-2 fontconfig-2:2.15.0-2 freetype2-2.13.2-2 jdk17-openjdk-17.0.11.u9-1 lib32-gcc-libs-14.1.1+r58+gfc9fb69ad62-1 lib32-glibc-2.39+r52+gf8e4623421-1 libx11-1.8.9-1 libxext-1.3.6-1 libxrender-0.9.11-2 libxtst-1.2.4-2 Total Download Size: 298.20 MiB Total Installed Size: 566.01 MiB :: Proceed with installation? [Y/n] :: Retrieving packages... jdk17-openjdk-17.0.11.u9-1-x86_64 downloading... lib32-gcc-libs-14.1.1+r58+gfc9fb69ad62-1-x86_64 downloading... lib32-glibc-2.39+r52+gf8e4623421-1-x86_64 downloading... libx11-1.8.9-1-x86_64 downloading... nss-3.102-1-x86_64 downloading... harfbuzz-9.0.0-1-x86_64 downloading... libxcb-1.17.0-1-x86_64 downloading... libjpeg-turbo-3.0.3-1-x86_64 downloading... freetype2-2.13.2-2-x86_64 downloading... fontconfig-2:2.15.0-2-x86_64 downloading... libtiff-4.6.0-5-x86_64 downloading... libnet-2:1.3-1-x86_64 downloading... libpng-1.6.43-1-x86_64 downloading... xorgproto-2024.1-2-any downloading... lcms2-2.16-1-x86_64 downloading... nspr-4.35-3-x86_64 downloading... libxi-1.8.1-2-x86_64 downloading... xcb-proto-1.17.0-2-any downloading... libxext-1.3.6-1-x86_64 downloading... graphite-1:1.3.14-4-x86_64 downloading... giflib-5.2.2-1-x86_64 downloading... jbigkit-2.1-8-x86_64 downloading... libxrender-0.9.11-2-x86_64 downloading... libxtst-1.2.4-2-x86_64 downloading... libxdmcp-1.1.5-1-x86_64 downloading... libxfixes-6.0.1-2-x86_64 downloading... hicolor-icon-theme-0.18-1-any downloading... libxau-1.0.11-3-x86_64 downloading... java-runtime-common-3-5-any downloading... java-environment-common-3-5-any downloading... checking keyring... checking package integrity... loading package files... checking for file conflicts... checking available disk space... :: Processing package changes... installing lib32-glibc... installing libpng... installing graphite... Optional dependencies for graphite graphite-docs: Documentation installing harfbuzz... Optional dependencies for harfbuzz harfbuzz-utils: utilities installing freetype2... installing fontconfig... Creating fontconfig configuration... Rebuilding fontconfig cache... installing xcb-proto... installing xorgproto... installing libxdmcp... installing libxau... installing libxcb... installing libx11... installing libxext... installing libxfixes... installing libxi... installing libxtst... installing lib32-gcc-libs... installing java-runtime-common... For the complete set of Java binaries to be available in your PATH, you need to re-login or source /etc/profile.d/jre.sh Please note that this package does not support forcing JAVA_HOME as former package java-common did installing nspr... installing nss... installing libjpeg-turbo... Optional dependencies for libjpeg-turbo java-runtime>11: for TurboJPEG Java wrapper [pending] installing jbigkit... installing libtiff... Optional dependencies for libtiff freeglut: for using tiffgt installing lcms2... installing libnet... installing java-environment-common... installing hicolor-icon-theme... installing giflib... installing jdk17-openjdk... Optional dependencies for jdk17-openjdk java-rhino: for some JavaScript support alsa-lib: for basic sound support gtk2: for the Gtk+ 2 look and feel - desktop usage gtk3: for the Gtk+ 3 look and feel - desktop usage installing libxrender... :: Running post-transaction hooks... (1/3) Arming ConditionNeedsUpdate... (2/3) Updating fontconfig configuration... (3/3) Updating fontconfig cache... resolving dependencies... looking for conflicting packages... Packages (1) unzip-6.0-21 Total Download Size: 0.14 MiB Total Installed Size: 0.30 MiB :: Proceed with installation? [Y/n] :: Retrieving packages... unzip-6.0-21-x86_64 downloading... checking keyring... checking package integrity... loading package files... checking for file conflicts... checking available disk space... :: Processing package changes... installing unzip... :: Running post-transaction hooks... (1/1) Arming ConditionNeedsUpdate... ==> Making package: android-sdk-build-tools r34.0.0-2 (Fri Jul 12 07:14:53 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Found build-tools_r34-linux.zip -> Found package.xml ==> Validating source files with sha512sums... build-tools_r34-linux.zip ... Passed package.xml ... Passed ==> Removing existing $srcdir/ directory... ==> Extracting sources... -> Extracting build-tools_r34-linux.zip with bsdtar ==> Sources are ready. ==> Making package: android-sdk-build-tools r34.0.0-2 (Fri Jul 12 07:14:55 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> WARNING: Using existing $srcdir/ tree ==> Entering fakeroot environment... ==> Starting package()... ==> Tidying install... -> Removing libtool files... -> Purging unwanted files... -> Removing static library files... -> Copying source files needed for debug symbols... -> Compressing man and info pages... ==> Checking for packaging issues... ==> Creating package "android-sdk-build-tools"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Generating .MTREE file... -> Compressing package... ==> Leaving fakeroot environment. ==> Finished making: android-sdk-build-tools r34.0.0-2 (Fri Jul 12 07:14:57 2024) ==> Cleaning up... ==> Making package: android-sdk-platform-tools 35.0.1-1 (Fri Jul 12 07:14:58 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Found platform-tools_r35.0.1-linux.zip -> Found adb.service -> Found license.html -> Found package.xml ==> Validating source files with sha1sums... platform-tools_r35.0.1-linux.zip ... Passed adb.service ... Passed license.html ... Passed package.xml ... Passed ==> Removing existing $srcdir/ directory... ==> Extracting sources... -> Extracting platform-tools_r35.0.1-linux.zip with bsdtar ==> Sources are ready. ==> Making package: android-sdk-platform-tools 35.0.1-1 (Fri Jul 12 07:14:59 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> WARNING: Using existing $srcdir/ tree ==> Entering fakeroot environment... ==> Starting package()... ==> Tidying install... -> Removing libtool files... -> Purging unwanted files... -> Removing static library files... -> Stripping unneeded symbols from binaries and libraries... objcopy: ./opt/android-sdk/platform-tools/adb: debuglink section already exists objcopy: ./opt/android-sdk/platform-tools/etc1tool: debuglink section already exists objcopy: ./opt/android-sdk/platform-tools/fastboot: debuglink section already exists objcopy: ./opt/android-sdk/platform-tools/hprof-conv: debuglink section already exists objcopy: ./opt/android-sdk/platform-tools/lib64/libc++.so: debuglink section already exists objcopy: ./opt/android-sdk/platform-tools/make_f2fs: debuglink section already exists objcopy: ./opt/android-sdk/platform-tools/make_f2fs_casefold: debuglink section already exists objcopy: ./opt/android-sdk/platform-tools/mke2fs: debuglink section already exists objcopy: ./opt/android-sdk/platform-tools/sqlite3: debuglink section already exists -> Compressing man and info pages... ==> Checking for packaging issues... ==> Creating package "android-sdk-platform-tools"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Adding install file... -> Generating .MTREE file... -> Compressing package... ==> Creating package "android-sdk-platform-tools-debug"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Generating .MTREE file... -> Compressing package... ==> Leaving fakeroot environment. ==> Finished making: android-sdk-platform-tools 35.0.1-1 (Fri Jul 12 07:15:00 2024) ==> Cleaning up... ==> Making package: android-sdk 26.1.1-2 (Fri Jul 12 07:15:01 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Found sdk-tools-linux-4333796.zip -> Found android-sdk.sh -> Found android-sdk.csh -> Found android-sdk.conf -> Found license.html ==> Validating source files with sha1sums... sdk-tools-linux-4333796.zip ... Passed android-sdk.sh ... Passed android-sdk.csh ... Passed android-sdk.conf ... Passed license.html ... Passed ==> Removing existing $srcdir/ directory... ==> Extracting sources... -> Extracting sdk-tools-linux-4333796.zip with bsdtar ==> Sources are ready. ==> Making package: android-sdk 26.1.1-2 (Fri Jul 12 07:15:03 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> WARNING: Using existing $srcdir/ tree ==> Entering fakeroot environment... ==> Starting package()... ==> Tidying install... -> Removing libtool files... -> Purging unwanted files... -> Removing static library files... -> Stripping unneeded symbols from binaries and libraries... -> Compressing man and info pages... ==> Checking for packaging issues... ==> Creating package "android-sdk"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Adding install file... -> Generating .MTREE file... -> Compressing package... ==> Creating package "android-sdk-debug"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Generating .MTREE file... -> Compressing package... ==> Leaving fakeroot environment. ==> Finished making: android-sdk 26.1.1-2 (Fri Jul 12 07:15:13 2024) ==> Cleaning up... ==> Making package: android-sdk-cmdline-tools-latest 13.0-2 (Fri Jul 12 07:15:14 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> Retrieving sources... -> Found commandlinetools-linux-11479570_latest.zip -> Found android-sdk-cmdline-tools-latest.sh -> Found android-sdk-cmdline-tools-latest.csh -> Found package.xml ==> Validating source files with sha1sums... commandlinetools-linux-11479570_latest.zip ... Passed android-sdk-cmdline-tools-latest.sh ... Passed android-sdk-cmdline-tools-latest.csh ... Passed package.xml ... Passed ==> Removing existing $srcdir/ directory... ==> Extracting sources... -> Extracting commandlinetools-linux-11479570_latest.zip with bsdtar ==> Sources are ready. ==> Making package: android-sdk-cmdline-tools-latest 13.0-2 (Fri Jul 12 07:15:15 2024) ==> Checking runtime dependencies... ==> Checking buildtime dependencies... ==> WARNING: Using existing $srcdir/ tree ==> Entering fakeroot environment... ==> Starting package()... ==> Tidying install... -> Removing libtool files... -> Purging unwanted files... -> Removing static library files... -> Stripping unneeded symbols from binaries and libraries... -> Compressing man and info pages... ==> Checking for packaging issues... ==> Creating package "android-sdk-cmdline-tools-latest"... -> Generating .PKGINFO file... -> Generating .BUILDINFO file... -> Adding install file... -> Generating .MTREE file... -> Compressing package... ==> Leaving fakeroot environment. ==> Finished making: android-sdk-cmdline-tools-latest 13.0-2 (Fri Jul 12 07:15:17 2024) ==> Cleaning up... loading packages... resolving dependencies... looking for conflicting packages... Packages (6) android-sdk-26.1.1-2 android-sdk-build-tools-r34.0.0-2 android-sdk-cmdline-tools-latest-13.0-2 android-sdk-debug-26.1.1-2 android-sdk-platform-tools-35.0.1-1 android-sdk-platform-tools-debug-35.0.1-1 Total Installed Size: 484.27 MiB :: Proceed with installation? [Y/n] checking keyring... checking package integrity... loading package files... checking for file conflicts... checking available disk space... :: Processing package changes... installing android-sdk-build-tools... Optional dependencies for android-sdk-build-tools lib32-gcc-libs [installed] lib32-zlib java-runtime [installed] installing android-sdk-platform-tools... You need to source /etc/profile or relogin to add the Android SDK platform tools to your path. installing android-sdk-platform-tools-debug... installing android-sdk... You need to source /etc/profile or relogin to add the Android SDK tools to your path. Optional dependencies for android-sdk android-emulator: emulator has become standalone since 25.3.0 android-sdk-platform-tools: adb, aapt, aidl, dexdump and dx [installed] android-udev: udev rules for Android devices installing android-sdk-debug... installing android-sdk-cmdline-tools-latest... You need to source /etc/profile or relogin to add Android SDK Command-line Tools (latest) to your path. Optional dependencies for android-sdk-cmdline-tools-latest android-sdk-platform-tools: adb, aapt, aidl, dexdump and dx [installed] android-udev: udev rules for Android devices :: Running post-transaction hooks... (1/2) Reloading system manager configuration... (2/2) Arming ConditionNeedsUpdate... [#1274272] 2024/07/12 07:15:18 Cloning repositories Cloning into 'goguma'... + cd goguma + git checkout -q 76ef5bc43b37306328f339fc60bb4d116d0c66fa + cd goguma + git submodule update --init --recursive [#1274272] 2024/07/12 07:15:19 Running task flutter [#1274272] 2024/07/12 07:16:27 Running task configure [#1274272] 2024/07/12 07:16:35 Running task build [#1274272] 2024/07/12 07:21:46 Running task analyze [#1274272] 2024/07/12 07:23:02 Running task deploy [#1274272] 2024/07/12 07:23:05 Build failed. [#1274272] 2024/07/12 07:23:05 The build environment will be kept alive for 10 minutes. [#1274272] 2024/07/12 07:23:05 To log in with SSH and examine it, use the following command: [#1274272] 2024/07/12 07:23:05 [#1274272] 2024/07/12 07:23:05 ssh -t builds@fra02.builds.sr.ht connect 1274272 [#1274272] 2024/07/12 07:23:05 [#1274272] 2024/07/12 07:23:05 After logging in, the deadline is increased to your remaining build time. [#1274272] 2024/07/12 07:33:05 Deadline elapsed. Terminating build environment. [#1274272] 2024/07/12 07:33:05 Error: Running task on guest: exit status 1 |
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 |
+ git clone --depth=1 --branch=stable https://github.com/flutter/flutter.git Cloning into 'flutter'... + export PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/home/build/flutter/bin + PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/home/build/flutter/bin + echo PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/home/build/flutter/bin + flutter precache --android Downloading Linux x64 Dart SDK from Flutter engine edd8546116457bdf1c5bdfb13ecb9463d2bb5ed4... % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 0 221M 0 57458 0 0 197k 0 0:19:10 --:--:-- 0:19:10 196k 6 221M 6 15.0M 0 0 12.0M 0 0:00:18 0:00:01 0:00:17 12.0M 20 221M 20 46.3M 0 0 20.5M 0 0:00:10 0:00:02 0:00:08 20.5M 35 221M 35 77.6M 0 0 23.8M 0 0:00:09 0:00:03 0:00:06 23.8M 49 221M 49 108M 0 0 25.5M 0 0:00:08 0:00:04 0:00:04 25.5M 63 221M 63 140M 0 0 26.6M 0 0:00:08 0:00:05 0:00:03 28.1M 77 221M 77 170M 0 0 27.3M 0 0:00:08 0:00:06 0:00:02 31.1M 91 221M 91 202M 0 0 27.8M 0 0:00:07 0:00:07 --:--:-- 31.1M 100 221M 100 221M 0 0 28.1M 0 0:00:07 0:00:07 --:--:-- 31.1M Building flutter tool... Resolving dependencies... Downloading packages... Got dependencies. Downloading Material fonts... 203ms Downloading Gradle Wrapper... 7ms Downloading android-arm-profile/linux-x64 tools... 89ms Downloading android-arm-release/linux-x64 tools... 88ms Downloading android-arm64-profile/linux-x64 tools... 86ms Downloading android-arm64-release/linux-x64 tools... 72ms Downloading android-x64-profile/linux-x64 tools... 71ms Downloading android-x64-release/linux-x64 tools... 62ms Downloading android-x86 tools... 1,310ms Downloading android-x64 tools... 1,227ms Downloading android-arm tools... 1,159ms Downloading android-arm-profile tools... 123ms Downloading android-arm-release tools... 86ms Downloading android-arm64 tools... 2,699ms Downloading android-arm64-profile tools... 134ms Downloading android-arm64-release tools... 95ms Downloading android-x64-profile tools... 135ms Downloading android-x64-release tools... 156ms Downloading android-x86-jit-release tools... 168ms Downloading package sky_engine... 29ms Downloading flutter_patched_sdk tools... 69ms Downloading flutter_patched_sdk_product tools... 68ms Downloading linux-x64 tools... 2,394ms Downloading linux-x64/font-subset tools... 39ms + sudo chown -R build /opt/android-sdk + yes + flutter doctor --android-licenses + flutter doctor -v [✓] Flutter (Channel stable, 3.22.2, on Arch Linux 6.9.7-arch1-1, locale en_US) • Flutter version 3.22.2 on channel stable at /home/build/flutter • Upstream repository https://github.com/flutter/flutter.git • Framework revision 761747bfc5 (5 weeks ago), 2024-06-05 22:15:13 +0200 • Engine revision edd8546116 • Dart version 3.4.3 • DevTools version 2.34.3 [!] Android toolchain - develop for Android devices • Android SDK at /opt/android-sdk ✗ Unable to locate Android SDK. Install Android Studio from: https://developer.android.com/studio/index.html On first launch it will assist you in installing the Android SDK components. (or visit https://flutter.dev/docs/get-started/install/linux#android-setup for detailed instructions). If the Android SDK has been installed to a custom location, please use `flutter config --android-sdk` to update to that location. ✗ No valid Android SDK platforms found in /opt/android-sdk/platforms. Directory was empty. • Try re-installing or updating your Android SDK, visit https://flutter.dev/docs/get-started/install/linux#android-setup for detailed instructions. [✗] Chrome - develop for the web (Cannot find Chrome executable at google-chrome) ! Cannot find Chrome. Try setting CHROME_EXECUTABLE to a Chrome executable. [✗] Linux toolchain - develop for Linux desktop ✗ clang++ is required for Linux development. It is likely available from your distribution (e.g.: apt install clang), or can be downloaded from https://releases.llvm.org/ ✗ CMake is required for Linux development. It is likely available from your distribution (e.g.: apt install cmake), or can be downloaded from https://cmake.org/download/ ✗ ninja is required for Linux development. It is likely available from your distribution (e.g.: apt install ninja-build), or can be downloaded from https://github.com/ninja-build/ninja/releases • pkg-config version 2.1.1 ✗ GTK 3.0 development libraries are required for Linux development. They are likely available from your distribution (e.g.: apt install libgtk-3-dev) [!] Android Studio (not installed) • Android Studio not found; download from https://developer.android.com/studio/index.html (or visit https://flutter.dev/docs/get-started/install/linux#android-setup for detailed instructions). [✓] Connected device (1 available) • Linux (desktop) • linux • linux-x64 • Arch Linux 6.9.7-arch1-1 [✓] Network resources • All expected network resources are available. ! Doctor found issues in 4 categories. |
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 |
+ cd goguma + ln -s /home/build/keystore.properties android/keystore.properties + ln -s /home/build/keystore.jks android/keystore.jks + flutter pub get Resolving dependencies... Downloading packages... _flutterfire_internals 1.3.35 (1.3.39 available) collection 1.18.0 (1.19.0 available) dependency_validator 3.2.3 (4.1.0 available) firebase_core 2.32.0 (3.2.0 available) firebase_messaging 14.9.4 (15.0.3 available) firebase_messaging_platform_interface 4.5.37 (4.5.41 available) firebase_messaging_web 3.8.7 (3.8.11 available) flutter_apns_only 1.6.0 (discontinued) http_parser 4.0.2 (4.1.0 available) leak_tracker 10.0.4 (10.0.5 available) leak_tracker_flutter_testing 3.0.3 (3.0.5 available) material_color_utilities 0.8.0 (0.12.0 available) meta 1.12.0 (1.15.0 available) string_scanner 1.2.0 (1.3.0 available) test_api 0.7.0 (0.7.3 available) vm_service 14.2.1 (14.2.4 available) Got dependencies! 1 package is discontinued. 15 packages have newer versions incompatible with dependency constraints. Try `flutter pub outdated` for more information. + dart run tool/gen_main.dart --firebase /home/build/google-services.json lib/main_generated.dart |
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 |
+ cd goguma ++ git describe --abbrev=0 + tag=v0.7.0 ++ git rev-parse --short=12 HEAD + hash=76ef5bc43b37 + build_name=0.7.0-dev+76ef5bc43b37.firebase ++ git rev-list --first-parent --count origin/master + build_number=1081 ++ cat /home/build/sentry-dsn.txt + sentry_dsn=https://9298d02d8794449e85471d537831bd18@app.glitchtip.com/2381 + flutter build apk --build-name=0.7.0-dev+76ef5bc43b37.firebase --build-number=1081 --target=lib/main_generated.dart --dart-define=SENTRY_DSN=https://9298d02d8794449e85471d537831bd18@app.glitchtip.com/2381 --dart-define=SENTRY_ENVIRONMENT=nightly --dart-define=SENTRY_RELEASE=0.7.0-dev+76ef5bc43b37.firebase Running Gradle task 'assembleRelease'... Checking the license for package NDK (Side by side) 23.1.7779620 in /opt/android-sdk/licenses License for package NDK (Side by side) 23.1.7779620 accepted. Preparing "Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)". "Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)" ready. Installing NDK (Side by side) 23.1.7779620 in /opt/android-sdk/ndk/23.1.7779620 "Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)" complete. "Install NDK (Side by side) 23.1.7779620 (revision: 23.1.7779620)" finished. Checking the license for package CMake 3.22.1 in /opt/android-sdk/licenses License for package CMake 3.22.1 accepted. Preparing "Install CMake 3.22.1 (revision: 3.22.1)". "Install CMake 3.22.1 (revision: 3.22.1)" ready. Installing CMake 3.22.1 in /opt/android-sdk/cmake/3.22.1 "Install CMake 3.22.1 (revision: 3.22.1)" complete. "Install CMake 3.22.1 (revision: 3.22.1)" finished. Checking the license for package Android SDK Build-Tools 30.0.3 in /opt/android-sdk/licenses License for package Android SDK Build-Tools 30.0.3 accepted. Preparing "Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)". "Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)" ready. Installing Android SDK Build-Tools 30.0.3 in /opt/android-sdk/build-tools/30.0.3 "Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)" complete. "Install Android SDK Build-Tools 30.0.3 (revision: 30.0.3)" finished. Checking the license for package Android SDK Platform 34 in /opt/android-sdk/licenses License for package Android SDK Platform 34 accepted. Preparing "Install Android SDK Platform 34 (revision: 3)". "Install Android SDK Platform 34 (revision: 3)" ready. Installing Android SDK Platform 34 in /opt/android-sdk/platforms/android-34 "Install Android SDK Platform 34 (revision: 3)" complete. "Install Android SDK Platform 34 (revision: 3)" finished. Checking the license for package Android SDK Platform 31 in /opt/android-sdk/licenses License for package Android SDK Platform 31 accepted. Preparing "Install Android SDK Platform 31 (revision: 1)". "Install Android SDK Platform 31 (revision: 1)" ready. Installing Android SDK Platform 31 in /opt/android-sdk/platforms/android-31 "Install Android SDK Platform 31 (revision: 1)" complete. "Install Android SDK Platform 31 (revision: 1)" finished. Checking the license for package Android SDK Platform 33 in /opt/android-sdk/licenses License for package Android SDK Platform 33 accepted. Preparing "Install Android SDK Platform 33 (revision: 3)". "Install Android SDK Platform 33 (revision: 3)" ready. Installing Android SDK Platform 33 in /opt/android-sdk/platforms/android-33 "Install Android SDK Platform 33 (revision: 3)" complete. "Install Android SDK Platform 33 (revision: 3)" finished. Font asset "MaterialIcons-Regular.otf" was tree-shaken, reducing it from 1645184 to 5720 bytes (99.7% reduction). Tree-shaking can be disabled by providing the --no-tree-shake-icons flag when building your app. e: /home/build/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.9.0/8ee15ef0c67dc83d874f412d84378d7f0eb50b63/kotlin-stdlib-1.9.0.jar!/META-INF/kotlin-stdlib.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: /home/build/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.9.0/8ee15ef0c67dc83d874f412d84378d7f0eb50b63/kotlin-stdlib-1.9.0.jar!/META-INF/kotlin-stdlib-jdk8.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: /home/build/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.9.0/8ee15ef0c67dc83d874f412d84378d7f0eb50b63/kotlin-stdlib-1.9.0.jar!/META-INF/kotlin-stdlib-jdk7.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. e: /home/build/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-common/1.9.0/cd65c21cfd1eec4d44ef09f9f52b6d9f8a720636/kotlin-stdlib-common-1.9.0.jar!/META-INF/kotlin-stdlib-common.kotlin_module: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.9.0, expected version is 1.7.1. Running Gradle task 'assembleRelease'... 309.0s ✓ Built build/app/outputs/flutter-apk/app-release.apk (28.8MB) |
1 2 3 4 |
+ cd goguma + flutter analyze --no-fatal-infos Analyzing goguma... No issues found! (ran in 75.0s) |
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 |
+ cd goguma ++ git rev-parse origin/master ++ git rev-parse HEAD + '[' 76ef5bc43b37306328f339fc60bb4d116d0c66fa = 76ef5bc43b37306328f339fc60bb4d116d0c66fa ']' ++ git rev-list --first-parent --count origin/master + build_number=1081 + ssh_opts='-o StrictHostKeyChecking=no' + ssh_host=deploy@sheeta.emersion.fr + scp -o StrictHostKeyChecking=no build/app/outputs/flutter-apk/app-release.apk deploy@sheeta.emersion.fr:fdroid-goguma-nightly/repo/goguma-1081.apk Warning: Permanently added 'sheeta.emersion.fr' (ED25519) to the list of known hosts. + ssh -o StrictHostKeyChecking=no deploy@sheeta.emersion.fr 'cd fdroid-goguma-nightly && (ls -t repo/*.apk | tail -n +5 | xargs -r rm --) && fdroid update' 2024-07-12 09:23:05,029 WARNING: unsafe permissions on 'config.yml' (should be 0600)! 2024-07-12 09:23:05,033 WARNING: repo_icon "repo/icons/icon.png" does not exist! Check "config.yml". 2024-07-12 09:23:05,159 CRITICAL: Unknown exception found! Traceback (most recent call last): File "/usr/bin/fdroid", line 22, in <module> fdroidserver.__main__.main() File "/usr/lib/python3.12/site-packages/fdroidserver/__main__.py", line 230, in main raise e File "/usr/lib/python3.12/site-packages/fdroidserver/__main__.py", line 211, in main mod.main() File "/usr/lib/python3.12/site-packages/fdroidserver/update.py", line 2246, in main apks, cachechanged = process_apks(apkcache, repodirs[0], knownapks, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/site-packages/fdroidserver/update.py", line 1626, in process_apks (skip, apk, cachethis) = process_apk(apkcache, apkfilename, repodir, knownapks, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/site-packages/fdroidserver/update.py", line 1486, in process_apk apk = scan_apk(apkfile) ^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.12/site-packages/fdroidserver/update.py", line 1235, in scan_apk scan_apk_androguard(apk, apk_file) File "/usr/lib/python3.12/site-packages/fdroidserver/update.py", line 1319, in scan_apk_androguard from androguard.core.bytecodes.apk import APK ModuleNotFoundError: No module named 'androguard.core.bytecodes' |