File size: 48,625 Bytes
1ee64fa |
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 |
travis_fold:start:worker_info Worker information hostname: 6c5b6ab7-3efe-4c83-acd1-31d7d598a146@1.worker-org-b6c9dcb4d-tfxxx.gce-production-1 version: v6.2.1 https://github.com/travis-ci/worker/tree/4e3246c044eb4915c2378ffacd0b3d3ed0136bba instance: travis-job-85cd281f-493d-4798-a929-ff55487191f1 travis-ci-garnet-trusty-1512502259-986baf0 (via amqp) startup: 6.143687861s travis_fold:end:worker_info travis_fold:start:system_info Build system information Build language: cpp Build group: stable Build dist: trusty Build id: 566236411 Job id: 566236412 Runtime kernel version: 4.4.0-101-generic travis-build version: 65949ed1e Build image provisioning date and time Tue Dec 5 19:58:13 UTC 2017 Operating System Details Distributor ID: Ubuntu Description: Ubuntu 14.04.5 LTS Release: 14.04 Codename: trusty Cookbooks Version 7c2c6a6 https://github.com/travis-ci/travis-cookbooks/tree/7c2c6a6 git version git version 2.15.1 bash version GNU bash, version 4.3.11(1)-release (x86_64-pc-linux-gnu) gcc version gcc (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4 Copyright (C) 2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. docker version Client: Version: 17.09.0-ce API version: 1.32 Go version: go1.8.3 Git commit: afdb6d4 Built: Tue Sep 26 22:42:38 2017 OS/Arch: linux/amd64 Server: Version: 17.09.0-ce API version: 1.32 (minimum version 1.12) Go version: go1.8.3 Git commit: afdb6d4 Built: Tue Sep 26 22:41:20 2017 OS/Arch: linux/amd64 Experimental: false clang version clang version 5.0.0 (tags/RELEASE_500/final) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /usr/local/clang-5.0.0/bin jq version jq-1.5 bats version Bats 0.4.0 shellcheck version 0.4.6 shfmt version v2.0.0 ccache version ccache version 3.1.9 Copyright (C) 2002-2007 Andrew Tridgell Copyright (C) 2009-2011 Joel Rosdahl This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. cmake version cmake version 3.9.2 CMake suite maintained and supported by Kitware (kitware.com/cmake). heroku version heroku-cli/6.14.39-addc925 (linux-x64) node-v9.2.0 imagemagick version Version: ImageMagick 6.7.7-10 2017-07-31 Q16 http://www.imagemagick.org md5deep version 4.2 mercurial version Mercurial Distributed SCM (version 4.2.2) (see https://mercurial-scm.org for more information) Copyright (C) 2005-2017 Matt Mackall and others This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. mysql version mysql Ver 14.14 Distrib 5.6.33, for debian-linux-gnu (x86_64) using EditLine wrapper openssl version OpenSSL 1.0.1f 6 Jan 2014 packer version Packer v1.0.2 Your version of Packer is out of date! The latest version is 1.1.2. You can update by downloading from www.packer.io postgresql client version psql (PostgreSQL) 9.6.6 ragel version Ragel State Machine Compiler version 6.8 Feb 2013 Copyright (c) 2001-2009 by Adrian Thurston subversion version svn, version 1.8.8 (r1568071) compiled Aug 10 2017, 17:20:39 on x86_64-pc-linux-gnu Copyright (C) 2013 The Apache Software Foundation. This software consists of contributions made by many people; see the NOTICE file for more information. Subversion is open source software, see http://subversion.apache.org/ The following repository access (RA) modules are available: * ra_svn : Module for accessing a repository using the svn network protocol. - with Cyrus SASL authentication - handles 'svn' scheme * ra_local : Module for accessing a repository on local disk. - handles 'file' scheme * ra_serf : Module for accessing a repository via WebDAV protocol using serf. - using serf 1.3.3 - handles 'http' scheme - handles 'https' scheme sudo version Sudo version 1.8.9p5 Configure options: --prefix=/usr -v --with-all-insults --with-pam --with-fqdn --with-logging=syslog --with-logfac=authpriv --with-env-editor --with-editor=/usr/bin/editor --with-timeout=15 --with-password-timeout=0 --with-passprompt=[sudo] password for %p: --without-lecture --with-tty-tickets --disable-root-mailer --enable-admin-flag --with-sendmail=/usr/sbin/sendmail --with-timedir=/var/lib/sudo --mandir=/usr/share/man --libexecdir=/usr/lib/sudo --with-sssd --with-sssd-lib=/usr/lib/x86_64-linux-gnu --with-selinux Sudoers policy plugin version 1.8.9p5 Sudoers file grammar version 43 Sudoers path: /etc/sudoers Authentication methods: 'pam' Syslog facility if syslog is being used for logging: authpriv Syslog priority to use when user authenticates successfully: notice Syslog priority to use when user authenticates unsuccessfully: alert Send mail if the user is not in sudoers Use a separate timestamp for each user/tty combo Lecture user the first time they run sudo Root may run sudo Allow some information gathering to give useful error messages Require fully-qualified hostnames in the sudoers file Visudo will honor the EDITOR environment variable Set the LOGNAME and USER environment variables Length at which to wrap log file lines (0 for no wrap): 80 Authentication timestamp timeout: 15.0 minutes Password prompt timeout: 0.0 minutes Number of tries to enter a password: 3 Umask to use or 0777 to use user's: 022 Path to mail program: /usr/sbin/sendmail Flags for mail program: -t Address to send mail to: root Subject line for mail messages: *** SECURITY information for %h *** Incorrect password message: Sorry, try again. Path to authentication timestamp dir: /var/lib/sudo Default password prompt: [sudo] password for %p: Default user to run commands as: root Value to override user's $PATH with: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin Path to the editor for use by visudo: /usr/bin/editor When to require a password for 'list' pseudocommand: any When to require a password for 'verify' pseudocommand: all File descriptors >= 3 will be closed before executing a command Environment variables to check for sanity: TZ TERM LINGUAS LC_* LANGUAGE LANG COLORTERM Environment variables to remove: RUBYOPT RUBYLIB PYTHONUSERBASE PYTHONINSPECT PYTHONPATH PYTHONHOME TMPPREFIX ZDOTDIR READNULLCMD NULLCMD FPATH PERL5DB PERL5OPT PERL5LIB PERLLIB PERLIO_DEBUG JAVA_TOOL_OPTIONS SHELLOPTS GLOBIGNORE PS4 BASH_ENV ENV TERMCAP TERMPATH TERMINFO_DIRS TERMINFO _RLD* LD_* PATH_LOCALE NLSPATH HOSTALIASES RES_OPTIONS LOCALDOMAIN CDPATH IFS Environment variables to preserve: JAVA_HOME TRAVIS CI DEBIAN_FRONTEND XAUTHORIZATION XAUTHORITY PS2 PS1 PATH LS_COLORS KRB5CCNAME HOSTNAME HOME DISPLAY COLORS Locale to use while parsing sudoers: C Directory in which to store input/output logs: /var/log/sudo-io File in which to store the input/output log: %{seq} Add an entry to the utmp/utmpx file when allocating a pty PAM service name to use PAM service name to use for login shells Create a new PAM session for the command to run in Maximum I/O log sequence number: 0 Local IP address and netmask pairs: 10.240.0.28/255.255.255.255 172.17.0.1/255.255.0.0 Sudoers I/O plugin version 1.8.9p5 gzip version gzip 1.6 Copyright (C) 2007, 2010, 2011 Free Software Foundation, Inc. Copyright (C) 1993 Jean-loup Gailly. This is free software. You may redistribute copies of it under the terms of the GNU General Public License <http://www.gnu.org/licenses/gpl.html>. There is NO WARRANTY, to the extent permitted by law. Written by Jean-loup Gailly. zip version Copyright (c) 1990-2008 Info-ZIP - Type 'zip "-L"' for software license. This is Zip 3.0 (July 5th 2008), by Info-ZIP. Currently maintained by E. Gordon. Please send bug reports to the authors using the web page at www.info-zip.org; see README for details. Latest sources and executables are at ftp://ftp.info-zip.org/pub/infozip, as of above date; see http://www.info-zip.org/ for other sites. Compiled with gcc 4.8.2 for Unix (Linux ELF) on Oct 21 2013. Zip special compilation options: USE_EF_UT_TIME (store Universal Time) BZIP2_SUPPORT (bzip2 library version 1.0.6, 6-Sept-2010) bzip2 code and library copyright (c) Julian R Seward (See the bzip2 license for terms of use) SYMLINK_SUPPORT (symbolic links supported) LARGE_FILE_SUPPORT (can read and write large files on file system) ZIP64_SUPPORT (use Zip64 to store large files in archives) UNICODE_SUPPORT (store and read UTF-8 Unicode paths) STORE_UNIX_UIDs_GIDs (store UID/GID sizes/values using new extra field) UIDGID_NOT_16BIT (old Unix 16-bit UID/GID extra field not used) [encryption, version 2.91 of 05 Jan 2007] (modified for Zip 3) Encryption notice: The encryption code of this program is not copyrighted and is put in the public domain. It was originally written in Europe and, to the best of our knowledge, can be freely distributed in both source and object forms from any country, including the USA under License Exception TSU of the U.S. Export Administration Regulations (section 740.13(e)) of 6 June 2002. Zip environment options: ZIP: [none] ZIPOPT: [none] vim version VIM - Vi IMproved 7.4 (2013 Aug 10, compiled Nov 24 2016 16:43:18) Included patches: 1-52 Extra patches: 8.0.0056 Modified by [email protected] Compiled by buildd@ Huge version without GUI. Features included (+) or not (-): +acl +farsi +mouse_netterm +syntax +arabic +file_in_path +mouse_sgr +tag_binary +autocmd +find_in_path -mouse_sysmouse +tag_old_static -balloon_eval +float +mouse_urxvt -tag_any_white -browse +folding +mouse_xterm -tcl ++builtin_terms -footer +multi_byte +terminfo +byte_offset +fork() +multi_lang +termresponse +cindent +gettext -mzscheme +textobjects -clientserver -hangul_input +netbeans_intg +title -clipboard +iconv +path_extra -toolbar +cmdline_compl +insert_expand -perl +user_commands +cmdline_hist +jumplist +persistent_undo +vertsplit +cmdline_info +keymap +postscript +virtualedit +comments +langmap +printer +visual +conceal +libcall +profile +visualextra +cryptv +linebreak +python +viminfo +cscope +lispindent -python3 +vreplace +cursorbind +listcmds +quickfix +wildignore +cursorshape +localmap +reltime +wildmenu +dialog_con -lua +rightleft +windows +diff +menu -ruby +writebackup +digraphs +mksession +scrollbind -X11 -dnd +modify_fname +signs -xfontset -ebcdic +mouse +smartindent -xim +emacs_tags -mouseshape -sniff -xsmp +eval +mouse_dec +startuptime -xterm_clipboard +ex_extra +mouse_gpm +statusline -xterm_save +extra_search -mouse_jsbterm -sun_workshop -xpm system vimrc file: "$VIM/vimrc" user vimrc file: "$HOME/.vimrc" 2nd user vimrc file: "~/.vim/vimrc" user exrc file: "$HOME/.exrc" fall-back for $VIM: "/usr/share/vim" Compilation: gcc -c -I. -Iproto -DHAVE_CONFIG_H -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 Linking: gcc -Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,--as-needed -o vim -lm -ltinfo -lnsl -lselinux -lacl -lattr -lgpm -ldl -L/usr/lib/python2.7/config-x86_64-linux-gnu -lpython2.7 -lpthread -ldl -lutil -lm -Xlinker -export-dynamic -Wl,-O1 -Wl,-Bsymbolic-functions iptables version iptables v1.4.21 curl version curl 7.35.0 (x86_64-pc-linux-gnu) libcurl/7.35.0 OpenSSL/1.0.1f zlib/1.2.8 libidn/1.28 librtmp/2.3 wget version GNU Wget 1.15 built on linux-gnu. rsync version rsync version 3.1.0 protocol version 31 gimme version v1.2.0 nvm version 0.33.6 perlbrew version /home/travis/perl5/perlbrew/bin/perlbrew - App::perlbrew/0.80 phpenv version rbenv 1.1.1-25-g6aa70b6 rvm version rvm 1.29.3 (latest) by Michal Papis, Piotr Kuczynski, Wayne E. Seguin [https://rvm.io] default ruby version ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux] CouchDB version couchdb 1.6.1 ElasticSearch version 5.5.0 Installed Firefox version firefox 56.0.2 MongoDB version MongoDB 3.4.10 PhantomJS version 2.1.1 Pre-installed PostgreSQL versions 9.2.24 9.3.20 9.4.15 9.5.10 9.6.6 RabbitMQ Version 3.6.14 Redis version redis-server 4.0.6 riak version 2.2.3 Pre-installed Go versions 1.7.4 ant version Apache Ant(TM) version 1.9.3 compiled on April 8 2014 mvn version Apache Maven 3.5.2 (138edd61fd100ec658bfa2d307c43b76940a5d7d; 2017-10-18T07:58:13Z) Maven home: /usr/local/maven-3.5.2 Java version: 1.8.0_151, vendor: Oracle Corporation Java home: /usr/lib/jvm/java-8-oracle/jre Default locale: en_US, platform encoding: UTF-8 OS name: "linux", version: "4.4.0-98-generic", arch: "amd64", family: "unix" gradle version ------------------------------------------------------------ Gradle 4.0.1 ------------------------------------------------------------ Build time: 2017-07-07 14:02:41 UTC Revision: 38e5dc0f772daecca1d2681885d3d85414eb6826 Groovy: 2.4.11 Ant: Apache Ant(TM) version 1.9.6 compiled on June 29 2015 JVM: 1.8.0_151 (Oracle Corporation 25.151-b12) OS: Linux 4.4.0-98-generic amd64 lein version Leiningen 2.8.1 on Java 1.8.0_151 Java HotSpot(TM) 64-Bit Server VM Pre-installed Node.js versions v4.8.6 v6.12.0 v6.12.1 v8.9 v8.9.1 phpenv versions system 5.6 * 5.6.32 (set by /home/travis/.phpenv/version) 7.0 7.0.25 7.1 7.1.11 hhvm hhvm-stable composer --version Composer version 1.5.2 2017-09-11 16:59:25 Pre-installed Ruby versions ruby-2.2.7 ruby-2.3.4 ruby-2.4.1 travis_fold:end:system_info travis_fold:start:docker_mtu docker stop/waiting docker start/running, process 3698 travis_fold:end:docker_mtu travis_fold:start:resolvconf resolvconf stop/waiting resolvconf start/running travis_fold:end:resolvconf travis_fold:start:services travis_time:start:19b92b4e $ sudo service docker start start: Job is already running: docker travis_time:end:19b92b4e:start=1564617177494947685,finish=1564617177510877990,duration=15930305 travis_fold:end:services travis_fold:start:git.checkout travis_time:start:00b84712 $ git clone --depth=50 --branch=motions-2019-07-lwg-7 https://github.com/cplusplus/draft.git cplusplus/draft Cloning into 'cplusplus/draft'... remote: Enumerating objects: 503, done. remote: Counting objects: 0% (1/503) remote: Counting objects: 1% (6/503) remote: Counting objects: 2% (11/503) remote: Counting objects: 3% (16/503) remote: Counting objects: 4% (21/503) remote: Counting objects: 5% (26/503) remote: Counting objects: 6% (31/503) remote: Counting objects: 7% (36/503) remote: Counting objects: 8% (41/503) remote: Counting objects: 9% (46/503) remote: Counting objects: 10% (51/503) remote: Counting objects: 11% (56/503) remote: Counting objects: 12% (61/503) remote: Counting objects: 13% (66/503) remote: Counting objects: 14% (71/503) remote: Counting objects: 15% (76/503) remote: Counting objects: 16% (81/503) remote: Counting objects: 17% (86/503) remote: Counting objects: 18% (91/503) remote: Counting objects: 19% (96/503) remote: Counting objects: 20% (101/503) remote: Counting objects: 21% (106/503) remote: Counting objects: 22% (111/503) remote: Counting objects: 23% (116/503) remote: Counting objects: 24% (121/503) remote: Counting objects: 25% (126/503) remote: Counting objects: 26% (131/503) remote: Counting objects: 27% (136/503) remote: Counting objects: 28% (141/503) remote: Counting objects: 29% (146/503) remote: Counting objects: 30% (151/503) remote: Counting objects: 31% (156/503) remote: Counting objects: 32% (161/503) remote: Counting objects: 33% (166/503) remote: Counting objects: 34% (172/503) remote: Counting objects: 35% (177/503) remote: Counting objects: 36% (182/503) remote: Counting objects: 37% (187/503) remote: Counting objects: 38% (192/503) remote: Counting objects: 39% (197/503) remote: Counting objects: 40% (202/503) remote: Counting objects: 41% (207/503) remote: Counting objects: 42% (212/503) remote: Counting objects: 43% (217/503) remote: Counting objects: 44% (222/503) remote: Counting objects: 45% (227/503) remote: Counting objects: 46% (232/503) remote: Counting objects: 47% (237/503) remote: Counting objects: 48% (242/503) remote: Counting objects: 49% (247/503) remote: Counting objects: 50% (252/503) remote: Counting objects: 51% (257/503) remote: Counting objects: 52% (262/503) remote: Counting objects: 53% (267/503) remote: Counting objects: 54% (272/503) remote: Counting objects: 55% (277/503) remote: Counting objects: 56% (282/503) remote: Counting objects: 57% (287/503) remote: Counting objects: 58% (292/503) remote: Counting objects: 59% (297/503) remote: Counting objects: 60% (302/503) remote: Counting objects: 61% (307/503) remote: Counting objects: 62% (312/503) remote: Counting objects: 63% (317/503) remote: Counting objects: 64% (322/503) remote: Counting objects: 65% (327/503) remote: Counting objects: 66% (332/503) remote: Counting objects: 67% (338/503) remote: Counting objects: 68% (343/503) remote: Counting objects: 69% (348/503) remote: Counting objects: 70% (353/503) remote: Counting objects: 71% (358/503) remote: Counting objects: 72% (363/503) remote: Counting objects: 73% (368/503) remote: Counting objects: 74% (373/503) remote: Counting objects: 75% (378/503) remote: Counting objects: 76% (383/503) remote: Counting objects: 77% (388/503) remote: Counting objects: 78% (393/503) remote: Counting objects: 79% (398/503) remote: Counting objects: 80% (403/503) remote: Counting objects: 81% (408/503) remote: Counting objects: 82% (413/503) remote: Counting objects: 83% (418/503) remote: Counting objects: 84% (423/503) remote: Counting objects: 85% (428/503) remote: Counting objects: 86% (433/503) remote: Counting objects: 87% (438/503) remote: Counting objects: 88% (443/503) remote: Counting objects: 89% (448/503) remote: Counting objects: 90% (453/503) remote: Counting objects: 91% (458/503) remote: Counting objects: 92% (463/503) remote: Counting objects: 93% (468/503) remote: Counting objects: 94% (473/503) remote: Counting objects: 95% (478/503) remote: Counting objects: 96% (483/503) remote: Counting objects: 97% (488/503) remote: Counting objects: 98% (493/503) remote: Counting objects: 99% (498/503) remote: Counting objects: 100% (503/503) remote: Counting objects: 100% (503/503), done. remote: Compressing objects: 0% (1/279) remote: Compressing objects: 1% (3/279) remote: Compressing objects: 2% (6/279) remote: Compressing objects: 3% (9/279) remote: Compressing objects: 4% (12/279) remote: Compressing objects: 5% (14/279) remote: Compressing objects: 6% (17/279) remote: Compressing objects: 7% (20/279) remote: Compressing objects: 8% (23/279) remote: Compressing objects: 9% (26/279) remote: Compressing objects: 10% (28/279) remote: Compressing objects: 11% (31/279) remote: Compressing objects: 12% (34/279) remote: Compressing objects: 13% (37/279) remote: Compressing objects: 14% (40/279) remote: Compressing objects: 15% (42/279) remote: Compressing objects: 16% (45/279) remote: Compressing objects: 17% (48/279) remote: Compressing objects: 18% (51/279) remote: Compressing objects: 19% (54/279) remote: Compressing objects: 20% (56/279) remote: Compressing objects: 21% (59/279) remote: Compressing objects: 22% (62/279) remote: Compressing objects: 23% (65/279) remote: Compressing objects: 24% (67/279) remote: Compressing objects: 25% (70/279) remote: Compressing objects: 26% (73/279) remote: Compressing objects: 27% (76/279) remote: Compressing objects: 28% (79/279) remote: Compressing objects: 29% (81/279) remote: Compressing objects: 30% (84/279) remote: Compressing objects: 31% (87/279) remote: Compressing objects: 32% (90/279) remote: Compressing objects: 33% (93/279) remote: Compressing objects: 34% (95/279) remote: Compressing objects: 35% (98/279) remote: Compressing objects: 36% (101/279) remote: Compressing objects: 37% (104/279) remote: Compressing objects: 38% (107/279) remote: Compressing objects: 39% (109/279) remote: Compressing objects: 40% (112/279) remote: Compressing objects: 41% (115/279) remote: Compressing objects: 42% (118/279) remote: Compressing objects: 43% (120/279) remote: Compressing objects: 44% (123/279) remote: Compressing objects: 45% (126/279) remote: Compressing objects: 46% (129/279) remote: Compressing objects: 47% (132/279) remote: Compressing objects: 48% (134/279) remote: Compressing objects: 49% (137/279) remote: Compressing objects: 50% (140/279) remote: Compressing objects: 51% (143/279) remote: Compressing objects: 52% (146/279) remote: Compressing objects: 53% (148/279) remote: Compressing objects: 54% (151/279) remote: Compressing objects: 55% (154/279) remote: Compressing objects: 56% (157/279) remote: Compressing objects: 57% (160/279) remote: Compressing objects: 58% (162/279) remote: Compressing objects: 58% (163/279) remote: Compressing objects: 58% (164/279) remote: Compressing objects: 59% (165/279) remote: Compressing objects: 60% (168/279) remote: Compressing objects: 61% (171/279) remote: Compressing objects: 62% (173/279) remote: Compressing objects: 63% (176/279) remote: Compressing objects: 64% (179/279) remote: Compressing objects: 65% (182/279) remote: Compressing objects: 66% (185/279) remote: Compressing objects: 67% (187/279) remote: Compressing objects: 68% (190/279) remote: Compressing objects: 69% (193/279) remote: Compressing objects: 70% (196/279) remote: Compressing objects: 71% (199/279) remote: Compressing objects: 72% (201/279) remote: Compressing objects: 73% (204/279) remote: Compressing objects: 74% (207/279) remote: Compressing objects: 75% (210/279) remote: Compressing objects: 76% (213/279) remote: Compressing objects: 77% (215/279) remote: Compressing objects: 78% (218/279) remote: Compressing objects: 79% (221/279) remote: Compressing objects: 80% (224/279) remote: Compressing objects: 81% (226/279) remote: Compressing objects: 82% (229/279) remote: Compressing objects: 83% (232/279) remote: Compressing objects: 84% (235/279) remote: Compressing objects: 85% (238/279) remote: Compressing objects: 86% (240/279) remote: Compressing objects: 87% (243/279) remote: Compressing objects: 88% (246/279) remote: Compressing objects: 89% (249/279) remote: Compressing objects: 90% (252/279) remote: Compressing objects: 91% (254/279) remote: Compressing objects: 92% (257/279) remote: Compressing objects: 93% (260/279) remote: Compressing objects: 94% (263/279) remote: Compressing objects: 95% (266/279) remote: Compressing objects: 96% (268/279) remote: Compressing objects: 97% (271/279) remote: Compressing objects: 98% (274/279) remote: Compressing objects: 99% (277/279) remote: Compressing objects: 100% (279/279) remote: Compressing objects: 100% (279/279), done. Receiving objects: 0% (1/503) Receiving objects: 1% (6/503) Receiving objects: 2% (11/503) Receiving objects: 3% (16/503) Receiving objects: 4% (21/503) Receiving objects: 5% (26/503) Receiving objects: 6% (31/503) Receiving objects: 7% (36/503) Receiving objects: 8% (41/503) Receiving objects: 9% (46/503) Receiving objects: 10% (51/503) Receiving objects: 11% (56/503) Receiving objects: 12% (61/503) Receiving objects: 13% (66/503) Receiving objects: 14% (71/503) Receiving objects: 15% (76/503) Receiving objects: 16% (81/503) Receiving objects: 17% (86/503) Receiving objects: 18% (91/503) Receiving objects: 19% (96/503) Receiving objects: 20% (101/503) Receiving objects: 21% (106/503) Receiving objects: 22% (111/503) Receiving objects: 23% (116/503) Receiving objects: 24% (121/503) Receiving objects: 25% (126/503) Receiving objects: 26% (131/503) Receiving objects: 27% (136/503) Receiving objects: 28% (141/503) Receiving objects: 29% (146/503) Receiving objects: 30% (151/503) Receiving objects: 31% (156/503), 7.02 MiB | 14.03 MiB/s Receiving objects: 32% (161/503), 7.02 MiB | 14.03 MiB/s Receiving objects: 33% (166/503), 7.02 MiB | 14.03 MiB/s Receiving objects: 33% (170/503), 26.65 MiB | 26.65 MiB/s Receiving objects: 34% (172/503), 26.65 MiB | 26.65 MiB/s Receiving objects: 35% (177/503), 26.65 MiB | 26.65 MiB/s Receiving objects: 36% (182/503), 26.65 MiB | 26.65 MiB/s Receiving objects: 37% (187/503), 50.43 MiB | 33.62 MiB/s Receiving objects: 38% (192/503), 50.43 MiB | 33.62 MiB/s Receiving objects: 39% (197/503), 50.43 MiB | 33.62 MiB/s Receiving objects: 39% (198/503), 78.39 MiB | 39.19 MiB/s Receiving objects: 40% (202/503), 78.39 MiB | 39.19 MiB/s Receiving objects: 41% (207/503), 78.39 MiB | 39.19 MiB/s Receiving objects: 42% (212/503), 101.08 MiB | 40.43 MiB/s Receiving objects: 43% (217/503), 101.08 MiB | 40.43 MiB/s Receiving objects: 43% (220/503), 120.81 MiB | 40.27 MiB/s Receiving objects: 44% (222/503), 120.81 MiB | 40.27 MiB/s Receiving objects: 45% (227/503), 120.81 MiB | 40.27 MiB/s Receiving objects: 46% (232/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 47% (237/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 48% (242/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 49% (247/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 50% (252/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 51% (257/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 52% (262/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 53% (267/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 54% (272/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 55% (277/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 56% (282/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 57% (287/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 58% (292/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 59% (297/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 60% (302/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 61% (307/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 62% (312/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 63% (317/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 64% (322/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 65% (327/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 66% (332/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 67% (338/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 68% (343/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 69% (348/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 70% (353/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 71% (358/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 72% (363/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 73% (368/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 74% (373/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 75% (378/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 76% (383/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 77% (388/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 78% (393/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 79% (398/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 80% (403/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 81% (408/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 82% (413/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 83% (418/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 84% (423/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 85% (428/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 86% (433/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 87% (438/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 88% (443/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 89% (448/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 90% (453/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 91% (458/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 92% (463/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 93% (468/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 94% (473/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 95% (478/503), 140.77 MiB | 40.23 MiB/s remote: Total 503 (delta 301), reused 370 (delta 223), pack-reused 0 Receiving objects: 96% (483/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 97% (488/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 98% (493/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 99% (498/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 100% (503/503), 140.77 MiB | 40.23 MiB/s Receiving objects: 100% (503/503), 155.40 MiB | 39.86 MiB/s, done. Resolving deltas: 0% (0/301) Resolving deltas: 2% (7/301) Resolving deltas: 26% (80/301) Resolving deltas: 28% (85/301) Resolving deltas: 30% (91/301) Resolving deltas: 36% (110/301) Resolving deltas: 44% (135/301) Resolving deltas: 45% (138/301) Resolving deltas: 46% (139/301) Resolving deltas: 47% (142/301) Resolving deltas: 48% (145/301) Resolving deltas: 49% (148/301) Resolving deltas: 50% (151/301) Resolving deltas: 51% (154/301) Resolving deltas: 52% (157/301) Resolving deltas: 53% (160/301) Resolving deltas: 54% (165/301) Resolving deltas: 55% (167/301) Resolving deltas: 57% (173/301) Resolving deltas: 58% (175/301) Resolving deltas: 59% (179/301) Resolving deltas: 60% (181/301) Resolving deltas: 61% (186/301) Resolving deltas: 65% (198/301) Resolving deltas: 66% (199/301) Resolving deltas: 70% (212/301) Resolving deltas: 71% (216/301) Resolving deltas: 72% (219/301) Resolving deltas: 74% (225/301) Resolving deltas: 76% (229/301) Resolving deltas: 78% (237/301) Resolving deltas: 79% (240/301) Resolving deltas: 80% (242/301) Resolving deltas: 81% (244/301) Resolving deltas: 82% (247/301) Resolving deltas: 83% (250/301) Resolving deltas: 86% (259/301) Resolving deltas: 87% (262/301) Resolving deltas: 88% (265/301) Resolving deltas: 89% (270/301) Resolving deltas: 90% (271/301) Resolving deltas: 91% (274/301) Resolving deltas: 93% (280/301) Resolving deltas: 94% (283/301) Resolving deltas: 96% (289/301) Resolving deltas: 98% (296/301) Resolving deltas: 99% (300/301) Resolving deltas: 100% (301/301) Resolving deltas: 100% (301/301), done. travis_time:end:00b84712:start=1564617180518357749,finish=1564617191449113662,duration=10930755913 $ cd cplusplus/draft $ git checkout -qf 6a1396f12b020860c5dc21682e59ac956d4c5eda travis_fold:end:git.checkout Setting environment variables from .travis.yml $ export BUILD_TYPE=latexmk $ export TRAVIS_COMPILER=g++ $ export CXX=${CXX:-g++} $ export CXX_FOR_BUILD=${CXX_FOR_BUILD:-g++} $ export CC=${CC:-gcc} $ export CC_FOR_BUILD=${CC_FOR_BUILD:-gcc} $ g++ --version g++ (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4 Copyright (C) 2013 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. travis_fold:start:before_install.1 travis_time:start:06c3faef $ docker pull godbyk/texlive-basic:latest latest: Pulling from godbyk/texlive-basic 22dc81ace0ea: Pulling fs layer 1a8b3c87dba3: Pulling fs layer 91390a1c435a: Pulling fs layer 07844b14977e: Pulling fs layer b78396653dae: Pulling fs layer eee2bd2ea2c5: Pulling fs layer b78396653dae: Waiting 07844b14977e: Waiting eee2bd2ea2c5: Waiting 1a8b3c87dba3: Downloading 487B/847B 1a8b3c87dba3: Downloading 847B/847B 1a8b3c87dba3: Verifying Checksum 1a8b3c87dba3: Download complete 91390a1c435a: Downloading 487B/620B 91390a1c435a: Downloading 620B/620B 91390a1c435a: Verifying Checksum 91390a1c435a: Download complete 22dc81ace0ea: Downloading 432.8kB/42.96MB 22dc81ace0ea: Downloading 10.97MB/42.96MB 22dc81ace0ea: Downloading 21.49MB/42.96MB 07844b14977e: Downloading 487B/854B 07844b14977e: Downloading 854B/854B 07844b14977e: Verifying Checksum 07844b14977e: Download complete b78396653dae: Downloading 169B/169B b78396653dae: Verifying Checksum b78396653dae: Download complete 22dc81ace0ea: Downloading 34.18MB/42.96MB 22dc81ace0ea: Verifying Checksum 22dc81ace0ea: Download complete 22dc81ace0ea: Extracting 458.8kB/42.96MB eee2bd2ea2c5: Downloading 527kB/190.6MB 22dc81ace0ea: Extracting 2.294MB/42.96MB eee2bd2ea2c5: Downloading 9.682MB/190.6MB 22dc81ace0ea: Extracting 3.67MB/42.96MB eee2bd2ea2c5: Downloading 20.94MB/190.6MB eee2bd2ea2c5: Downloading 32.18MB/190.6MB 22dc81ace0ea: Extracting 5.505MB/42.96MB eee2bd2ea2c5: Downloading 43.41MB/190.6MB 22dc81ace0ea: Extracting 7.34MB/42.96MB eee2bd2ea2c5: Downloading 52.55MB/190.6MB 22dc81ace0ea: Extracting 8.716MB/42.96MB eee2bd2ea2c5: Downloading 62.18MB/190.6MB 22dc81ace0ea: Extracting 10.09MB/42.96MB eee2bd2ea2c5: Downloading 73.44MB/190.6MB 22dc81ace0ea: Extracting 11.93MB/42.96MB eee2bd2ea2c5: Downloading 84.67MB/190.6MB 22dc81ace0ea: Extracting 13.3MB/42.96MB eee2bd2ea2c5: Downloading 95.41MB/190.6MB eee2bd2ea2c5: Downloading 106.7MB/190.6MB 22dc81ace0ea: Extracting 14.68MB/42.96MB eee2bd2ea2c5: Downloading 116.9MB/190.6MB 22dc81ace0ea: Extracting 16.06MB/42.96MB eee2bd2ea2c5: Downloading 127.1MB/190.6MB 22dc81ace0ea: Extracting 17.43MB/42.96MB eee2bd2ea2c5: Downloading 138.3MB/190.6MB 22dc81ace0ea: Extracting 19.27MB/42.96MB eee2bd2ea2c5: Downloading 149MB/190.6MB 22dc81ace0ea: Extracting 21.1MB/42.96MB eee2bd2ea2c5: Downloading 158.1MB/190.6MB eee2bd2ea2c5: Downloading 166.1MB/190.6MB 22dc81ace0ea: Extracting 22.94MB/42.96MB eee2bd2ea2c5: Downloading 176.9MB/190.6MB 22dc81ace0ea: Extracting 24.31MB/42.96MB eee2bd2ea2c5: Downloading 188.2MB/190.6MB eee2bd2ea2c5: Verifying Checksum eee2bd2ea2c5: Download complete 22dc81ace0ea: Extracting 25.69MB/42.96MB 22dc81ace0ea: Extracting 27.98MB/42.96MB 22dc81ace0ea: Extracting 28.9MB/42.96MB 22dc81ace0ea: Extracting 30.28MB/42.96MB 22dc81ace0ea: Extracting 32.57MB/42.96MB 22dc81ace0ea: Extracting 34.41MB/42.96MB 22dc81ace0ea: Extracting 36.24MB/42.96MB 22dc81ace0ea: Extracting 37.62MB/42.96MB 22dc81ace0ea: Extracting 38.99MB/42.96MB 22dc81ace0ea: Extracting 40.83MB/42.96MB 22dc81ace0ea: Extracting 42.66MB/42.96MB 22dc81ace0ea: Extracting 42.96MB/42.96MB 22dc81ace0ea: Pull complete 1a8b3c87dba3: Extracting 847B/847B 1a8b3c87dba3: Extracting 847B/847B 1a8b3c87dba3: Pull complete 91390a1c435a: Extracting 620B/620B 91390a1c435a: Extracting 620B/620B 91390a1c435a: Pull complete 07844b14977e: Extracting 854B/854B 07844b14977e: Extracting 854B/854B 07844b14977e: Pull complete b78396653dae: Extracting 169B/169B b78396653dae: Extracting 169B/169B b78396653dae: Pull complete eee2bd2ea2c5: Extracting 557.1kB/190.6MB eee2bd2ea2c5: Extracting 1.671MB/190.6MB eee2bd2ea2c5: Extracting 3.899MB/190.6MB eee2bd2ea2c5: Extracting 6.128MB/190.6MB eee2bd2ea2c5: Extracting 8.356MB/190.6MB eee2bd2ea2c5: Extracting 10.58MB/190.6MB eee2bd2ea2c5: Extracting 12.81MB/190.6MB eee2bd2ea2c5: Extracting 15.6MB/190.6MB eee2bd2ea2c5: Extracting 18.38MB/190.6MB eee2bd2ea2c5: Extracting 20.61MB/190.6MB eee2bd2ea2c5: Extracting 22.84MB/190.6MB eee2bd2ea2c5: Extracting 25.07MB/190.6MB eee2bd2ea2c5: Extracting 26.74MB/190.6MB eee2bd2ea2c5: Extracting 28.97MB/190.6MB eee2bd2ea2c5: Extracting 31.2MB/190.6MB eee2bd2ea2c5: Extracting 33.42MB/190.6MB eee2bd2ea2c5: Extracting 35.65MB/190.6MB eee2bd2ea2c5: Extracting 37.32MB/190.6MB eee2bd2ea2c5: Extracting 38.99MB/190.6MB eee2bd2ea2c5: Extracting 40.11MB/190.6MB eee2bd2ea2c5: Extracting 41.78MB/190.6MB eee2bd2ea2c5: Extracting 42.89MB/190.6MB eee2bd2ea2c5: Extracting 45.12MB/190.6MB eee2bd2ea2c5: Extracting 47.35MB/190.6MB eee2bd2ea2c5: Extracting 49.58MB/190.6MB eee2bd2ea2c5: Extracting 51.81MB/190.6MB eee2bd2ea2c5: Extracting 54.59MB/190.6MB eee2bd2ea2c5: Extracting 56.82MB/190.6MB eee2bd2ea2c5: Extracting 59.6MB/190.6MB eee2bd2ea2c5: Extracting 61.83MB/190.6MB eee2bd2ea2c5: Extracting 64.06MB/190.6MB eee2bd2ea2c5: Extracting 66.29MB/190.6MB eee2bd2ea2c5: Extracting 68.52MB/190.6MB eee2bd2ea2c5: Extracting 70.75MB/190.6MB eee2bd2ea2c5: Extracting 72.42MB/190.6MB eee2bd2ea2c5: Extracting 74.09MB/190.6MB eee2bd2ea2c5: Extracting 75.76MB/190.6MB eee2bd2ea2c5: Extracting 77.99MB/190.6MB eee2bd2ea2c5: Extracting 80.22MB/190.6MB eee2bd2ea2c5: Extracting 83MB/190.6MB eee2bd2ea2c5: Extracting 86.34MB/190.6MB eee2bd2ea2c5: Extracting 90.24MB/190.6MB eee2bd2ea2c5: Extracting 94.14MB/190.6MB eee2bd2ea2c5: Extracting 98.04MB/190.6MB eee2bd2ea2c5: Extracting 101.9MB/190.6MB eee2bd2ea2c5: Extracting 105.3MB/190.6MB eee2bd2ea2c5: Extracting 107.5MB/190.6MB eee2bd2ea2c5: Extracting 109.2MB/190.6MB eee2bd2ea2c5: Extracting 110.9MB/190.6MB eee2bd2ea2c5: Extracting 112.5MB/190.6MB eee2bd2ea2c5: Extracting 114.2MB/190.6MB eee2bd2ea2c5: Extracting 115.9MB/190.6MB eee2bd2ea2c5: Extracting 117.5MB/190.6MB eee2bd2ea2c5: Extracting 119.8MB/190.6MB eee2bd2ea2c5: Extracting 120.9MB/190.6MB eee2bd2ea2c5: Extracting 122MB/190.6MB eee2bd2ea2c5: Extracting 123.7MB/190.6MB eee2bd2ea2c5: Extracting 124.2MB/190.6MB eee2bd2ea2c5: Extracting 125.3MB/190.6MB eee2bd2ea2c5: Extracting 126.5MB/190.6MB eee2bd2ea2c5: Extracting 128.7MB/190.6MB eee2bd2ea2c5: Extracting 132MB/190.6MB eee2bd2ea2c5: Extracting 135.9MB/190.6MB eee2bd2ea2c5: Extracting 137MB/190.6MB eee2bd2ea2c5: Extracting 140.4MB/190.6MB eee2bd2ea2c5: Extracting 143.2MB/190.6MB eee2bd2ea2c5: Extracting 144.8MB/190.6MB eee2bd2ea2c5: Extracting 146.5MB/190.6MB eee2bd2ea2c5: Extracting 147.6MB/190.6MB eee2bd2ea2c5: Extracting 148.7MB/190.6MB eee2bd2ea2c5: Extracting 149.8MB/190.6MB eee2bd2ea2c5: Extracting 151MB/190.6MB eee2bd2ea2c5: Extracting 152.1MB/190.6MB eee2bd2ea2c5: Extracting 153.7MB/190.6MB eee2bd2ea2c5: Extracting 155.4MB/190.6MB eee2bd2ea2c5: Extracting 156.5MB/190.6MB eee2bd2ea2c5: Extracting 157.6MB/190.6MB eee2bd2ea2c5: Extracting 160.4MB/190.6MB eee2bd2ea2c5: Extracting 162.1MB/190.6MB eee2bd2ea2c5: Extracting 163.8MB/190.6MB eee2bd2ea2c5: Extracting 164.3MB/190.6MB eee2bd2ea2c5: Extracting 165.4MB/190.6MB eee2bd2ea2c5: Extracting 167.1MB/190.6MB eee2bd2ea2c5: Extracting 169.3MB/190.6MB eee2bd2ea2c5: Extracting 171MB/190.6MB eee2bd2ea2c5: Extracting 173.8MB/190.6MB eee2bd2ea2c5: Extracting 176MB/190.6MB eee2bd2ea2c5: Extracting 184.4MB/190.6MB eee2bd2ea2c5: Extracting 185.5MB/190.6MB eee2bd2ea2c5: Extracting 186.6MB/190.6MB eee2bd2ea2c5: Extracting 190MB/190.6MB eee2bd2ea2c5: Extracting 190.6MB/190.6MB eee2bd2ea2c5: Pull complete Digest: sha256:626417813101948f9528d01dae4482fc82679865cc9d9a3b9727880b7ae2156e Status: Downloaded newer image for godbyk/texlive-basic:latest travis_time:end:06c3faef:start=1564617191847823930,finish=1564617208851235997,duration=17003412067 travis_fold:end:before_install.1 travis_fold:start:before_install.2 travis_time:start:03e15710 $ docker run -itd -v $TRAVIS_BUILD_DIR:/$TRAVIS_REPO_SLUG --name texlive-basic godbyk/texlive-basic a307e5e04c495ebd7095ad6df99a0c04c4e1f5a85f8b617fd3d6a74d871094fb travis_time:end:03e15710:start=1564617208856182007,finish=1564617209175969143,duration=319787136 travis_fold:end:before_install.2 travis_time:start:1adeab5e $ pushd source ~/build/cplusplus/draft/source ~/build/cplusplus/draft travis_time:end:1adeab5e:start=1564617209180583932,finish=1564617209183502454,duration=2918522 The command "pushd source" exited with 0. travis_time:start:35bea25d $ if [ "$BUILD_TYPE" = "latexmk" ]; then docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && latexmk -pdf std -silent"; ! grep -Fe "Overfull \\hbox" std.log && ! grep "LaTeX Warning..There were undefined references" std.log; fi Latexmk: Run number 1 of rule 'pdflatex' This is pdfTeX, Version 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian) (preloaded format=pdflatex) restricted \write18 enabled. entering extended mode Latexmk: Summary of warnings: Latex failed to resolve 607 reference(s) Latexmk: Run number 1 of rule 'makeindex libraryindex.idx' Latexmk: Run number 1 of rule 'makeindex impldefindex.idx' Latexmk: Run number 1 of rule 'makeindex headerindex.idx' Latexmk: Run number 1 of rule 'makeindex grammarindex.idx' Latexmk: Run number 1 of rule 'makeindex generalindex.idx' Latexmk: Run number 2 of rule 'pdflatex' This is pdfTeX, Version 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian) (preloaded format=pdflatex) restricted \write18 enabled. entering extended mode Latexmk: Summary of warnings: Latex failed to resolve 287 reference(s) Latexmk: Run number 2 of rule 'makeindex libraryindex.idx' Latexmk: Run number 3 of rule 'pdflatex' This is pdfTeX, Version 3.14159265-2.6-1.40.16 (TeX Live 2015/Debian) (preloaded format=pdflatex) restricted \write18 enabled. entering extended mode Latexmk: Summary of warnings: Latex failed to resolve 287 reference(s) Overfull \hbox (19.64194pt too wide) in paragraph at lines 7256--7268 Overfull \hbox (19.98665pt too wide) in paragraph at lines 7256--7268 travis_time:end:35bea25d:start=1564617209187353703,finish=1564617223277388678,duration=14090034975 The command "if [ "$BUILD_TYPE" = "latexmk" ]; then docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && latexmk -pdf std -silent"; ! grep -Fe "Overfull \hbox" std.log && ! grep "LaTeX Warning..There were undefined references" std.log; fi" exited with 1. travis_time:start:19673cdc $ if [ "$BUILD_TYPE" = "make" ]; then docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && make -j2"; fi travis_time:end:19673cdc:start=1564617223282132229,finish=1564617223285202048,duration=3069819 The command "if [ "$BUILD_TYPE" = "make" ]; then docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && make -j2"; fi" exited with 0. travis_time:start:12a5f90b $ if [ "$BUILD_TYPE" = "complete" ]; then for FIGURE in *.dot; do docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && dot -o$(basename $FIGURE .dot).pdf -Tpdf $FIGURE"; done; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex generalindex"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex libraryindex"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex grammarindex"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex impldefindex"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex -s basic.gst -o xrefindex.gls xrefindex.glo"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex -s basic.gst -o xrefdelta.gls xrefdelta.glo"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; fi travis_time:end:12a5f90b:start=1564617223289725255,finish=1564617223292857780,duration=3132525 The command "if [ "$BUILD_TYPE" = "complete" ]; then for FIGURE in *.dot; do docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && dot -o$(basename $FIGURE .dot).pdf -Tpdf $FIGURE"; done; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex generalindex"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex libraryindex"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex grammarindex"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex impldefindex"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex -s basic.gst -o xrefindex.gls xrefindex.glo"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && makeindex -s basic.gst -o xrefdelta.gls xrefdelta.glo"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && pdflatex std"; fi" exited with 0. travis_time:start:0fab58c9 $ popd ~/build/cplusplus/draft travis_time:end:0fab58c9:start=1564617223297327040,finish=1564617223299952465,duration=2625425 The command "popd" exited with 0. travis_time:start:2713bcd2 $ if [ "$BUILD_TYPE" = "check-whitespace" ]; then ! grep '\s$' source/*.tex; fi travis_time:end:2713bcd2:start=1564617223303736450,finish=1564617223306420449,duration=2683999 The command "if [ "$BUILD_TYPE" = "check-whitespace" ]; then ! grep '\s$' source/*.tex; fi" exited with 0. travis_time:start:0f94444b $ if [ "$BUILD_TYPE" = "check-newlines" ]; then for f in source/*.tex; do [ $(tail -c 2 $f | wc -l) -eq 1 ] || exit 1; done; fi travis_time:end:0f94444b:start=1564617223310467102,finish=1564617223313131782,duration=2664680 The command "if [ "$BUILD_TYPE" = "check-newlines" ]; then for f in source/*.tex; do [ $(tail -c 2 $f | wc -l) -eq 1 ] || exit 1; done; fi" exited with 0. travis_time:start:35901300 $ if [ "$BUILD_TYPE" = "check-macro-use" ]; then ! grep '\\opt[^{}]' source/*.tex; ! grep 'opt{}' source/*.tex; fi travis_time:end:35901300:start=1564617223317137187,finish=1564617223319927768,duration=2790581 The command "if [ "$BUILD_TYPE" = "check-macro-use" ]; then ! grep '\opt[^{}]' source/*.tex; ! grep 'opt{}' source/*.tex; fi" exited with 0. travis_time:start:08015601 $ pushd source ~/build/cplusplus/draft/source ~/build/cplusplus/draft travis_time:end:08015601:start=1564617223324404251,finish=1564617223327966193,duration=3561942 The command "pushd source" exited with 0. travis_time:start:052d22f3 $ for FIGURE in *.dot; do docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && dot -o$(basename $FIGURE .dot).pdf -Tpdf $FIGURE"; git status --porcelain $(basename $FIGURE .dot).pdf; done M source/figdag.pdf M source/figname.pdf M source/fignonvirt.pdf M source/figstreampos.pdf M source/figvirt.pdf M source/figvirtnonvirt.pdf M source/valuecategories.pdf travis_time:end:052d22f3:start=1564617223332605246,finish=1564617224375364303,duration=1042759057 The command "for FIGURE in *.dot; do docker exec -it texlive-basic bash -c "cd /$TRAVIS_REPO_SLUG/source && dot -o$(basename $FIGURE .dot).pdf -Tpdf $FIGURE"; git status --porcelain $(basename $FIGURE .dot).pdf; done" exited with 0. travis_time:start:1a0a9546 $ popd ~/build/cplusplus/draft travis_time:end:1a0a9546:start=1564617224379586061,finish=1564617224382267652,duration=2681591 The command "popd" exited with 0. Done. Your build exited with 1. |