Console Output
Skipping 188 KB.. Full Log# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py 18:41:47 18:41:47 # automatic invalidation once every day 18:41:47 RUN echo "2021-01-29 (+0000)" 18:41:47 18:41:47 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 18:41:47 18:41:47 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 18:41:47 18:41:47 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 18:41:47 18:41:47 18:41:47 # for each dependency: echo version, apt update, apt install, apt clean 18:41:47 RUN echo "apt-src: 0.25.2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src 18:41:47 RUN echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper 18:41:47 RUN echo "python-pip: 9.0.1-2.3~ubuntu1.18.04.4" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-pip 18:41:47 RUN echo "python-setuptools: 39.0.1-2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-setuptools 18:41:47 RUN echo "ros-melodic-catkin: 0.7.29-1bionic.20201014.191449" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin 18:41:47 18:41:47 18:41:47 USER buildfarm 18:41:47 ENTRYPOINT ["sh", "-c"] 18:41:47 CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic mqtt_bridge --sourcedeb-dir /tmp/binarydeb"] 18:41:47 Mount the following volumes when running the container: 18:41:47 -v /tmp/ros_buildfarm:/tmp/ros_buildfarm:ro 18:41:47 -v /tmp/binarydeb:/tmp/binarydeb 18:41:47 + echo # END SECTION 18:41:47 # END SECTION 18:41:47 [Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins3013578673962823290.sh 18:41:47 + sleep 1 18:41:47 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 27250 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid 18:41:48 + echo # BEGIN SECTION: Build Dockerfile - build binarydeb18:45:08 + echo # BEGIN SECTION: Run Dockerfile - build binarydeb1. Build Dockerfile - build binarydebHide Details
18:41:48 # BEGIN SECTION: Build Dockerfile - build binarydeb 18:41:48 + cd /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_build_binarydeb 18:41:48 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 18:41:48 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 18:41:48 Check docker base image for updates: docker pull ubuntu:bionic 18:41:50 bionic: Pulling from library/ubuntu 18:41:50 Digest: sha256:37f8f08b889896172533625fac8fa2c442e075b5e66ff91bf01332fe76bfc3d4 18:41:50 Status: Image is up to date for ubuntu:bionic 18:41:50 + docker build --force-rm -t binarydeb_build.melodic_ubuntu_bionic_amd64_mqtt_bridge . 18:41:50 Sending build context to Docker daemon 20.99 kB Sending build context to Docker daemon 20.99 kB 18:41:50 Step 1 : FROM ubuntu:bionic 18:41:50 ---> 8d7db987919d 18:41:50 Step 2 : VOLUME /var/cache/apt/archives 18:41:50 ---> Using cache 18:41:50 ---> 7142699436c4 18:41:50 Step 3 : ENV DEBIAN_FRONTEND noninteractive 18:41:51 ---> Using cache 18:41:51 ---> 15ca864bdc10 18:41:51 Step 4 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 18:41:51 ---> Using cache 18:41:51 ---> 74d1e4b04e52 18:41:51 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 18:41:51 ---> Using cache 18:41:51 ---> 5c6af94dde9b 18:41:51 Step 6 : RUN locale-gen en_US.UTF-8 18:41:52 ---> Using cache 18:41:52 ---> 7c8f1f214ed0 18:41:52 Step 7 : ENV LANG en_US.UTF-8 18:41:52 ---> Using cache 18:41:52 ---> 5009b559b63e 18:41:52 Step 8 : ENV TZ GMT+00 18:41:52 ---> Using cache 18:41:52 ---> a4082596e984 18:41:52 Step 9 : RUN useradd -u 1002 -l -m buildfarm 18:41:53 ---> Using cache 18:41:53 ---> 10a971836ceb 18:41:53 Step 10 : RUN mkdir /tmp/keys 18:41:53 ---> Using cache 18:41:53 ---> 2cadc7e71436 18:41:53 Step 11 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 18:41:54 ---> Using cache 18:41:54 ---> 15bd1918bed9 18:41:54 Step 12 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 18:41:54 ---> Using cache 18:41:54 ---> 80c5bda0b573 18:41:54 Step 13 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 18:41:54 ---> Using cache 18:41:54 ---> b223c8791f43 18:41:54 Step 14 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 18:41:55 ---> Using cache 18:41:55 ---> 108c42dffe3b 18:41:55 Step 15 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 18:41:56 ---> Running in f4c62af43414 18:41:56 deb http://packages.ros.org/ros/ubuntu bionic main 18:41:57 ---> 4e30ea6ad428 18:41:57 Removing intermediate container f4c62af43414 18:41:57 Step 16 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) 18:41:57 ---> Running in 7605d79d4880 18:41:58 ---> 89ea762e6931 18:41:58 Removing intermediate container 7605d79d4880 18:41:58 Step 17 : RUN mkdir /tmp/wrapper_scripts 18:41:58 ---> Running in 80edf647de49 18:41:58 ---> d61659998765 18:41:58 Removing intermediate container 80edf647de49 18:41:58 Step 18 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py 18:41:59 ---> Running in e4d1467c1dd0 18:41:59 ---> 6f9d7330c948 18:41:59 Removing intermediate container e4d1467c1dd0 18:41:59 Step 19 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py 18:41:59 ---> Running in d395cc26fb3f 18:42:00 ---> 02a229ec0c7d 18:42:00 Removing intermediate container d395cc26fb3f 18:42:00 Step 20 : RUN echo "2021-01-29 (+0000)" 18:42:00 ---> Running in c44a2b1efe37 18:42:00 2021-01-29 (+0000) 18:42:01 ---> fb15aedbf410 18:42:01 Removing intermediate container c44a2b1efe37 18:42:01 Step 21 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 18:42:01 ---> Running in 18e9f398fb3e 18:42:01 Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B] 18:42:01 Get:2 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 18:42:01 Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease 18:42:01 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 18:42:01 Get:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] 18:42:01 Get:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 18:42:02 Get:7 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [193 kB] 18:42:02 Get:8 http://packages.ros.org/ros/ubuntu bionic InRelease [4,683 B] 18:42:02 Get:9 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [291 kB] 18:42:02 Get:10 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [1,383 kB] 18:42:02 Get:11 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [1,908 kB] 18:42:02 Get:12 http://archive.ubuntu.com/ubuntu bionic/multiverse Sources [216 kB] 18:42:02 Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Sources [13.2 kB] 18:42:02 Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [2,156 kB] 18:42:02 Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [2,348 kB] 18:42:02 Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [42.6 kB] 18:42:02 Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [323 kB] 18:42:02 Get:18 http://archive.ubuntu.com/ubuntu bionic-security/multiverse Sources [5,565 B] 18:42:02 Get:19 http://archive.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [35.5 kB] 18:42:03 Get:20 http://packages.ros.org/ros/ubuntu bionic/main amd64 Packages [749 kB] 18:42:04 Fetched 10.0 MB in 3s (3,910 kB/s) 18:42:04 Reading package lists... 18:42:06 Reading package lists... 18:42:07 Building dependency tree... 18:42:07 Reading state information... 18:42:07 The following additional packages will be installed: 18:42:07 file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib 18:42:07 libpython3.6-minimal libpython3.6-stdlib mime-support python3-minimal 18:42:07 python3.6 python3.6-minimal xz-utils 18:42:07 Suggested packages: 18:42:07 python3-doc python3-tk python3-venv python3.6-venv python3.6-doc binutils 18:42:07 binfmt-support 18:42:08 The following NEW packages will be installed: 18:42:08 file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib 18:42:08 libpython3.6-minimal libpython3.6-stdlib mime-support python3 18:42:08 python3-minimal python3.6 python3.6-minimal xz-utils 18:42:08 0 upgraded, 14 newly installed, 0 to remove and 2 not upgraded. 18:42:08 Need to get 4,689 kB of archives. 18:42:08 After this operation, 28.3 MB of additional disk space will be used. 18:42:08 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-minimal amd64 3.6.9-1~18.04ubuntu1.3 [533 kB] 18:42:08 Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1 amd64 2.2.5-3ubuntu0.2 [80.5 kB] 18:42:08 Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6-minimal amd64 3.6.9-1~18.04ubuntu1.3 [1,609 kB] 18:42:08 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-minimal amd64 3.6.7-1~18.04 [23.7 kB] 18:42:08 Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 mime-support all 3.60ubuntu1 [30.1 kB] 18:42:08 Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpdec2 amd64 2.4.2-1ubuntu1 [84.1 kB] 18:42:08 Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-stdlib amd64 3.6.9-1~18.04ubuntu1.3 [1,713 kB] 18:42:08 Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6 amd64 3.6.9-1~18.04ubuntu1.3 [203 kB] 18:42:08 Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3-stdlib amd64 3.6.7-1~18.04 [7,240 B] 18:42:08 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3 amd64 3.6.7-1~18.04 [47.2 kB] 18:42:08 Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic-mgc amd64 1:5.32-2ubuntu0.4 [184 kB] 18:42:08 Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic1 amd64 1:5.32-2ubuntu0.4 [68.6 kB] 18:42:08 Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 file amd64 1:5.32-2ubuntu0.4 [22.1 kB] 18:42:08 Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 xz-utils amd64 5.2.2-1.3 [83.8 kB] 18:42:08 [91mdebconf: delaying package configuration, since apt-utils is not installed 18:42:08 [0mFetched 4,689 kB in 0s (26.2 MB/s) 18:42:08 Selecting previously unselected package libpython3.6-minimal:amd64. 18:42:08 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5005 files and directories currently installed.) 18:42:08 Preparing to unpack .../libpython3.6-minimal_3.6.9-1~18.04ubuntu1.3_amd64.deb ... 18:42:08 Unpacking libpython3.6-minimal:amd64 (3.6.9-1~18.04ubuntu1.3) ... 18:42:08 Selecting previously unselected package libexpat1:amd64. 18:42:08 Preparing to unpack .../libexpat1_2.2.5-3ubuntu0.2_amd64.deb ... 18:42:08 Unpacking libexpat1:amd64 (2.2.5-3ubuntu0.2) ... 18:42:08 Selecting previously unselected package python3.6-minimal. 18:42:08 Preparing to unpack .../python3.6-minimal_3.6.9-1~18.04ubuntu1.3_amd64.deb ... 18:42:08 Unpacking python3.6-minimal (3.6.9-1~18.04ubuntu1.3) ... 18:42:09 Setting up libpython3.6-minimal:amd64 (3.6.9-1~18.04ubuntu1.3) ... 18:42:09 Setting up libexpat1:amd64 (2.2.5-3ubuntu0.2) ... 18:42:09 Setting up python3.6-minimal (3.6.9-1~18.04ubuntu1.3) ... 18:42:10 Selecting previously unselected package python3-minimal. 18:42:10 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5252 files and directories currently installed.) 18:42:10 Preparing to unpack .../0-python3-minimal_3.6.7-1~18.04_amd64.deb ... 18:42:10 Unpacking python3-minimal (3.6.7-1~18.04) ... 18:42:10 Selecting previously unselected package mime-support. 18:42:10 Preparing to unpack .../1-mime-support_3.60ubuntu1_all.deb ... 18:42:10 Unpacking mime-support (3.60ubuntu1) ... 18:42:10 Selecting previously unselected package libmpdec2:amd64. 18:42:10 Preparing to unpack .../2-libmpdec2_2.4.2-1ubuntu1_amd64.deb ... 18:42:10 Unpacking libmpdec2:amd64 (2.4.2-1ubuntu1) ... 18:42:10 Selecting previously unselected package libpython3.6-stdlib:amd64. 18:42:10 Preparing to unpack .../3-libpython3.6-stdlib_3.6.9-1~18.04ubuntu1.3_amd64.deb ... 18:42:10 Unpacking libpython3.6-stdlib:amd64 (3.6.9-1~18.04ubuntu1.3) ... 18:42:10 Selecting previously unselected package python3.6. 18:42:10 Preparing to unpack .../4-python3.6_3.6.9-1~18.04ubuntu1.3_amd64.deb ... 18:42:10 Unpacking python3.6 (3.6.9-1~18.04ubuntu1.3) ... 18:42:11 Selecting previously unselected package libpython3-stdlib:amd64. 18:42:11 Preparing to unpack .../5-libpython3-stdlib_3.6.7-1~18.04_amd64.deb ... 18:42:11 Unpacking libpython3-stdlib:amd64 (3.6.7-1~18.04) ... 18:42:11 Setting up python3-minimal (3.6.7-1~18.04) ... 18:42:11 Selecting previously unselected package python3. 18:42:11 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5682 files and directories currently installed.) 18:42:11 Preparing to unpack .../python3_3.6.7-1~18.04_amd64.deb ... 18:42:11 Unpacking python3 (3.6.7-1~18.04) ... 18:42:11 Selecting previously unselected package libmagic-mgc. 18:42:11 Preparing to unpack .../libmagic-mgc_1%3a5.32-2ubuntu0.4_amd64.deb ... 18:42:11 Unpacking libmagic-mgc (1:5.32-2ubuntu0.4) ... 18:42:11 Selecting previously unselected package libmagic1:amd64. 18:42:11 Preparing to unpack .../libmagic1_1%3a5.32-2ubuntu0.4_amd64.deb ... 18:42:11 Unpacking libmagic1:amd64 (1:5.32-2ubuntu0.4) ... 18:42:11 Selecting previously unselected package file. 18:42:11 Preparing to unpack .../file_1%3a5.32-2ubuntu0.4_amd64.deb ... 18:42:11 Unpacking file (1:5.32-2ubuntu0.4) ... 18:42:11 Selecting previously unselected package xz-utils. 18:42:11 Preparing to unpack .../xz-utils_5.2.2-1.3_amd64.deb ... 18:42:11 Unpacking xz-utils (5.2.2-1.3) ... 18:42:12 Setting up mime-support (3.60ubuntu1) ... 18:42:12 Setting up libmagic-mgc (1:5.32-2ubuntu0.4) ... 18:42:12 Setting up libmagic1:amd64 (1:5.32-2ubuntu0.4) ... 18:42:12 Setting up xz-utils (5.2.2-1.3) ... 18:42:12 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode 18:42:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist 18:42:12 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist 18:42:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist 18:42:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist 18:42:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist 18:42:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist 18:42:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist 18:42:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist 18:42:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist 18:42:12 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist 18:42:12 Setting up libmpdec2:amd64 (2.4.2-1ubuntu1) ... 18:42:12 Setting up libpython3.6-stdlib:amd64 (3.6.9-1~18.04ubuntu1.3) ... 18:42:12 Setting up python3.6 (3.6.9-1~18.04ubuntu1.3) ... 18:42:13 Setting up file (1:5.32-2ubuntu0.4) ... 18:42:13 Setting up libpython3-stdlib:amd64 (3.6.7-1~18.04) ... 18:42:13 Setting up python3 (3.6.7-1~18.04) ... 18:42:13 Processing triggers for libc-bin (2.27-3ubuntu1.4) ... 18:42:15 ---> 8975cd040f71 18:42:15 Removing intermediate container 18e9f398fb3e 18:42:15 Step 22 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 18:42:15 ---> Running in 50b8523a83d6 18:42:15 Invoking 'apt-get update' 18:42:15 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease 18:42:15 Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease 18:42:15 Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease 18:42:15 Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 18:42:15 Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 18:42:15 Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease 18:42:16 Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease 18:42:19 Reading package lists... 18:42:19 Invoking 'apt-get install -q -y dh-python' 18:42:20 Reading package lists... 18:42:21 Building dependency tree... 18:42:21 Reading state information... 18:42:21 The following additional packages will be installed: 18:42:21 python3-distutils python3-lib2to3 18:42:21 Suggested packages: 18:42:21 libdpkg-perl dpkg-dev 18:42:21 The following NEW packages will be installed: 18:42:21 dh-python python3-distutils python3-lib2to3 18:42:21 0 upgraded, 3 newly installed, 0 to remove and 2 not upgraded. 18:42:21 Need to get 311 kB of archives. 18:42:21 After this operation, 3,582 kB of additional disk space will be used. 18:42:21 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-lib2to3 all 3.6.9-1~18.04 [77.4 kB] 18:42:21 Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-distutils all 3.6.9-1~18.04 [144 kB] 18:42:21 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-python all 3.20180325ubuntu2 [89.2 kB] 18:42:21 debconf: delaying package configuration, since apt-utils is not installed 18:42:21 Fetched 311 kB in 0s (4,686 kB/s) 18:42:21 Selecting previously unselected package python3-lib2to3. 18:42:21 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 5786 files and directories currently installed.) 18:42:21 Preparing to unpack .../python3-lib2to3_3.6.9-1~18.04_all.deb ... 18:42:21 Unpacking python3-lib2to3 (3.6.9-1~18.04) ... 18:42:22 Selecting previously unselected package python3-distutils. 18:42:22 Preparing to unpack .../python3-distutils_3.6.9-1~18.04_all.deb ... 18:42:22 Unpacking python3-distutils (3.6.9-1~18.04) ... 18:42:22 Selecting previously unselected package dh-python. 18:42:22 Preparing to unpack .../dh-python_3.20180325ubuntu2_all.deb ... 18:42:22 Unpacking dh-python (3.20180325ubuntu2) ... 18:42:22 Setting up python3-lib2to3 (3.6.9-1~18.04) ... 18:42:22 Setting up python3-distutils (3.6.9-1~18.04) ... 18:42:22 Setting up dh-python (3.20180325ubuntu2) ... 18:42:23 Invoking 'apt-get clean' 18:42:23 ---> b728ca1d9e20 18:42:23 Removing intermediate container 50b8523a83d6 18:42:23 Step 23 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 18:42:24 ---> Running in d75a618f4748 18:42:24 Invoking 'apt-get update' 18:42:24 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease 18:42:24 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 18:42:24 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 18:42:24 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 18:42:24 Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease 18:42:24 Hit:6 http://packages.ros.org/ros/ubuntu bionic InRelease 18:42:24 Hit:7 http://security.ubuntu.com/ubuntu bionic-security InRelease 18:42:27 Reading package lists... 18:42:27 Invoking 'apt-get install -q -y ccache gcc build-essential' 18:42:29 Reading package lists... 18:42:30 Building dependency tree... 18:42:30 Reading state information... 18:42:30 The following additional packages will be installed: 18:42:30 binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-7 dpkg-dev 18:42:30 fakeroot g++ g++-7 gcc-7 gcc-7-base libalgorithm-diff-perl 18:42:30 libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan4 libatomic1 18:42:30 libbinutils libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libdpkg-perl 18:42:30 libfakeroot libfile-fcntllock-perl libgcc-7-dev libgdbm-compat4 libgdbm5 18:42:30 libgomp1 libisl19 libitm1 liblocale-gettext-perl liblsan0 libmpc3 libmpfr6 18:42:30 libmpx2 libperl5.26 libquadmath0 libstdc++-7-dev libtsan0 libubsan0 18:42:30 linux-libc-dev make manpages manpages-dev netbase patch perl 18:42:30 perl-modules-5.26 18:42:30 Suggested packages: 18:42:30 binutils-doc distcc cpp-doc gcc-7-locales debian-keyring g++-multilib 18:42:30 g++-7-multilib gcc-7-doc libstdc++6-7-dbg gcc-multilib autoconf automake 18:42:30 libtool flex bison gdb gcc-doc gcc-7-multilib libgcc1-dbg libgomp1-dbg 18:42:30 libitm1-dbg libatomic1-dbg libasan4-dbg liblsan0-dbg libtsan0-dbg 18:42:30 libubsan0-dbg libcilkrts5-dbg libmpx2-dbg libquadmath0-dbg glibc-doc git bzr 18:42:30 gdbm-l10n libstdc++-7-doc make-doc man-browser ed diffutils-doc perl-doc 18:42:30 libterm-readline-gnu-perl | libterm-readline-perl-perl 18:42:30 The following NEW packages will be installed: 18:42:30 binutils binutils-common binutils-x86-64-linux-gnu build-essential ccache 18:42:30 cpp cpp-7 dpkg-dev fakeroot g++ g++-7 gcc gcc-7 gcc-7-base 18:42:30 libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl 18:42:30 libasan4 libatomic1 libbinutils libc-dev-bin libc6-dev libcc1-0 libcilkrts5 18:42:30 libdpkg-perl libfakeroot libfile-fcntllock-perl libgcc-7-dev libgdbm-compat4 18:42:30 libgdbm5 libgomp1 libisl19 libitm1 liblocale-gettext-perl liblsan0 libmpc3 18:42:30 libmpfr6 libmpx2 libperl5.26 libquadmath0 libstdc++-7-dev libtsan0 libubsan0 18:42:30 linux-libc-dev make manpages manpages-dev netbase patch perl 18:42:30 perl-modules-5.26 18:42:30 0 upgraded, 51 newly installed, 0 to remove and 2 not upgraded. 18:42:30 Need to get 51.2 MB of archives. 18:42:30 After this operation, 210 MB of additional disk space will be used. 18:42:30 Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblocale-gettext-perl amd64 1.07-3build2 [16.6 kB] 18:42:30 Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl-modules-5.26 all 5.26.1-6ubuntu0.5 [2,762 kB] 18:42:30 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm5 amd64 1.14.1-6 [26.0 kB] 18:42:30 Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm-compat4 amd64 1.14.1-6 [6,084 B] 18:42:30 Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libperl5.26 amd64 5.26.1-6ubuntu0.5 [3,534 kB] 18:42:31 Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl amd64 5.26.1-6ubuntu0.5 [201 kB] 18:42:31 Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 netbase all 5.4 [12.7 kB] 18:42:31 Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages all 4.15-1 [1,234 kB] 18:42:31 Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-common amd64 2.30-21ubuntu1~18.04.4 [196 kB] 18:42:31 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbinutils amd64 2.30-21ubuntu1~18.04.4 [488 kB] 18:42:31 Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.30-21ubuntu1~18.04.4 [1,839 kB] 18:42:31 Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils amd64 2.30-21ubuntu1~18.04.4 [3,392 B] 18:42:31 Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc-dev-bin amd64 2.27-3ubuntu1.4 [71.8 kB] 18:42:31 Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-libc-dev amd64 4.15.0-135.139 [990 kB] 18:42:31 Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libc6-dev amd64 2.27-3ubuntu1.4 [2,585 kB] 18:42:31 Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7-base amd64 7.5.0-3ubuntu1~18.04 [18.3 kB] 18:42:31 Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 libisl19 amd64 0.19-1 [551 kB] 18:42:31 Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpfr6 amd64 4.0.1-1 [243 kB] 18:42:31 Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpc3 amd64 1.1.0-1 [40.8 kB] 18:42:31 Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp-7 amd64 7.5.0-3ubuntu1~18.04 [8,591 kB] 18:42:31 Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp amd64 4:7.4.0-1ubuntu2.3 [27.7 kB] 18:42:31 Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcc1-0 amd64 8.4.0-1ubuntu1~18.04 [39.4 kB] 18:42:31 Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgomp1 amd64 8.4.0-1ubuntu1~18.04 [76.5 kB] 18:42:31 Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libitm1 amd64 8.4.0-1ubuntu1~18.04 [27.9 kB] 18:42:31 Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libatomic1 amd64 8.4.0-1ubuntu1~18.04 [9,192 B] 18:42:31 Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libasan4 amd64 7.5.0-3ubuntu1~18.04 [358 kB] 18:42:31 Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblsan0 amd64 8.4.0-1ubuntu1~18.04 [133 kB] 18:42:31 Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtsan0 amd64 8.4.0-1ubuntu1~18.04 [288 kB] 18:42:31 Get:29 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libubsan0 amd64 7.5.0-3ubuntu1~18.04 [126 kB] 18:42:31 Get:30 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcilkrts5 amd64 7.5.0-3ubuntu1~18.04 [42.5 kB] 18:42:31 Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmpx2 amd64 8.4.0-1ubuntu1~18.04 [11.6 kB] 18:42:31 Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libquadmath0 amd64 8.4.0-1ubuntu1~18.04 [134 kB] 18:42:31 Get:33 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgcc-7-dev amd64 7.5.0-3ubuntu1~18.04 [2,378 kB] 18:42:31 Get:34 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7 amd64 7.5.0-3ubuntu1~18.04 [9,381 kB] 18:42:31 Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc amd64 4:7.4.0-1ubuntu2.3 [5,184 B] 18:42:31 Get:36 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libstdc++-7-dev amd64 7.5.0-3ubuntu1~18.04 [1,471 kB] 18:42:31 Get:37 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++-7 amd64 7.5.0-3ubuntu1~18.04 [9,697 kB] 18:42:32 Get:38 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++ amd64 4:7.4.0-1ubuntu2.3 [1,568 B] 18:42:32 Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 make amd64 4.1-9.1ubuntu1 [154 kB] 18:42:32 Get:40 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdpkg-perl all 1.19.0.5ubuntu2.3 [211 kB] 18:42:32 Get:41 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 patch amd64 2.7.6-2ubuntu1.1 [102 kB] 18:42:32 Get:42 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dpkg-dev all 1.19.0.5ubuntu2.3 [607 kB] 18:42:32 Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 build-essential amd64 12.4ubuntu1 [4,758 B] 18:42:32 Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 ccache amd64 3.4.1-1 [110 kB] 18:42:32 Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfakeroot amd64 1.22-2ubuntu1 [25.9 kB] 18:42:32 Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 fakeroot amd64 1.22-2ubuntu1 [62.3 kB] 18:42:32 Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-perl all 1.19.03-1 [47.6 kB] 18:42:32 Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-xs-perl amd64 0.04-5 [11.1 kB] 18:42:32 Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB] 18:42:32 Get:50 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-fcntllock-perl amd64 0.22-3build2 [33.2 kB] 18:42:32 Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages-dev all 4.15-1 [2,217 kB] 18:42:32 debconf: delaying package configuration, since apt-utils is not installed 18:42:32 Fetched 51.2 MB in 1s (37.9 MB/s) 18:42:32 Selecting previously unselected package liblocale-gettext-perl. 18:42:32 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 6239 files and directories currently installed.) 18:42:32 Preparing to unpack .../00-liblocale-gettext-perl_1.07-3build2_amd64.deb ... 18:42:32 Unpacking liblocale-gettext-perl (1.07-3build2) ... 18:42:33 Selecting previously unselected package perl-modules-5.26. 18:42:33 Preparing to unpack .../01-perl-modules-5.26_5.26.1-6ubuntu0.5_all.deb ... 18:42:33 Unpacking perl-modules-5.26 (5.26.1-6ubuntu0.5) ... 18:42:34 Selecting previously unselected package libgdbm5:amd64. 18:42:34 Preparing to unpack .../02-libgdbm5_1.14.1-6_amd64.deb ... 18:42:34 Unpacking libgdbm5:amd64 (1.14.1-6) ... 18:42:34 Selecting previously unselected package libgdbm-compat4:amd64. 18:42:34 Preparing to unpack .../03-libgdbm-compat4_1.14.1-6_amd64.deb ... 18:42:34 Unpacking libgdbm-compat4:amd64 (1.14.1-6) ... 18:42:34 Selecting previously unselected package libperl5.26:amd64. 18:42:34 Preparing to unpack .../04-libperl5.26_5.26.1-6ubuntu0.5_amd64.deb ... 18:42:34 Unpacking libperl5.26:amd64 (5.26.1-6ubuntu0.5) ... 18:42:35 Selecting previously unselected package perl. 18:42:35 Preparing to unpack .../05-perl_5.26.1-6ubuntu0.5_amd64.deb ... 18:42:35 Unpacking perl (5.26.1-6ubuntu0.5) ... 18:42:35 Selecting previously unselected package netbase. 18:42:35 Preparing to unpack .../06-netbase_5.4_all.deb ... 18:42:35 Unpacking netbase (5.4) ... 18:42:35 Selecting previously unselected package manpages. 18:42:35 Preparing to unpack .../07-manpages_4.15-1_all.deb ... 18:42:35 Unpacking manpages (4.15-1) ... 18:42:35 Selecting previously unselected package binutils-common:amd64. 18:42:35 Preparing to unpack .../08-binutils-common_2.30-21ubuntu1~18.04.4_amd64.deb ... 18:42:35 Unpacking binutils-common:amd64 (2.30-21ubuntu1~18.04.4) ... 18:42:35 Selecting previously unselected package libbinutils:amd64. 18:42:35 Preparing to unpack .../09-libbinutils_2.30-21ubuntu1~18.04.4_amd64.deb ... 18:42:35 Unpacking libbinutils:amd64 (2.30-21ubuntu1~18.04.4) ... 18:42:35 Selecting previously unselected package binutils-x86-64-linux-gnu. 18:42:36 Preparing to unpack .../10-binutils-x86-64-linux-gnu_2.30-21ubuntu1~18.04.4_amd64.deb ... 18:42:36 Unpacking binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.4) ... 18:42:36 Selecting previously unselected package binutils. 18:42:36 Preparing to unpack .../11-binutils_2.30-21ubuntu1~18.04.4_amd64.deb ... 18:42:36 Unpacking binutils (2.30-21ubuntu1~18.04.4) ... 18:42:36 Selecting previously unselected package libc-dev-bin. 18:42:36 Preparing to unpack .../12-libc-dev-bin_2.27-3ubuntu1.4_amd64.deb ... 18:42:36 Unpacking libc-dev-bin (2.27-3ubuntu1.4) ... 18:42:36 Selecting previously unselected package linux-libc-dev:amd64. 18:42:36 Preparing to unpack .../13-linux-libc-dev_4.15.0-135.139_amd64.deb ... 18:42:36 Unpacking linux-libc-dev:amd64 (4.15.0-135.139) ... 18:42:37 Selecting previously unselected package libc6-dev:amd64. 18:42:37 Preparing to unpack .../14-libc6-dev_2.27-3ubuntu1.4_amd64.deb ... 18:42:37 Unpacking libc6-dev:amd64 (2.27-3ubuntu1.4) ... 18:42:37 Selecting previously unselected package gcc-7-base:amd64. 18:42:37 Preparing to unpack .../15-gcc-7-base_7.5.0-3ubuntu1~18.04_amd64.deb ... 18:42:37 Unpacking gcc-7-base:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:37 Selecting previously unselected package libisl19:amd64. 18:42:37 Preparing to unpack .../16-libisl19_0.19-1_amd64.deb ... 18:42:37 Unpacking libisl19:amd64 (0.19-1) ... 18:42:38 Selecting previously unselected package libmpfr6:amd64. 18:42:38 Preparing to unpack .../17-libmpfr6_4.0.1-1_amd64.deb ... 18:42:38 Unpacking libmpfr6:amd64 (4.0.1-1) ... 18:42:38 Selecting previously unselected package libmpc3:amd64. 18:42:38 Preparing to unpack .../18-libmpc3_1.1.0-1_amd64.deb ... 18:42:38 Unpacking libmpc3:amd64 (1.1.0-1) ... 18:42:38 Selecting previously unselected package cpp-7. 18:42:38 Preparing to unpack .../19-cpp-7_7.5.0-3ubuntu1~18.04_amd64.deb ... 18:42:38 Unpacking cpp-7 (7.5.0-3ubuntu1~18.04) ... 18:42:39 Selecting previously unselected package cpp. 18:42:39 Preparing to unpack .../20-cpp_4%3a7.4.0-1ubuntu2.3_amd64.deb ... 18:42:39 Unpacking cpp (4:7.4.0-1ubuntu2.3) ... 18:42:39 Selecting previously unselected package libcc1-0:amd64. 18:42:39 Preparing to unpack .../21-libcc1-0_8.4.0-1ubuntu1~18.04_amd64.deb ... 18:42:39 Unpacking libcc1-0:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:39 Selecting previously unselected package libgomp1:amd64. 18:42:39 Preparing to unpack .../22-libgomp1_8.4.0-1ubuntu1~18.04_amd64.deb ... 18:42:39 Unpacking libgomp1:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:39 Selecting previously unselected package libitm1:amd64. 18:42:39 Preparing to unpack .../23-libitm1_8.4.0-1ubuntu1~18.04_amd64.deb ... 18:42:39 Unpacking libitm1:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:39 Selecting previously unselected package libatomic1:amd64. 18:42:39 Preparing to unpack .../24-libatomic1_8.4.0-1ubuntu1~18.04_amd64.deb ... 18:42:39 Unpacking libatomic1:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:39 Selecting previously unselected package libasan4:amd64. 18:42:39 Preparing to unpack .../25-libasan4_7.5.0-3ubuntu1~18.04_amd64.deb ... 18:42:39 Unpacking libasan4:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:40 Selecting previously unselected package liblsan0:amd64. 18:42:40 Preparing to unpack .../26-liblsan0_8.4.0-1ubuntu1~18.04_amd64.deb ... 18:42:40 Unpacking liblsan0:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:40 Selecting previously unselected package libtsan0:amd64. 18:42:40 Preparing to unpack .../27-libtsan0_8.4.0-1ubuntu1~18.04_amd64.deb ... 18:42:40 Unpacking libtsan0:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:40 Selecting previously unselected package libubsan0:amd64. 18:42:40 Preparing to unpack .../28-libubsan0_7.5.0-3ubuntu1~18.04_amd64.deb ... 18:42:40 Unpacking libubsan0:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:40 Selecting previously unselected package libcilkrts5:amd64. 18:42:40 Preparing to unpack .../29-libcilkrts5_7.5.0-3ubuntu1~18.04_amd64.deb ... 18:42:40 Unpacking libcilkrts5:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:40 Selecting previously unselected package libmpx2:amd64. 18:42:40 Preparing to unpack .../30-libmpx2_8.4.0-1ubuntu1~18.04_amd64.deb ... 18:42:40 Unpacking libmpx2:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:40 Selecting previously unselected package libquadmath0:amd64. 18:42:40 Preparing to unpack .../31-libquadmath0_8.4.0-1ubuntu1~18.04_amd64.deb ... 18:42:40 Unpacking libquadmath0:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:40 Selecting previously unselected package libgcc-7-dev:amd64. 18:42:40 Preparing to unpack .../32-libgcc-7-dev_7.5.0-3ubuntu1~18.04_amd64.deb ... 18:42:40 Unpacking libgcc-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:41 Selecting previously unselected package gcc-7. 18:42:41 Preparing to unpack .../33-gcc-7_7.5.0-3ubuntu1~18.04_amd64.deb ... 18:42:41 Unpacking gcc-7 (7.5.0-3ubuntu1~18.04) ... 18:42:42 Selecting previously unselected package gcc. 18:42:42 Preparing to unpack .../34-gcc_4%3a7.4.0-1ubuntu2.3_amd64.deb ... 18:42:42 Unpacking gcc (4:7.4.0-1ubuntu2.3) ... 18:42:42 Selecting previously unselected package libstdc++-7-dev:amd64. 18:42:42 Preparing to unpack .../35-libstdc++-7-dev_7.5.0-3ubuntu1~18.04_amd64.deb ... 18:42:42 Unpacking libstdc++-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:42 Selecting previously unselected package g++-7. 18:42:42 Preparing to unpack .../36-g++-7_7.5.0-3ubuntu1~18.04_amd64.deb ... 18:42:42 Unpacking g++-7 (7.5.0-3ubuntu1~18.04) ... 18:42:44 Selecting previously unselected package g++. 18:42:44 Preparing to unpack .../37-g++_4%3a7.4.0-1ubuntu2.3_amd64.deb ... 18:42:44 Unpacking g++ (4:7.4.0-1ubuntu2.3) ... 18:42:44 Selecting previously unselected package make. 18:42:44 Preparing to unpack .../38-make_4.1-9.1ubuntu1_amd64.deb ... 18:42:44 Unpacking make (4.1-9.1ubuntu1) ... 18:42:44 Selecting previously unselected package libdpkg-perl. 18:42:44 Preparing to unpack .../39-libdpkg-perl_1.19.0.5ubuntu2.3_all.deb ... 18:42:44 Unpacking libdpkg-perl (1.19.0.5ubuntu2.3) ... 18:42:44 Selecting previously unselected package patch. 18:42:44 Preparing to unpack .../40-patch_2.7.6-2ubuntu1.1_amd64.deb ... 18:42:44 Unpacking patch (2.7.6-2ubuntu1.1) ... 18:42:44 Selecting previously unselected package dpkg-dev. 18:42:44 Preparing to unpack .../41-dpkg-dev_1.19.0.5ubuntu2.3_all.deb ... 18:42:44 Unpacking dpkg-dev (1.19.0.5ubuntu2.3) ... 18:42:44 Selecting previously unselected package build-essential. 18:42:44 Preparing to unpack .../42-build-essential_12.4ubuntu1_amd64.deb ... 18:42:44 Unpacking build-essential (12.4ubuntu1) ... 18:42:45 Selecting previously unselected package ccache. 18:42:45 Preparing to unpack .../43-ccache_3.4.1-1_amd64.deb ... 18:42:45 Unpacking ccache (3.4.1-1) ... 18:42:45 Selecting previously unselected package libfakeroot:amd64. 18:42:45 Preparing to unpack .../44-libfakeroot_1.22-2ubuntu1_amd64.deb ... 18:42:45 Unpacking libfakeroot:amd64 (1.22-2ubuntu1) ... 18:42:45 Selecting previously unselected package fakeroot. 18:42:45 Preparing to unpack .../45-fakeroot_1.22-2ubuntu1_amd64.deb ... 18:42:45 Unpacking fakeroot (1.22-2ubuntu1) ... 18:42:45 Selecting previously unselected package libalgorithm-diff-perl. 18:42:45 Preparing to unpack .../46-libalgorithm-diff-perl_1.19.03-1_all.deb ... 18:42:45 Unpacking libalgorithm-diff-perl (1.19.03-1) ... 18:42:45 Selecting previously unselected package libalgorithm-diff-xs-perl. 18:42:45 Preparing to unpack .../47-libalgorithm-diff-xs-perl_0.04-5_amd64.deb ... 18:42:45 Unpacking libalgorithm-diff-xs-perl (0.04-5) ... 18:42:45 Selecting previously unselected package libalgorithm-merge-perl. 18:42:45 Preparing to unpack .../48-libalgorithm-merge-perl_0.08-3_all.deb ... 18:42:45 Unpacking libalgorithm-merge-perl (0.08-3) ... 18:42:45 Selecting previously unselected package libfile-fcntllock-perl. 18:42:45 Preparing to unpack .../49-libfile-fcntllock-perl_0.22-3build2_amd64.deb ... 18:42:45 Unpacking libfile-fcntllock-perl (0.22-3build2) ... 18:42:45 Selecting previously unselected package manpages-dev. 18:42:46 Preparing to unpack .../50-manpages-dev_4.15-1_all.deb ... 18:42:46 Unpacking manpages-dev (4.15-1) ... 18:42:46 Setting up libquadmath0:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:46 Setting up libgomp1:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:46 Setting up libatomic1:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:46 Setting up manpages (4.15-1) ... 18:42:46 Setting up libcc1-0:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:46 Setting up ccache (3.4.1-1) ... 18:42:46 Updating symlinks in /usr/lib/ccache ... 18:42:46 Setting up make (4.1-9.1ubuntu1) ... 18:42:46 Setting up libtsan0:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:46 Setting up linux-libc-dev:amd64 (4.15.0-135.139) ... 18:42:46 Setting up libmpfr6:amd64 (4.0.1-1) ... 18:42:46 Setting up perl-modules-5.26 (5.26.1-6ubuntu0.5) ... 18:42:46 Setting up libgdbm5:amd64 (1.14.1-6) ... 18:42:46 Setting up liblsan0:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:46 Setting up gcc-7-base:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:47 Setting up binutils-common:amd64 (2.30-21ubuntu1~18.04.4) ... 18:42:47 Setting up libmpx2:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:47 Setting up patch (2.7.6-2ubuntu1.1) ... 18:42:47 Setting up libfakeroot:amd64 (1.22-2ubuntu1) ... 18:42:47 Setting up liblocale-gettext-perl (1.07-3build2) ... 18:42:47 Setting up libmpc3:amd64 (1.1.0-1) ... 18:42:47 Setting up libc-dev-bin (2.27-3ubuntu1.4) ... 18:42:47 Setting up libgdbm-compat4:amd64 (1.14.1-6) ... 18:42:47 Setting up manpages-dev (4.15-1) ... 18:42:47 Setting up libc6-dev:amd64 (2.27-3ubuntu1.4) ... 18:42:47 Setting up libitm1:amd64 (8.4.0-1ubuntu1~18.04) ... 18:42:47 Setting up netbase (5.4) ... 18:42:47 Setting up libisl19:amd64 (0.19-1) ... 18:42:47 Setting up libasan4:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:47 Setting up libbinutils:amd64 (2.30-21ubuntu1~18.04.4) ... 18:42:47 Setting up libcilkrts5:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:47 Setting up libubsan0:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:47 Setting up fakeroot (1.22-2ubuntu1) ... 18:42:47 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode 18:42:47 update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist 18:42:47 update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist 18:42:47 update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist 18:42:47 update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist 18:42:47 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist 18:42:47 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist 18:42:47 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist 18:42:47 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist 18:42:47 Setting up libgcc-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:47 Setting up cpp-7 (7.5.0-3ubuntu1~18.04) ... 18:42:47 Setting up libstdc++-7-dev:amd64 (7.5.0-3ubuntu1~18.04) ... 18:42:47 Setting up libperl5.26:amd64 (5.26.1-6ubuntu0.5) ... 18:42:47 Setting up binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.4) ... 18:42:47 Setting up cpp (4:7.4.0-1ubuntu2.3) ... 18:42:47 Setting up perl (5.26.1-6ubuntu0.5) ... 18:42:47 Setting up libfile-fcntllock-perl (0.22-3build2) ... 18:42:48 Setting up libalgorithm-diff-perl (1.19.03-1) ... 18:42:48 Setting up binutils (2.30-21ubuntu1~18.04.4) ... 18:42:48 Setting up gcc-7 (7.5.0-3ubuntu1~18.04) ... 18:42:48 Setting up g++-7 (7.5.0-3ubuntu1~18.04) ... 18:42:48 Setting up libdpkg-perl (1.19.0.5ubuntu2.3) ... 18:42:48 Setting up gcc (4:7.4.0-1ubuntu2.3) ... 18:42:48 Setting up libalgorithm-merge-perl (0.08-3) ... 18:42:48 Setting up dpkg-dev (1.19.0.5ubuntu2.3) ... 18:42:48 Setting up libalgorithm-diff-xs-perl (0.04-5) ... 18:42:48 Setting up g++ (4:7.4.0-1ubuntu2.3) ... 18:42:48 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode 18:42:48 update-alternatives: warning: skip creation of /usr/share/man/man1/c++.1.gz because associated file /usr/share/man/man1/g++.1.gz (of link group c++) doesn't exist 18:42:48 Setting up build-essential (12.4ubuntu1) ... 18:42:48 Processing triggers for libc-bin (2.27-3ubuntu1.4) ... 18:42:48 Invoking 'apt-get clean' 18:42:54 ---> 2305364e9ae6 18:42:54 Removing intermediate container d75a618f4748 18:42:54 Step 24 : RUN echo "apt-src: 0.25.2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src 18:42:55 ---> Running in 8e33d5fc468b 18:42:55 apt-src: 0.25.2 18:42:55 Invoking 'apt-get update' 18:42:55 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease 18:42:55 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 18:42:55 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 18:42:55 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 18:42:55 Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease 18:42:55 Hit:6 http://security.ubuntu.com/ubuntu bionic-security InRelease 18:42:56 Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease 18:42:58 Reading package lists... 18:42:58 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes apt-src' 18:43:00 Reading package lists... 18:43:00 Building dependency tree... 18:43:00 Reading state information... 18:43:00 Starting pkgProblemResolver with broken count: 0 18:43:00 Starting 2 pkgProblemResolver with broken count: 0 18:43:00 Done 18:43:01 The following additional packages will be installed: 18:43:01 libapt-pkg-perl sudo 18:43:01 The following NEW packages will be installed: 18:43:01 apt-src libapt-pkg-perl sudo 18:43:01 0 upgraded, 3 newly installed, 0 to remove and 2 not upgraded. 18:43:01 Need to get 527 kB of archives. 18:43:01 After this operation, 2,062 kB of additional disk space will be used. 18:43:01 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 sudo amd64 1.8.21p2-3ubuntu1.4 [428 kB] 18:43:01 Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 libapt-pkg-perl amd64 0.1.33build1 [68.0 kB] 18:43:01 Get:3 http://archive.ubuntu.com/ubuntu bionic/universe amd64 apt-src all 0.25.2 [31.1 kB] 18:43:01 debconf: delaying package configuration, since apt-utils is not installed 18:43:01 Fetched 527 kB in 0s (7,521 kB/s) 18:43:01 Selecting previously unselected package sudo. 18:43:01 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13953 files and directories currently installed.) 18:43:01 Preparing to unpack .../sudo_1.8.21p2-3ubuntu1.4_amd64.deb ... 18:43:01 Unpacking sudo (1.8.21p2-3ubuntu1.4) ... 18:43:01 Selecting previously unselected package libapt-pkg-perl. 18:43:01 Preparing to unpack .../libapt-pkg-perl_0.1.33build1_amd64.deb ... 18:43:01 Unpacking libapt-pkg-perl (0.1.33build1) ... 18:43:01 Selecting previously unselected package apt-src. 18:43:01 Preparing to unpack .../apt-src_0.25.2_all.deb ... 18:43:01 Unpacking apt-src (0.25.2) ... 18:43:01 Setting up libapt-pkg-perl (0.1.33build1) ... 18:43:02 Setting up apt-src (0.25.2) ... 18:43:02 Setting up sudo (1.8.21p2-3ubuntu1.4) ... 18:43:02 Invoking 'apt-get clean' 18:43:03 ---> 7890f1b9c33e 18:43:03 Removing intermediate container 8e33d5fc468b 18:43:03 Step 25 : RUN echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper 18:43:03 ---> Running in 89c6e0350f74 18:43:04 debhelper: 12.1.1ubuntu1~ubuntu18.04.1 18:43:04 Invoking 'apt-get update' 18:43:04 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease 18:43:04 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 18:43:04 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 18:43:04 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 18:43:04 Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease 18:43:04 Hit:6 http://security.ubuntu.com/ubuntu bionic-security InRelease 18:43:04 Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease 18:43:07 Reading package lists... 18:43:07 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes debhelper' 18:43:08 Reading package lists... 18:43:09 Building dependency tree... 18:43:09 Reading state information... 18:43:09 Starting pkgProblemResolver with broken count: 0 18:43:09 Starting 2 pkgProblemResolver with broken count: 0 18:43:09 Done 18:43:09 The following additional packages will be installed: 18:43:09 autoconf automake autopoint autotools-dev bsdmainutils ca-certificates curl 18:43:09 dh-autoreconf dh-strip-nondeterminism gettext gettext-base groff-base 18:43:09 intltool-debian krb5-locales libarchive-cpio-perl libarchive-zip-perl 18:43:09 libbsd0 libcroco3 libcurl4 libfile-stripnondeterminism-perl libglib2.0-0 18:43:09 libglib2.0-data libgssapi-krb5-2 libicu60 libk5crypto3 libkeyutils1 18:43:09 libkrb5-3 libkrb5support0 libltdl-dev libltdl7 libmail-sendmail-perl 18:43:09 libnghttp2-14 libpipeline1 libpsl5 librtmp1 libsigsegv2 18:43:09 libsys-hostname-long-perl libtimedate-perl libtool libxml2 m4 man-db openssl 18:43:09 po-debconf publicsuffix shared-mime-info xdg-user-dirs 18:43:09 Suggested packages: 18:43:09 autoconf-archive gnu-standards autoconf-doc wamerican | wordlist whois 18:43:09 vacation dh-make dwz gettext-doc libasprintf-dev libgettextpo-dev groff 18:43:09 krb5-doc krb5-user libtool-doc gfortran | fortran95-compiler gcj-jdk m4-doc 18:43:09 apparmor less www-browser libmail-box-perl 18:43:09 The following NEW packages will be installed: 18:43:09 autoconf automake autopoint autotools-dev bsdmainutils ca-certificates curl 18:43:09 debhelper dh-autoreconf dh-strip-nondeterminism gettext gettext-base 18:43:09 groff-base intltool-debian krb5-locales libarchive-cpio-perl 18:43:09 libarchive-zip-perl libbsd0 libcroco3 libcurl4 18:43:09 libfile-stripnondeterminism-perl libglib2.0-0 libglib2.0-data 18:43:09 libgssapi-krb5-2 libicu60 libk5crypto3 libkeyutils1 libkrb5-3 18:43:09 libkrb5support0 libltdl-dev libltdl7 libmail-sendmail-perl libnghttp2-14 18:43:09 libpipeline1 libpsl5 librtmp1 libsigsegv2 libsys-hostname-long-perl 18:43:09 libtimedate-perl libtool libxml2 m4 man-db openssl po-debconf publicsuffix 18:43:09 shared-mime-info xdg-user-dirs 18:43:09 0 upgraded, 48 newly installed, 0 to remove and 2 not upgraded. 18:43:09 Need to get 19.5 MB of archives. 18:43:09 After this operation, 70.7 MB of additional disk space will be used. 18:43:09 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbsd0 amd64 0.8.7-1ubuntu0.1 [41.6 kB] 18:43:09 Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 bsdmainutils amd64 11.1.2ubuntu1 [181 kB] 18:43:09 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 groff-base amd64 1.22.3-10 [1,153 kB] 18:43:09 Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpipeline1 amd64 1.5.0-1 [25.3 kB] 18:43:09 Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 man-db amd64 2.8.3-2ubuntu0.1 [1,019 kB] 18:43:09 Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssl amd64 1.1.1-1ubuntu2.1~18.04.7 [614 kB] 18:43:09 Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 ca-certificates all 20201027ubuntu0.18.04.1 [153 kB] 18:43:09 Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-0 amd64 2.56.4-0ubuntu0.18.04.6 [1,171 kB] 18:43:09 Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-data all 2.56.4-0ubuntu0.18.04.6 [4,540 B] 18:43:09 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libicu60 amd64 60.2-3ubuntu3.1 [8,054 kB] 18:43:10 Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxml2 amd64 2.9.4+dfsg1-6.1ubuntu1.3 [663 kB] 18:43:10 Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 shared-mime-info amd64 1.9-2 [426 kB] 18:43:10 Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 xdg-user-dirs amd64 0.17-1ubuntu1 [48.0 kB] 18:43:10 Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext-base amd64 0.19.8.1-6ubuntu0.3 [113 kB] 18:43:10 Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 krb5-locales all 1.16-2ubuntu0.2 [13.4 kB] 18:43:10 Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5support0 amd64 1.16-2ubuntu0.2 [30.8 kB] 18:43:10 Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libk5crypto3 amd64 1.16-2ubuntu0.2 [85.5 kB] 18:43:10 Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkeyutils1 amd64 1.5.9-9.2ubuntu2 [8,720 B] 18:43:10 Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5-3 amd64 1.16-2ubuntu0.2 [279 kB] 18:43:10 Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgssapi-krb5-2 amd64 1.16-2ubuntu0.2 [122 kB] 18:43:10 Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpsl5 amd64 0.19.1-5build1 [41.8 kB] 18:43:10 Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 publicsuffix all 20180223.1310-1 [97.6 kB] 18:43:10 Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsigsegv2 amd64 2.12-1 [14.7 kB] 18:43:10 Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 m4 amd64 1.4.18-1 [197 kB] 18:43:10 Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 autoconf all 2.69-11 [322 kB] 18:43:10 Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 autotools-dev all 20180224.1 [39.6 kB] 18:43:10 Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 automake all 1:1.15.1-3ubuntu2 [509 kB] 18:43:10 Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 autopoint all 0.19.8.1-6ubuntu0.3 [426 kB] 18:43:10 Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnghttp2-14 amd64 1.30.0-1ubuntu1 [77.8 kB] 18:43:10 Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1 [54.2 kB] 18:43:10 Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.12 [214 kB] 18:43:10 Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 curl amd64 7.58.0-2ubuntu3.12 [159 kB] 18:43:10 Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtool all 2.4.6-2 [194 kB] 18:43:10 Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-autoreconf all 17 [15.8 kB] 18:43:10 Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive-zip-perl all 1.60-1ubuntu0.1 [84.6 kB] 18:43:10 Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-stripnondeterminism-perl all 0.040-1.1~build1 [13.8 kB] 18:43:10 Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB] 18:43:10 Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-strip-nondeterminism all 0.040-1.1~build1 [5,208 B] 18:43:10 Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcroco3 amd64 0.6.12-2 [81.3 kB] 18:43:10 Get:40 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext amd64 0.19.8.1-6ubuntu0.3 [1,293 kB] 18:43:10 Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 intltool-debian all 0.35.0+20060710.4 [24.9 kB] 18:43:10 Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 po-debconf all 1.0.20 [232 kB] 18:43:10 Get:43 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 debhelper all 11.1.6ubuntu2 [902 kB] 18:43:10 Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 libarchive-cpio-perl all 0.10-1 [9,644 B] 18:43:10 Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl7 amd64 2.4.6-2 [38.8 kB] 18:43:10 Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl-dev amd64 2.4.6-2 [162 kB] 18:43:10 Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsys-hostname-long-perl all 1.5-1 [11.7 kB] 18:43:10 Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmail-sendmail-perl all 0.80-1 [22.6 kB] 18:43:10 debconf: delaying package configuration, since apt-utils is not installed 18:43:11 Fetched 19.5 MB in 1s (18.9 MB/s) 18:43:11 Selecting previously unselected package libbsd0:amd64. 18:43:11 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 14048 files and directories currently installed.) 18:43:11 Preparing to unpack .../00-libbsd0_0.8.7-1ubuntu0.1_amd64.deb ... 18:43:11 Unpacking libbsd0:amd64 (0.8.7-1ubuntu0.1) ... 18:43:11 Selecting previously unselected package bsdmainutils. 18:43:11 Preparing to unpack .../01-bsdmainutils_11.1.2ubuntu1_amd64.deb ... 18:43:11 Unpacking bsdmainutils (11.1.2ubuntu1) ... 18:43:11 Selecting previously unselected package groff-base. 18:43:11 Preparing to unpack .../02-groff-base_1.22.3-10_amd64.deb ... 18:43:11 Unpacking groff-base (1.22.3-10) ... 18:43:11 Selecting previously unselected package libpipeline1:amd64. 18:43:11 Preparing to unpack .../03-libpipeline1_1.5.0-1_amd64.deb ... 18:43:11 Unpacking libpipeline1:amd64 (1.5.0-1) ... 18:43:11 Selecting previously unselected package man-db. 18:43:11 Preparing to unpack .../04-man-db_2.8.3-2ubuntu0.1_amd64.deb ... 18:43:11 Unpacking man-db (2.8.3-2ubuntu0.1) ... 18:43:12 Selecting previously unselected package openssl. 18:43:12 Preparing to unpack .../05-openssl_1.1.1-1ubuntu2.1~18.04.7_amd64.deb ... 18:43:12 Unpacking openssl (1.1.1-1ubuntu2.1~18.04.7) ... 18:43:12 Selecting previously unselected package ca-certificates. 18:43:12 Preparing to unpack .../06-ca-certificates_20201027ubuntu0.18.04.1_all.deb ... 18:43:12 Unpacking ca-certificates (20201027ubuntu0.18.04.1) ... 18:43:12 Selecting previously unselected package libglib2.0-0:amd64. 18:43:12 Preparing to unpack .../07-libglib2.0-0_2.56.4-0ubuntu0.18.04.6_amd64.deb ... 18:43:12 Unpacking libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... 18:43:12 Selecting previously unselected package libglib2.0-data. 18:43:12 Preparing to unpack .../08-libglib2.0-data_2.56.4-0ubuntu0.18.04.6_all.deb ... 18:43:12 Unpacking libglib2.0-data (2.56.4-0ubuntu0.18.04.6) ... 18:43:12 Selecting previously unselected package libicu60:amd64. 18:43:12 Preparing to unpack .../09-libicu60_60.2-3ubuntu3.1_amd64.deb ... 18:43:12 Unpacking libicu60:amd64 (60.2-3ubuntu3.1) ... 18:43:14 Selecting previously unselected package libxml2:amd64. 18:43:14 Preparing to unpack .../10-libxml2_2.9.4+dfsg1-6.1ubuntu1.3_amd64.deb ... 18:43:14 Unpacking libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... 18:43:14 Selecting previously unselected package shared-mime-info. 18:43:14 Preparing to unpack .../11-shared-mime-info_1.9-2_amd64.deb ... 18:43:14 Unpacking shared-mime-info (1.9-2) ... 18:43:14 Selecting previously unselected package xdg-user-dirs. 18:43:14 Preparing to unpack .../12-xdg-user-dirs_0.17-1ubuntu1_amd64.deb ... 18:43:14 Unpacking xdg-user-dirs (0.17-1ubuntu1) ... 18:43:14 Selecting previously unselected package gettext-base. 18:43:14 Preparing to unpack .../13-gettext-base_0.19.8.1-6ubuntu0.3_amd64.deb ... 18:43:14 Unpacking gettext-base (0.19.8.1-6ubuntu0.3) ... 18:43:14 Selecting previously unselected package krb5-locales. 18:43:14 Preparing to unpack .../14-krb5-locales_1.16-2ubuntu0.2_all.deb ... 18:43:14 Unpacking krb5-locales (1.16-2ubuntu0.2) ... 18:43:14 Selecting previously unselected package libkrb5support0:amd64. 18:43:14 Preparing to unpack .../15-libkrb5support0_1.16-2ubuntu0.2_amd64.deb ... 18:43:14 Unpacking libkrb5support0:amd64 (1.16-2ubuntu0.2) ... 18:43:15 Selecting previously unselected package libk5crypto3:amd64. 18:43:15 Preparing to unpack .../16-libk5crypto3_1.16-2ubuntu0.2_amd64.deb ... 18:43:15 Unpacking libk5crypto3:amd64 (1.16-2ubuntu0.2) ... 18:43:15 Selecting previously unselected package libkeyutils1:amd64. 18:43:15 Preparing to unpack .../17-libkeyutils1_1.5.9-9.2ubuntu2_amd64.deb ... 18:43:15 Unpacking libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... 18:43:15 Selecting previously unselected package libkrb5-3:amd64. 18:43:15 Preparing to unpack .../18-libkrb5-3_1.16-2ubuntu0.2_amd64.deb ... 18:43:15 Unpacking libkrb5-3:amd64 (1.16-2ubuntu0.2) ... 18:43:15 Selecting previously unselected package libgssapi-krb5-2:amd64. 18:43:15 Preparing to unpack .../19-libgssapi-krb5-2_1.16-2ubuntu0.2_amd64.deb ... 18:43:15 Unpacking libgssapi-krb5-2:amd64 (1.16-2ubuntu0.2) ... 18:43:16 Selecting previously unselected package libpsl5:amd64. 18:43:16 Preparing to unpack .../20-libpsl5_0.19.1-5build1_amd64.deb ... 18:43:16 Unpacking libpsl5:amd64 (0.19.1-5build1) ... 18:43:16 Selecting previously unselected package publicsuffix. 18:43:16 Preparing to unpack .../21-publicsuffix_20180223.1310-1_all.deb ... 18:43:16 Unpacking publicsuffix (20180223.1310-1) ... 18:43:16 Selecting previously unselected package libsigsegv2:amd64. 18:43:16 Preparing to unpack .../22-libsigsegv2_2.12-1_amd64.deb ... 18:43:16 Unpacking libsigsegv2:amd64 (2.12-1) ... 18:43:16 Selecting previously unselected package m4. 18:43:16 Preparing to unpack .../23-m4_1.4.18-1_amd64.deb ... 18:43:16 Unpacking m4 (1.4.18-1) ... 18:43:16 Selecting previously unselected package autoconf. 18:43:16 Preparing to unpack .../24-autoconf_2.69-11_all.deb ... 18:43:16 Unpacking autoconf (2.69-11) ... 18:43:16 Selecting previously unselected package autotools-dev. 18:43:16 Preparing to unpack .../25-autotools-dev_20180224.1_all.deb ... 18:43:16 Unpacking autotools-dev (20180224.1) ... 18:43:16 Selecting previously unselected package automake. 18:43:16 Preparing to unpack .../26-automake_1%3a1.15.1-3ubuntu2_all.deb ... 18:43:16 Unpacking automake (1:1.15.1-3ubuntu2) ... 18:43:17 Selecting previously unselected package autopoint. 18:43:17 Preparing to unpack .../27-autopoint_0.19.8.1-6ubuntu0.3_all.deb ... 18:43:17 Unpacking autopoint (0.19.8.1-6ubuntu0.3) ... 18:43:17 Selecting previously unselected package libnghttp2-14:amd64. 18:43:17 Preparing to unpack .../28-libnghttp2-14_1.30.0-1ubuntu1_amd64.deb ... 18:43:17 Unpacking libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... 18:43:17 Selecting previously unselected package librtmp1:amd64. 18:43:17 Preparing to unpack .../29-librtmp1_2.4+20151223.gitfa8646d.1-1_amd64.deb ... 18:43:17 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... 18:43:17 Selecting previously unselected package libcurl4:amd64. 18:43:17 Preparing to unpack .../30-libcurl4_7.58.0-2ubuntu3.12_amd64.deb ... 18:43:17 Unpacking libcurl4:amd64 (7.58.0-2ubuntu3.12) ... 18:43:17 Selecting previously unselected package curl. 18:43:17 Preparing to unpack .../31-curl_7.58.0-2ubuntu3.12_amd64.deb ... 18:43:17 Unpacking curl (7.58.0-2ubuntu3.12) ... 18:43:17 Selecting previously unselected package libtool. 18:43:17 Preparing to unpack .../32-libtool_2.4.6-2_all.deb ... 18:43:17 Unpacking libtool (2.4.6-2) ... 18:43:17 Selecting previously unselected package dh-autoreconf. 18:43:17 Preparing to unpack .../33-dh-autoreconf_17_all.deb ... 18:43:17 Unpacking dh-autoreconf (17) ... 18:43:17 Selecting previously unselected package libarchive-zip-perl. 18:43:17 Preparing to unpack .../34-libarchive-zip-perl_1.60-1ubuntu0.1_all.deb ... 18:43:17 Unpacking libarchive-zip-perl (1.60-1ubuntu0.1) ... 18:43:18 Selecting previously unselected package libfile-stripnondeterminism-perl. 18:43:18 Preparing to unpack .../35-libfile-stripnondeterminism-perl_0.040-1.1~build1_all.deb ... 18:43:18 Unpacking libfile-stripnondeterminism-perl (0.040-1.1~build1) ... 18:43:18 Selecting previously unselected package libtimedate-perl. 18:43:18 Preparing to unpack .../36-libtimedate-perl_2.3000-2_all.deb ... 18:43:18 Unpacking libtimedate-perl (2.3000-2) ... 18:43:18 Selecting previously unselected package dh-strip-nondeterminism. 18:43:18 Preparing to unpack .../37-dh-strip-nondeterminism_0.040-1.1~build1_all.deb ... 18:43:18 Unpacking dh-strip-nondeterminism (0.040-1.1~build1) ... 18:43:18 Selecting previously unselected package libcroco3:amd64. 18:43:18 Preparing to unpack .../38-libcroco3_0.6.12-2_amd64.deb ... 18:43:18 Unpacking libcroco3:amd64 (0.6.12-2) ... 18:43:18 Selecting previously unselected package gettext. 18:43:18 Preparing to unpack .../39-gettext_0.19.8.1-6ubuntu0.3_amd64.deb ... 18:43:18 Unpacking gettext (0.19.8.1-6ubuntu0.3) ... 18:43:18 Selecting previously unselected package intltool-debian. 18:43:18 Preparing to unpack .../40-intltool-debian_0.35.0+20060710.4_all.deb ... 18:43:18 Unpacking intltool-debian (0.35.0+20060710.4) ... 18:43:19 Selecting previously unselected package po-debconf. 18:43:19 Preparing to unpack .../41-po-debconf_1.0.20_all.deb ... 18:43:19 Unpacking po-debconf (1.0.20) ... 18:43:19 Selecting previously unselected package debhelper. 18:43:19 Preparing to unpack .../42-debhelper_11.1.6ubuntu2_all.deb ... 18:43:19 Unpacking debhelper (11.1.6ubuntu2) ... 18:43:19 Selecting previously unselected package libarchive-cpio-perl. 18:43:19 Preparing to unpack .../43-libarchive-cpio-perl_0.10-1_all.deb ... 18:43:19 Unpacking libarchive-cpio-perl (0.10-1) ... 18:43:19 Selecting previously unselected package libltdl7:amd64. 18:43:19 Preparing to unpack .../44-libltdl7_2.4.6-2_amd64.deb ... 18:43:19 Unpacking libltdl7:amd64 (2.4.6-2) ... 18:43:19 Selecting previously unselected package libltdl-dev:amd64. 18:43:19 Preparing to unpack .../45-libltdl-dev_2.4.6-2_amd64.deb ... 18:43:19 Unpacking libltdl-dev:amd64 (2.4.6-2) ... 18:43:19 Selecting previously unselected package libsys-hostname-long-perl. 18:43:19 Preparing to unpack .../46-libsys-hostname-long-perl_1.5-1_all.deb ... 18:43:19 Unpacking libsys-hostname-long-perl (1.5-1) ... 18:43:19 Selecting previously unselected package libmail-sendmail-perl. 18:43:19 Preparing to unpack .../47-libmail-sendmail-perl_0.80-1_all.deb ... 18:43:19 Unpacking libmail-sendmail-perl (0.80-1) ... 18:43:20 Setting up libicu60:amd64 (60.2-3ubuntu3.1) ... 18:43:20 Setting up libarchive-zip-perl (1.60-1ubuntu0.1) ... 18:43:20 Setting up libnghttp2-14:amd64 (1.30.0-1ubuntu1) ... 18:43:20 Setting up libtimedate-perl (2.3000-2) ... 18:43:20 Setting up libsigsegv2:amd64 (2.12-1) ... 18:43:20 Setting up libpsl5:amd64 (0.19.1-5build1) ... 18:43:20 Setting up groff-base (1.22.3-10) ... 18:43:20 Setting up libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.6) ... 18:43:20 No schema files found: doing nothing. 18:43:20 Setting up libarchive-cpio-perl (0.10-1) ... 18:43:20 Setting up gettext-base (0.19.8.1-6ubuntu0.3) ... 18:43:20 Setting up libpipeline1:amd64 (1.5.0-1) ... 18:43:20 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ... 18:43:20 Setting up m4 (1.4.18-1) ... 18:43:20 Setting up libbsd0:amd64 (0.8.7-1ubuntu0.1) ... 18:43:20 Setting up libkrb5support0:amd64 (1.16-2ubuntu0.2) ... 18:43:20 Setting up libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.3) ... 18:43:20 Setting up libcroco3:amd64 (0.6.12-2) ... 18:43:20 Setting up libsys-hostname-long-perl (1.5-1) ... 18:43:20 Setting up libglib2.0-data (2.56.4-0ubuntu0.18.04.6) ... 18:43:20 Setting up libmail-sendmail-perl (0.80-1) ... 18:43:20 Setting up krb5-locales (1.16-2ubuntu0.2) ... 18:43:20 Setting up publicsuffix (20180223.1310-1) ... 18:43:20 Setting up autotools-dev (20180224.1) ... 18:43:20 Setting up libltdl7:amd64 (2.4.6-2) ... 18:43:21 Setting up openssl (1.1.1-1ubuntu2.1~18.04.7) ... 18:43:21 Setting up shared-mime-info (1.9-2) ... 18:43:27 Setting up libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ... 18:43:27 Setting up bsdmainutils (11.1.2ubuntu1) ... 18:43:27 update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode 18:43:27 update-alternatives: warning: skip creation of /usr/share/man/man1/write.1.gz because associated file /usr/share/man/man1/bsd-write.1.gz (of link group write) doesn't exist 18:43:27 update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode 18:43:27 update-alternatives: warning: skip creation of /usr/share/man/man1/from.1.gz because associated file /usr/share/man/man1/bsd-from.1.gz (of link group from) doesn't exist 18:43:27 Setting up ca-certificates (20201027ubuntu0.18.04.1) ... 18:43:29 Updating certificates in /etc/ssl/certs... 18:43:31 138 added, 0 removed; done. 18:43:31 Setting up xdg-user-dirs (0.17-1ubuntu1) ... 18:43:31 Setting up autopoint (0.19.8.1-6ubuntu0.3) ... 18:43:31 Setting up libfile-stripnondeterminism-perl (0.040-1.1~build1) ... 18:43:31 Setting up libtool (2.4.6-2) ... 18:43:31 Setting up libk5crypto3:amd64 (1.16-2ubuntu0.2) ... 18:43:31 Setting up libltdl-dev:amd64 (2.4.6-2) ... 18:43:31 Setting up gettext (0.19.8.1-6ubuntu0.3) ... 18:43:31 Setting up autoconf (2.69-11) ... 18:43:31 Setting up intltool-debian (0.35.0+20060710.4) ... 18:43:31 Setting up automake (1:1.15.1-3ubuntu2) ... 18:43:31 update-alternatives: using /usr/bin/automake-1.15 to provide /usr/bin/automake (automake) in auto mode 18:43:31 update-alternatives: warning: skip creation of /usr/share/man/man1/automake.1.gz because associated file /usr/share/man/man1/automake-1.15.1.gz (of link group automake) doesn't exist 18:43:31 update-alternatives: warning: skip creation of /usr/share/man/man1/aclocal.1.gz because associated file /usr/share/man/man1/aclocal-1.15.1.gz (of link group automake) doesn't exist 18:43:31 Setting up man-db (2.8.3-2ubuntu0.1) ... 18:43:31 Building database of manual pages ... 18:43:32 Setting up libkrb5-3:amd64 (1.16-2ubuntu0.2) ... 18:43:32 Setting up po-debconf (1.0.20) ... 18:43:32 Setting up libgssapi-krb5-2:amd64 (1.16-2ubuntu0.2) ... 18:43:32 Setting up libcurl4:amd64 (7.58.0-2ubuntu3.12) ... 18:43:32 Setting up curl (7.58.0-2ubuntu3.12) ... 18:43:32 Setting up dh-autoreconf (17) ... 18:43:32 Setting up debhelper (11.1.6ubuntu2) ... 18:43:32 Setting up dh-strip-nondeterminism (0.040-1.1~build1) ... 18:43:32 Processing triggers for libc-bin (2.27-3ubuntu1.4) ... 18:43:32 Processing triggers for mime-support (3.60ubuntu1) ... 18:43:32 Processing triggers for ca-certificates (20201027ubuntu0.18.04.1) ... 18:43:32 Updating certificates in /etc/ssl/certs... 18:43:34 0 added, 0 removed; done. 18:43:34 Running hooks in /etc/ca-certificates/update.d... 18:43:34 done. 18:43:34 Invoking 'apt-get clean' 18:43:36 ---> ef1bd3ea98be 18:43:36 Removing intermediate container 89c6e0350f74 18:43:36 Step 26 : RUN echo "python-pip: 9.0.1-2.3~ubuntu1.18.04.4" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-pip 18:43:36 ---> Running in 84e425227c38 18:43:37 python-pip: 9.0.1-2.3~ubuntu1.18.04.4 18:43:37 Invoking 'apt-get update' 18:43:37 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease 18:43:37 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 18:43:37 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 18:43:37 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 18:43:37 Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease 18:43:37 Hit:6 http://packages.ros.org/ros/ubuntu bionic InRelease 18:43:37 Hit:7 http://security.ubuntu.com/ubuntu bionic-security InRelease 18:43:40 Reading package lists... 18:43:40 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes python-pip' 18:43:42 Reading package lists... 18:43:42 Building dependency tree... 18:43:42 Reading state information... 18:43:42 Starting pkgProblemResolver with broken count: 0 18:43:42 Starting 2 pkgProblemResolver with broken count: 0 18:43:42 Done 18:43:42 The following additional packages will be installed: 18:43:42 dbus gir1.2-glib-2.0 libapparmor1 libdbus-1-3 libexpat1-dev 18:43:42 libgirepository-1.0-1 libpython-all-dev libpython-dev libpython-stdlib 18:43:42 libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 18:43:42 python python-all python-all-dev python-asn1crypto python-cffi-backend 18:43:42 python-crypto python-cryptography python-dbus python-dev python-enum34 18:43:42 python-gi python-idna python-ipaddress python-keyring python-keyrings.alt 18:43:42 python-minimal python-pip-whl python-pkg-resources python-secretstorage 18:43:42 python-setuptools python-six python-wheel python-xdg python2.7 python2.7-dev 18:43:42 python2.7-minimal 18:43:42 Suggested packages: 18:43:42 default-dbus-session-bus | dbus-session-bus python-doc python-tk 18:43:42 python-crypto-doc python-cryptography-doc python-cryptography-vectors 18:43:42 python-dbus-dbg python-dbus-doc python-enum34-doc python-gi-cairo 18:43:42 gnome-keyring libkf5wallet-bin gir1.2-gnomekeyring-1.0 python-fs 18:43:42 python-gdata python-keyczar python-secretstorage-doc python-setuptools-doc 18:43:42 python2.7-doc binfmt-support 18:43:43 The following NEW packages will be installed: 18:43:43 dbus gir1.2-glib-2.0 libapparmor1 libdbus-1-3 libexpat1-dev 18:43:43 libgirepository-1.0-1 libpython-all-dev libpython-dev libpython-stdlib 18:43:43 libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 18:43:43 python python-all python-all-dev python-asn1crypto python-cffi-backend 18:43:43 python-crypto python-cryptography python-dbus python-dev python-enum34 18:43:43 python-gi python-idna python-ipaddress python-keyring python-keyrings.alt 18:43:43 python-minimal python-pip python-pip-whl python-pkg-resources 18:43:43 python-secretstorage python-setuptools python-six python-wheel python-xdg 18:43:43 python2.7 python2.7-dev python2.7-minimal 18:43:43 0 upgraded, 40 newly installed, 0 to remove and 2 not upgraded. 18:43:43 Need to get 37.7 MB of archives. 18:43:43 After this operation, 76.2 MB of additional disk space will be used. 18:43:43 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-minimal amd64 2.7.17-1~18.04ubuntu1.2 [335 kB] 18:43:43 Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-minimal amd64 2.7.17-1~18.04ubuntu1.2 [1,290 kB] 18:43:43 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-minimal amd64 2.7.15~rc1-1 [28.1 kB] 18:43:43 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-stdlib amd64 2.7.17-1~18.04ubuntu1.2 [1,916 kB] 18:43:43 Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7 amd64 2.7.17-1~18.04ubuntu1.2 [248 kB] 18:43:43 Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-stdlib amd64 2.7.15~rc1-1 [7,620 B] 18:43:43 Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 python amd64 2.7.15~rc1-1 [140 kB] 18:43:43 Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libapparmor1 amd64 2.12-4ubuntu5.1 [31.3 kB] 18:43:43 Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdbus-1-3 amd64 1.12.2-1ubuntu1.2 [175 kB] 18:43:43 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dbus amd64 1.12.2-1ubuntu1.2 [150 kB] 18:43:43 Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgirepository-1.0-1 amd64 1.56.1-1 [82.0 kB] 18:43:43 Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 gir1.2-glib-2.0 amd64 1.56.1-1 [131 kB] 18:43:43 Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1-dev amd64 2.2.5-3ubuntu0.2 [122 kB] 18:43:43 Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7 amd64 2.7.17-1~18.04ubuntu1.2 [1,054 kB] 18:43:43 Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-dev amd64 2.7.17-1~18.04ubuntu1.2 [28.3 MB] 18:43:43 Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-dev amd64 2.7.15~rc1-1 [7,684 B] 18:43:43 Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-all-dev amd64 2.7.15~rc1-1 [1,092 B] 18:43:43 Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-all amd64 2.7.15~rc1-1 [1,076 B] 18:43:43 Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-dev amd64 2.7.17-1~18.04ubuntu1.2 [279 kB] 18:43:43 Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-dev amd64 2.7.15~rc1-1 [1,256 B] 18:43:43 Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-all-dev amd64 2.7.15~rc1-1 [1,100 B] 18:43:43 Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-asn1crypto all 0.24.0-1 [72.7 kB] 18:43:43 Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-cffi-backend amd64 1.11.5-1 [63.4 kB] 18:43:44 Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-crypto amd64 2.6.1-8ubuntu2 [244 kB] 18:43:44 Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-enum34 all 1.1.6-2 [34.8 kB] 18:43:44 Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-idna all 2.6-1 [32.4 kB] 18:43:44 Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-ipaddress all 1.0.17-1 [18.2 kB] 18:43:44 Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-six all 1.11.0-2 [11.3 kB] 18:43:44 Get:29 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-cryptography amd64 2.1.4-1ubuntu1.4 [276 kB] 18:43:44 Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-dbus amd64 1.2.6-1 [90.2 kB] 18:43:44 Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-gi amd64 3.26.1-2ubuntu1 [197 kB] 18:43:44 Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-secretstorage all 2.3.1-2 [11.8 kB] 18:43:44 Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-keyring all 10.6.0-1 [30.6 kB] 18:43:44 Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-keyrings.alt all 3.0-1 [16.7 kB] 18:43:44 Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python-pip-whl all 9.0.1-2.3~ubuntu1.18.04.4 [1,653 kB] 18:43:44 Get:36 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python-pip all 9.0.1-2.3~ubuntu1.18.04.4 [151 kB] 18:43:44 Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pkg-resources all 39.0.1-2 [128 kB] 18:43:44 Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-setuptools all 39.0.1-2 [329 kB] 18:43:44 Get:39 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-wheel all 0.30.0-0.2 [36.4 kB] 18:43:44 Get:40 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 python-xdg all 0.25-4ubuntu1.1 [31.2 kB] 18:43:44 debconf: delaying package configuration, since apt-utils is not installed 18:43:44 Fetched 37.7 MB in 1s (34.0 MB/s) 18:43:44 Selecting previously unselected package libpython2.7-minimal:amd64. 18:43:44 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 16746 files and directories currently installed.) 18:43:44 Preparing to unpack .../0-libpython2.7-minimal_2.7.17-1~18.04ubuntu1.2_amd64.deb ... 18:43:44 Unpacking libpython2.7-minimal:amd64 (2.7.17-1~18.04ubuntu1.2) ... 18:43:45 Selecting previously unselected package python2.7-minimal. 18:43:45 Preparing to unpack .../1-python2.7-minimal_2.7.17-1~18.04ubuntu1.2_amd64.deb ... 18:43:45 Unpacking python2.7-minimal (2.7.17-1~18.04ubuntu1.2) ... 18:43:45 Selecting previously unselected package python-minimal. 18:43:45 Preparing to unpack .../2-python-minimal_2.7.15~rc1-1_amd64.deb ... 18:43:45 Unpacking python-minimal (2.7.15~rc1-1) ... 18:43:45 Selecting previously unselected package libpython2.7-stdlib:amd64. 18:43:45 Preparing to unpack .../3-libpython2.7-stdlib_2.7.17-1~18.04ubuntu1.2_amd64.deb ... 18:43:45 Unpacking libpython2.7-stdlib:amd64 (2.7.17-1~18.04ubuntu1.2) ... 18:43:45 Selecting previously unselected package python2.7. 18:43:45 Preparing to unpack .../4-python2.7_2.7.17-1~18.04ubuntu1.2_amd64.deb ... 18:43:45 Unpacking python2.7 (2.7.17-1~18.04ubuntu1.2) ... 18:43:45 Selecting previously unselected package libpython-stdlib:amd64. 18:43:45 Preparing to unpack .../5-libpython-stdlib_2.7.15~rc1-1_amd64.deb ... 18:43:45 Unpacking libpython-stdlib:amd64 (2.7.15~rc1-1) ... 18:43:46 Setting up libpython2.7-minimal:amd64 (2.7.17-1~18.04ubuntu1.2) ... 18:43:46 Setting up python2.7-minimal (2.7.17-1~18.04ubuntu1.2) ... 18:43:46 Setting up python-minimal (2.7.15~rc1-1) ... 18:43:46 Selecting previously unselected package python. 18:43:46 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 17497 files and directories currently installed.) 18:43:46 Preparing to unpack .../00-python_2.7.15~rc1-1_amd64.deb ... 18:43:46 Unpacking python (2.7.15~rc1-1) ... 18:43:46 Selecting previously unselected package libapparmor1:amd64. 18:43:46 Preparing to unpack .../01-libapparmor1_2.12-4ubuntu5.1_amd64.deb ... 18:43:46 Unpacking libapparmor1:amd64 (2.12-4ubuntu5.1) ... 18:43:47 Selecting previously unselected package libdbus-1-3:amd64. 18:43:47 Preparing to unpack .../02-libdbus-1-3_1.12.2-1ubuntu1.2_amd64.deb ... 18:43:47 Unpacking libdbus-1-3:amd64 (1.12.2-1ubuntu1.2) ... 18:43:47 Selecting previously unselected package dbus. 18:43:47 Preparing to unpack .../03-dbus_1.12.2-1ubuntu1.2_amd64.deb ... 18:43:47 Unpacking dbus (1.12.2-1ubuntu1.2) ... 18:43:47 Selecting previously unselected package libgirepository-1.0-1:amd64. 18:43:47 Preparing to unpack .../04-libgirepository-1.0-1_1.56.1-1_amd64.deb ... 18:43:47 Unpacking libgirepository-1.0-1:amd64 (1.56.1-1) ... 18:43:47 Selecting previously unselected package gir1.2-glib-2.0:amd64. 18:43:47 Preparing to unpack .../05-gir1.2-glib-2.0_1.56.1-1_amd64.deb ... 18:43:47 Unpacking gir1.2-glib-2.0:amd64 (1.56.1-1) ... 18:43:47 Selecting previously unselected package libexpat1-dev:amd64. 18:43:47 Preparing to unpack .../06-libexpat1-dev_2.2.5-3ubuntu0.2_amd64.deb ... 18:43:47 Unpacking libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ... 18:43:47 Selecting previously unselected package libpython2.7:amd64. 18:43:47 Preparing to unpack .../07-libpython2.7_2.7.17-1~18.04ubuntu1.2_amd64.deb ... 18:43:47 Unpacking libpython2.7:amd64 (2.7.17-1~18.04ubuntu1.2) ... 18:43:48 Selecting previously unselected package libpython2.7-dev:amd64. 18:43:48 Preparing to unpack .../08-libpython2.7-dev_2.7.17-1~18.04ubuntu1.2_amd64.deb ... 18:43:48 Unpacking libpython2.7-dev:amd64 (2.7.17-1~18.04ubuntu1.2) ... 18:43:51 Selecting previously unselected package libpython-dev:amd64. 18:43:51 Preparing to unpack .../09-libpython-dev_2.7.15~rc1-1_amd64.deb ... 18:43:51 Unpacking libpython-dev:amd64 (2.7.15~rc1-1) ... 18:43:51 Selecting previously unselected package libpython-all-dev:amd64. 18:43:51 Preparing to unpack .../10-libpython-all-dev_2.7.15~rc1-1_amd64.deb ... 18:43:51 Unpacking libpython-all-dev:amd64 (2.7.15~rc1-1) ... 18:43:51 Selecting previously unselected package python-all. 18:43:51 Preparing to unpack .../11-python-all_2.7.15~rc1-1_amd64.deb ... 18:43:51 Unpacking python-all (2.7.15~rc1-1) ... 18:43:51 Selecting previously unselected package python2.7-dev. 18:43:51 Preparing to unpack .../12-python2.7-dev_2.7.17-1~18.04ubuntu1.2_amd64.deb ... 18:43:51 Unpacking python2.7-dev (2.7.17-1~18.04ubuntu1.2) ... 18:43:51 Selecting previously unselected package python-dev. 18:43:51 Preparing to unpack .../13-python-dev_2.7.15~rc1-1_amd64.deb ... 18:43:51 Unpacking python-dev (2.7.15~rc1-1) ... 18:43:51 Selecting previously unselected package python-all-dev. 18:43:51 Preparing to unpack .../14-python-all-dev_2.7.15~rc1-1_amd64.deb ... 18:43:51 Unpacking python-all-dev (2.7.15~rc1-1) ... 18:43:51 Selecting previously unselected package python-asn1crypto. 18:43:51 Preparing to unpack .../15-python-asn1crypto_0.24.0-1_all.deb ... 18:43:51 Unpacking python-asn1crypto (0.24.0-1) ... 18:43:51 Selecting previously unselected package python-cffi-backend. 18:43:51 Preparing to unpack .../16-python-cffi-backend_1.11.5-1_amd64.deb ... 18:43:51 Unpacking python-cffi-backend (1.11.5-1) ... 18:43:52 Selecting previously unselected package python-crypto. 18:43:52 Preparing to unpack .../17-python-crypto_2.6.1-8ubuntu2_amd64.deb ... 18:43:52 Unpacking python-crypto (2.6.1-8ubuntu2) ... 18:43:52 Selecting previously unselected package python-enum34. 18:43:52 Preparing to unpack .../18-python-enum34_1.1.6-2_all.deb ... 18:43:52 Unpacking python-enum34 (1.1.6-2) ... 18:43:52 Selecting previously unselected package python-idna. 18:43:52 Preparing to unpack .../19-python-idna_2.6-1_all.deb ... 18:43:52 Unpacking python-idna (2.6-1) ... 18:43:52 Selecting previously unselected package python-ipaddress. 18:43:52 Preparing to unpack .../20-python-ipaddress_1.0.17-1_all.deb ... 18:43:52 Unpacking python-ipaddress (1.0.17-1) ... 18:43:52 Selecting previously unselected package python-six. 18:43:52 Preparing to unpack .../21-python-six_1.11.0-2_all.deb ... 18:43:52 Unpacking python-six (1.11.0-2) ... 18:43:52 Selecting previously unselected package python-cryptography. 18:43:52 Preparing to unpack .../22-python-cryptography_2.1.4-1ubuntu1.4_amd64.deb ... 18:43:52 Unpacking python-cryptography (2.1.4-1ubuntu1.4) ... 18:43:52 Selecting previously unselected package python-dbus. 18:43:52 Preparing to unpack .../23-python-dbus_1.2.6-1_amd64.deb ... 18:43:52 Unpacking python-dbus (1.2.6-1) ... 18:43:53 Selecting previously unselected package python-gi. 18:43:53 Preparing to unpack .../24-python-gi_3.26.1-2ubuntu1_amd64.deb ... 18:43:53 Unpacking python-gi (3.26.1-2ubuntu1) ... 18:43:53 Selecting previously unselected package python-secretstorage. 18:43:53 Preparing to unpack .../25-python-secretstorage_2.3.1-2_all.deb ... 18:43:53 Unpacking python-secretstorage (2.3.1-2) ... 18:43:53 Selecting previously unselected package python-keyring. 18:43:53 Preparing to unpack .../26-python-keyring_10.6.0-1_all.deb ... 18:43:53 Unpacking python-keyring (10.6.0-1) ... 18:43:53 Selecting previously unselected package python-keyrings.alt. 18:43:53 Preparing to unpack .../27-python-keyrings.alt_3.0-1_all.deb ... 18:43:53 Unpacking python-keyrings.alt (3.0-1) ... 18:43:53 Selecting previously unselected package python-pip-whl. 18:43:53 Preparing to unpack .../28-python-pip-whl_9.0.1-2.3~ubuntu1.18.04.4_all.deb ... 18:43:53 Unpacking python-pip-whl (9.0.1-2.3~ubuntu1.18.04.4) ... 18:43:53 Selecting previously unselected package python-pip. 18:43:53 Preparing to unpack .../29-python-pip_9.0.1-2.3~ubuntu1.18.04.4_all.deb ... 18:43:53 Unpacking python-pip (9.0.1-2.3~ubuntu1.18.04.4) ... 18:43:53 Selecting previously unselected package python-pkg-resources. 18:43:53 Preparing to unpack .../30-python-pkg-resources_39.0.1-2_all.deb ... 18:43:53 Unpacking python-pkg-resources (39.0.1-2) ... 18:43:53 Selecting previously unselected package python-setuptools. 18:43:53 Preparing to unpack .../31-python-setuptools_39.0.1-2_all.deb ... 18:43:53 Unpacking python-setuptools (39.0.1-2) ... 18:43:54 Selecting previously unselected package python-wheel. 18:43:54 Preparing to unpack .../32-python-wheel_0.30.0-0.2_all.deb ... 18:43:54 Unpacking python-wheel (0.30.0-0.2) ... 18:43:54 Selecting previously unselected package python-xdg. 18:43:54 Preparing to unpack .../33-python-xdg_0.25-4ubuntu1.1_all.deb ... 18:43:54 Unpacking python-xdg (0.25-4ubuntu1.1) ... 18:43:54 Setting up python-pip-whl (9.0.1-2.3~ubuntu1.18.04.4) ... 18:43:54 Setting up libgirepository-1.0-1:amd64 (1.56.1-1) ... 18:43:54 Setting up gir1.2-glib-2.0:amd64 (1.56.1-1) ... 18:43:54 Setting up libapparmor1:amd64 (2.12-4ubuntu5.1) ... 18:43:54 Setting up libexpat1-dev:amd64 (2.2.5-3ubuntu0.2) ... 18:43:54 Setting up libpython2.7-stdlib:amd64 (2.7.17-1~18.04ubuntu1.2) ... 18:43:54 Setting up libdbus-1-3:amd64 (1.12.2-1ubuntu1.2) ... 18:43:54 Setting up python2.7 (2.7.17-1~18.04ubuntu1.2) ... 18:43:55 Setting up libpython-stdlib:amd64 (2.7.15~rc1-1) ... 18:43:55 Setting up libpython2.7:amd64 (2.7.17-1~18.04ubuntu1.2) ... 18:43:55 Setting up libpython2.7-dev:amd64 (2.7.17-1~18.04ubuntu1.2) ... 18:43:55 Setting up dbus (1.12.2-1ubuntu1.2) ... 18:43:56 Setting up python2.7-dev (2.7.17-1~18.04ubuntu1.2) ... 18:43:56 Setting up python (2.7.15~rc1-1) ... 18:43:56 Setting up python-xdg (0.25-4ubuntu1.1) ... 18:43:57 Setting up python-idna (2.6-1) ... 18:43:57 Setting up libpython-dev:amd64 (2.7.15~rc1-1) ... 18:43:57 Setting up python-asn1crypto (0.24.0-1) ... 18:43:58 Setting up python-crypto (2.6.1-8ubuntu2) ... 18:43:58 Setting up python-dev (2.7.15~rc1-1) ... 18:43:58 Setting up python-wheel (0.30.0-0.2) ... 18:43:59 Setting up libpython-all-dev:amd64 (2.7.15~rc1-1) ... 18:43:59 Setting up python-pkg-resources (39.0.1-2) ... 18:43:59 Setting up python-cffi-backend (1.11.5-1) ... 18:43:59 Setting up python-gi (3.26.1-2ubuntu1) ... 18:44:00 Setting up python-six (1.11.0-2) ... 18:44:00 Setting up python-enum34 (1.1.6-2) ... 18:44:01 Setting up python-dbus (1.2.6-1) ... 18:44:01 Setting up python-ipaddress (1.0.17-1) ... 18:44:02 Setting up python-pip (9.0.1-2.3~ubuntu1.18.04.4) ... 18:44:03 Setting up python-all (2.7.15~rc1-1) ... 18:44:03 Setting up python-setuptools (39.0.1-2) ... 18:44:03 Setting up python-keyrings.alt (3.0-1) ... 18:44:04 Setting up python-all-dev (2.7.15~rc1-1) ... 18:44:04 Setting up python-cryptography (2.1.4-1ubuntu1.4) ... 18:44:04 Setting up python-secretstorage (2.3.1-2) ... 18:44:05 Setting up python-keyring (10.6.0-1) ... 18:44:05 Processing triggers for libc-bin (2.27-3ubuntu1.4) ... 18:44:05 Processing triggers for man-db (2.8.3-2ubuntu0.1) ... 18:44:05 Processing triggers for mime-support (3.60ubuntu1) ... 18:44:06 Invoking 'apt-get clean' 18:44:08 ---> 67038919a1b3 18:44:08 Removing intermediate container 84e425227c38 18:44:08 Step 27 : RUN echo "python-setuptools: 39.0.1-2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-setuptools 18:44:08 ---> Running in b970e4e4feaa 18:44:08 python-setuptools: 39.0.1-2 18:44:09 Invoking 'apt-get update' 18:44:09 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease 18:44:09 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 18:44:09 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 18:44:09 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 18:44:09 Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease 18:44:09 Hit:6 http://security.ubuntu.com/ubuntu bionic-security InRelease 18:44:09 Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease 18:44:12 Reading package lists... 18:44:12 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes python-setuptools' 18:44:13 Reading package lists... 18:44:14 Building dependency tree... 18:44:14 Reading state information... 18:44:14 Starting pkgProblemResolver with broken count: 0 18:44:14 Starting 2 pkgProblemResolver with broken count: 0 18:44:14 Done 18:44:14 python-setuptools is already the newest version (39.0.1-2). 18:44:14 python-setuptools set to manually installed. 18:44:14 0 upgraded, 0 newly installed, 0 to remove and 2 not upgraded. 18:44:14 Invoking 'apt-get clean' 18:44:14 ---> dd7db4aa15da 18:44:14 Removing intermediate container b970e4e4feaa 18:44:14 Step 28 : RUN echo "ros-melodic-catkin: 0.7.29-1bionic.20201014.191449" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin 18:44:15 ---> Running in 23b8bbe3bb52 18:44:15 ros-melodic-catkin: 0.7.29-1bionic.20201014.191449 18:44:15 Invoking 'apt-get update' 18:44:15 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease 18:44:15 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 18:44:15 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease 18:44:15 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease 18:44:15 Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease 18:44:15 Hit:6 http://security.ubuntu.com/ubuntu bionic-security InRelease 18:44:15 Hit:7 http://packages.ros.org/ros/ubuntu bionic InRelease 18:44:18 Reading package lists... 18:44:18 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin' 18:44:20 Reading package lists... 18:44:20 Building dependency tree... 18:44:20 Reading state information... 18:44:20 Starting pkgProblemResolver with broken count: 0 18:44:20 Starting 2 pkgProblemResolver with broken count: 0 18:44:20 Done 18:44:20 The following additional packages will be installed: 18:44:20 cmake cmake-data docutils-common docutils-doc google-mock googletest 18:44:20 libarchive13 libfreetype6 libgtest-dev libjbig0 libjpeg-turbo8 libjpeg8 18:44:20 libjsoncpp1 liblcms2-2 liblzo2-2 libpaper-utils libpaper1 libpng16-16 18:44:20 librhash0 libtiff5 libuv1 libwebp6 libwebpdemux2 libwebpmux3 18:44:20 multiarch-support python-catkin-pkg python-catkin-pkg-modules python-chardet 18:44:20 python-dateutil python-docutils python-empy python-nose python-olefile 18:44:20 python-pil python-pygments python-pyparsing python-roman sgml-base tzdata 18:44:20 ucf xml-core 18:44:20 Suggested packages: 18:44:20 cmake-doc ninja-build lrzip liblcms2-utils fonts-linuxlibertine 18:44:20 | ttf-linux-libertine texlive-lang-french texlive-latex-base 18:44:20 texlive-latex-recommended python-coverage python-nose-doc python-pil-doc 18:44:20 python-pil-dbg ttf-bitstream-vera python-pyparsing-doc sgml-base-doc 18:44:21 The following NEW packages will be installed: 18:44:21 cmake cmake-data docutils-common docutils-doc google-mock googletest 18:44:21 libarchive13 libfreetype6 libgtest-dev libjbig0 libjpeg-turbo8 libjpeg8 18:44:21 libjsoncpp1 liblcms2-2 liblzo2-2 libpaper-utils libpaper1 libpng16-16 18:44:21 librhash0 libtiff5 libuv1 libwebp6 libwebpdemux2 libwebpmux3 18:44:21 multiarch-support python-catkin-pkg python-catkin-pkg-modules python-chardet 18:44:21 python-dateutil python-docutils python-empy python-nose python-olefile 18:44:21 python-pil python-pygments python-pyparsing python-roman ros-melodic-catkin 18:44:21 sgml-base tzdata ucf xml-core 18:44:21 0 upgraded, 42 newly installed, 0 to remove and 2 not upgraded. 18:44:21 Need to get 10.1 MB of archives. 18:44:21 After this operation, 55.2 MB of additional disk space will be used. 18:44:21 Get:1 http://10.210.9.154/ubuntu/building bionic/main amd64 python-catkin-pkg-modules all 0.4.23-1 [42.3 kB] 18:44:21 Get:2 http://10.210.9.154/ubuntu/building bionic/main amd64 python-catkin-pkg all 0.4.23-100 [3,516 B] 18:44:21 Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 multiarch-support amd64 2.27-3ubuntu1.4 [6,944 B] 18:44:21 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjpeg-turbo8 amd64 1.5.2-0ubuntu5.18.04.4 [110 kB] 18:44:21 Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblzo2-2 amd64 2.08-1.2 [48.7 kB] 18:44:21 Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB] 18:44:21 Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 tzdata all 2021a-0ubuntu0.18.04 [190 kB] 18:44:21 Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 ucf all 3.0038 [50.5 kB] 18:44:21 Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpng16-16 amd64 1.6.34-1ubuntu0.18.04.2 [176 kB] 18:44:21 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake-data all 3.10.2-1ubuntu2.18.04.1 [1,332 kB] 18:44:21 Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive13 amd64 3.2.2-3.1ubuntu0.6 [288 kB] 18:44:21 Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjsoncpp1 amd64 1.7.4-3 [73.6 kB] 18:44:21 Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 librhash0 amd64 1.3.6-2 [78.1 kB] 18:44:21 Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 libuv1 amd64 1.18.0-3 [64.4 kB] 18:44:21 Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake amd64 3.10.2-1ubuntu2.18.04.1 [3,152 kB] 18:44:21 Get:16 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-catkin amd64 0.7.29-1bionic.20201014.191449 [128 kB] 18:44:21 Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB] 18:44:21 Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB] 18:44:21 Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-doc all 0.14+dfsg-3 [913 kB] 18:44:21 Get:20 http://archive.ubuntu.com/ubuntu bionic/universe amd64 googletest amd64 1.8.0-6 [652 kB] 18:44:21 Get:21 http://archive.ubuntu.com/ubuntu bionic/universe amd64 google-mock amd64 1.8.0-6 [2,972 B] 18:44:21 Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libfreetype6 amd64 2.8.1-2ubuntu2.1 [335 kB] 18:44:21 Get:23 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgtest-dev amd64 1.8.0-6 [2,718 B] 18:44:21 Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B] 18:44:21 Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblcms2-2 amd64 2.9-1ubuntu0.1 [139 kB] 18:44:21 Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB] 18:44:21 Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B] 18:44:21 Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB] 18:44:21 Get:29 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtiff5 amd64 4.0.9-5ubuntu0.3 [153 kB] 18:44:21 Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebp6 amd64 0.6.1-2 [185 kB] 18:44:21 Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpdemux2 amd64 0.6.1-2 [9,472 B] 18:44:21 Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpmux3 amd64 0.6.1-2 [19.6 kB] 18:44:21 Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-dateutil all 2.6.1-1 [60.6 kB] 18:44:21 Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-roman all 2.0.0-3 [8,548 B] 18:44:21 Get:35 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-docutils all 0.14+dfsg-3 [365 kB] 18:44:21 Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pyparsing all 2.2.0+dfsg1-2 [52.1 kB] 18:44:21 Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-chardet all 3.0.4-1 [80.3 kB] 18:44:21 Get:38 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-empy all 3.3.2-1build1 [72.5 kB] 18:44:21 Get:39 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-nose all 1.3.7-3 [116 kB] 18:44:21 Get:40 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-olefile all 0.45.1-1 [33.2 kB] 18:44:21 Get:41 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python-pil amd64 5.1.0-1ubuntu0.4 [301 kB] 18:44:21 Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pygments all 2.2.0+dfsg-1 [577 kB] 18:44:21 debconf: delaying package configuration, since apt-utils is not installed 18:44:21 Fetched 10.1 MB in 0s (24.6 MB/s) 18:44:21 Selecting previously unselected package multiarch-support. 18:44:21 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 18609 files and directories currently installed.) 18:44:21 Preparing to unpack .../multiarch-support_2.27-3ubuntu1.4_amd64.deb ... 18:44:21 Unpacking multiarch-support (2.27-3ubuntu1.4) ... 18:44:21 Setting up multiarch-support (2.27-3ubuntu1.4) ... 18:44:22 Selecting previously unselected package libjpeg-turbo8:amd64. 18:44:22 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 18612 files and directories currently installed.) 18:44:22 Preparing to unpack .../00-libjpeg-turbo8_1.5.2-0ubuntu5.18.04.4_amd64.deb ... 18:44:22 Unpacking libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.4) ... 18:44:22 Selecting previously unselected package liblzo2-2:amd64. 18:44:22 Preparing to unpack .../01-liblzo2-2_2.08-1.2_amd64.deb ... 18:44:22 Unpacking liblzo2-2:amd64 (2.08-1.2) ... 18:44:22 Selecting previously unselected package sgml-base. 18:44:22 Preparing to unpack .../02-sgml-base_1.29_all.deb ... 18:44:22 Unpacking sgml-base (1.29) ... 18:44:22 Selecting previously unselected package tzdata. 18:44:22 Preparing to unpack .../03-tzdata_2021a-0ubuntu0.18.04_all.deb ... 18:44:22 Unpacking tzdata (2021a-0ubuntu0.18.04) ... 18:44:23 Selecting previously unselected package ucf. 18:44:23 Preparing to unpack .../04-ucf_3.0038_all.deb ... 18:44:23 Moving old data out of the way 18:44:23 Unpacking ucf (3.0038) ... 18:44:23 Selecting previously unselected package libpng16-16:amd64. 18:44:23 Preparing to unpack .../05-libpng16-16_1.6.34-1ubuntu0.18.04.2_amd64.deb ... 18:44:23 Unpacking libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... 18:44:23 Selecting previously unselected package cmake-data. 18:44:23 Preparing to unpack .../06-cmake-data_3.10.2-1ubuntu2.18.04.1_all.deb ... 18:44:23 Unpacking cmake-data (3.10.2-1ubuntu2.18.04.1) ... 18:44:24 Selecting previously unselected package libarchive13:amd64. 18:44:24 Preparing to unpack .../07-libarchive13_3.2.2-3.1ubuntu0.6_amd64.deb ... 18:44:24 Unpacking libarchive13:amd64 (3.2.2-3.1ubuntu0.6) ... 18:44:24 Selecting previously unselected package libjsoncpp1:amd64. 18:44:24 Preparing to unpack .../08-libjsoncpp1_1.7.4-3_amd64.deb ... 18:44:24 Unpacking libjsoncpp1:amd64 (1.7.4-3) ... 18:44:24 Selecting previously unselected package librhash0:amd64. 18:44:24 Preparing to unpack .../09-librhash0_1.3.6-2_amd64.deb ... 18:44:24 Unpacking librhash0:amd64 (1.3.6-2) ... 18:44:24 Selecting previously unselected package libuv1:amd64. 18:44:24 Preparing to unpack .../10-libuv1_1.18.0-3_amd64.deb ... 18:44:24 Unpacking libuv1:amd64 (1.18.0-3) ... 18:44:25 Selecting previously unselected package cmake. 18:44:25 Preparing to unpack .../11-cmake_3.10.2-1ubuntu2.18.04.1_amd64.deb ... 18:44:25 Unpacking cmake (3.10.2-1ubuntu2.18.04.1) ... 18:44:25 Selecting previously unselected package xml-core. 18:44:25 Preparing to unpack .../12-xml-core_0.18_all.deb ... 18:44:25 Unpacking xml-core (0.18) ... 18:44:25 Selecting previously unselected package docutils-common. 18:44:25 Preparing to unpack .../13-docutils-common_0.14+dfsg-3_all.deb ... 18:44:25 Unpacking docutils-common (0.14+dfsg-3) ... 18:44:25 Selecting previously unselected package docutils-doc. 18:44:25 Preparing to unpack .../14-docutils-doc_0.14+dfsg-3_all.deb ... 18:44:25 Unpacking docutils-doc (0.14+dfsg-3) ... 18:44:26 Selecting previously unselected package googletest:amd64. 18:44:26 Preparing to unpack .../15-googletest_1.8.0-6_amd64.deb ... 18:44:26 Unpacking googletest:amd64 (1.8.0-6) ... 18:44:26 Selecting previously unselected package google-mock:amd64. 18:44:26 Preparing to unpack .../16-google-mock_1.8.0-6_amd64.deb ... 18:44:26 Unpacking google-mock:amd64 (1.8.0-6) ... 18:44:26 Selecting previously unselected package libfreetype6:amd64. 18:44:26 Preparing to unpack .../17-libfreetype6_2.8.1-2ubuntu2.1_amd64.deb ... 18:44:26 Unpacking libfreetype6:amd64 (2.8.1-2ubuntu2.1) ... 18:44:26 Selecting previously unselected package libgtest-dev:amd64. 18:44:26 Preparing to unpack .../18-libgtest-dev_1.8.0-6_amd64.deb ... 18:44:26 Unpacking libgtest-dev:amd64 (1.8.0-6) ... 18:44:26 Selecting previously unselected package libjpeg8:amd64. 18:44:26 Preparing to unpack .../19-libjpeg8_8c-2ubuntu8_amd64.deb ... 18:44:26 Unpacking libjpeg8:amd64 (8c-2ubuntu8) ... 18:44:26 Selecting previously unselected package liblcms2-2:amd64. 18:44:26 Preparing to unpack .../20-liblcms2-2_2.9-1ubuntu0.1_amd64.deb ... 18:44:27 Unpacking liblcms2-2:amd64 (2.9-1ubuntu0.1) ... 18:44:27 Selecting previously unselected package libpaper1:amd64. 18:44:27 Preparing to unpack .../21-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ... 18:44:27 Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 18:44:27 Selecting previously unselected package libpaper-utils. 18:44:27 Preparing to unpack .../22-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ... 18:44:27 Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ... 18:44:27 Selecting previously unselected package libjbig0:amd64. 18:44:27 Preparing to unpack .../23-libjbig0_2.1-3.1build1_amd64.deb ... 18:44:27 Unpacking libjbig0:amd64 (2.1-3.1build1) ... 18:44:27 Selecting previously unselected package libtiff5:amd64. 18:44:27 Preparing to unpack .../24-libtiff5_4.0.9-5ubuntu0.3_amd64.deb ... 18:44:27 Unpacking libtiff5:amd64 (4.0.9-5ubuntu0.3) ... 18:44:27 Selecting previously unselected package libwebp6:amd64. 18:44:27 Preparing to unpack .../25-libwebp6_0.6.1-2_amd64.deb ... 18:44:27 Unpacking libwebp6:amd64 (0.6.1-2) ... 18:44:27 Selecting previously unselected package libwebpdemux2:amd64. 18:44:27 Preparing to unpack .../26-libwebpdemux2_0.6.1-2_amd64.deb ... 18:44:27 Unpacking libwebpdemux2:amd64 (0.6.1-2) ... 18:44:27 Selecting previously unselected package libwebpmux3:amd64. 18:44:27 Preparing to unpack .../27-libwebpmux3_0.6.1-2_amd64.deb ... 18:44:27 Unpacking libwebpmux3:amd64 (0.6.1-2) ... 18:44:28 Selecting previously unselected package python-dateutil. 18:44:28 Preparing to unpack .../28-python-dateutil_2.6.1-1_all.deb ... 18:44:28 Unpacking python-dateutil (2.6.1-1) ... 18:44:28 Selecting previously unselected package python-roman. 18:44:28 Preparing to unpack .../29-python-roman_2.0.0-3_all.deb ... 18:44:28 Unpacking python-roman (2.0.0-3) ... 18:44:28 Selecting previously unselected package python-docutils. 18:44:28 Preparing to unpack .../30-python-docutils_0.14+dfsg-3_all.deb ... 18:44:28 Unpacking python-docutils (0.14+dfsg-3) ... 18:44:28 Selecting previously unselected package python-pyparsing. 18:44:28 Preparing to unpack .../31-python-pyparsing_2.2.0+dfsg1-2_all.deb ... 18:44:28 Unpacking python-pyparsing (2.2.0+dfsg1-2) ... 18:44:28 Selecting previously unselected package python-catkin-pkg-modules. 18:44:28 Preparing to unpack .../32-python-catkin-pkg-modules_0.4.23-1_all.deb ... 18:44:28 Unpacking python-catkin-pkg-modules (0.4.23-1) ... 18:44:28 Selecting previously unselected package python-catkin-pkg. 18:44:28 Preparing to unpack .../33-python-catkin-pkg_0.4.23-100_all.deb ... 18:44:28 Unpacking python-catkin-pkg (0.4.23-100) ... 18:44:29 Selecting previously unselected package python-chardet. 18:44:29 Preparing to unpack .../34-python-chardet_3.0.4-1_all.deb ... 18:44:29 Unpacking python-chardet (3.0.4-1) ... 18:44:29 Selecting previously unselected package python-empy. 18:44:29 Preparing to unpack .../35-python-empy_3.3.2-1build1_all.deb ... 18:44:29 Unpacking python-empy (3.3.2-1build1) ... 18:44:29 Selecting previously unselected package python-nose. 18:44:29 Preparing to unpack .../36-python-nose_1.3.7-3_all.deb ... 18:44:29 Unpacking python-nose (1.3.7-3) ... 18:44:29 Selecting previously unselected package python-olefile. 18:44:29 Preparing to unpack .../37-python-olefile_0.45.1-1_all.deb ... 18:44:29 Unpacking python-olefile (0.45.1-1) ... 18:44:29 Selecting previously unselected package python-pil:amd64. 18:44:29 Preparing to unpack .../38-python-pil_5.1.0-1ubuntu0.4_amd64.deb ... 18:44:29 Unpacking python-pil:amd64 (5.1.0-1ubuntu0.4) ... 18:44:30 Selecting previously unselected package python-pygments. 18:44:30 Preparing to unpack .../39-python-pygments_2.2.0+dfsg-1_all.deb ... 18:44:30 Unpacking python-pygments (2.2.0+dfsg-1) ... 18:44:33 Selecting previously unselected package ros-melodic-catkin. 18:44:33 Preparing to unpack .../40-ros-melodic-catkin_0.7.29-1bionic.20201014.191449_amd64.deb ... 18:44:33 Unpacking ros-melodic-catkin (0.7.29-1bionic.20201014.191449) ... 18:44:39 Setting up python-chardet (3.0.4-1) ... 18:44:40 Setting up libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ... 18:44:40 Setting up liblcms2-2:amd64 (2.9-1ubuntu0.1) ... 18:44:40 Setting up libjbig0:amd64 (2.1-3.1build1) ... 18:44:40 Setting up libuv1:amd64 (1.18.0-3) ... 18:44:40 Setting up tzdata (2021a-0ubuntu0.18.04) ... 18:44:40 18:44:40 Current default time zone: 'Etc/UTC' 18:44:40 Local time is now: Fri Jan 29 18:44:40 UTC 2021. 18:44:40 Universal Time is now: Fri Jan 29 18:44:40 UTC 2021. 18:44:40 Run 'dpkg-reconfigure tzdata' if you wish to change it. 18:44:40 18:44:42 Setting up cmake-data (3.10.2-1ubuntu2.18.04.1) ... 18:44:42 Setting up libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.4) ... 18:44:42 Setting up sgml-base (1.29) ... 18:44:42 Setting up python-roman (2.0.0-3) ... 18:44:42 Setting up ucf (3.0038) ... 18:44:42 Setting up libfreetype6:amd64 (2.8.1-2ubuntu2.1) ... 18:44:42 Setting up librhash0:amd64 (1.3.6-2) ... 18:44:42 Setting up python-dateutil (2.6.1-1) ... 18:44:43 Setting up googletest:amd64 (1.8.0-6) ... 18:44:43 Setting up python-pygments (2.2.0+dfsg-1) ... 18:44:44 Setting up python-empy (3.3.2-1build1) ... 18:44:44 Setting up docutils-doc (0.14+dfsg-3) ... 18:44:44 Setting up libgtest-dev:amd64 (1.8.0-6) ... 18:44:44 Setting up python-olefile (0.45.1-1) ... 18:44:45 Setting up xml-core (0.18) ... 18:44:46 Setting up python-nose (1.3.7-3) ... 18:44:46 Setting up liblzo2-2:amd64 (2.08-1.2) ... 18:44:46 Setting up libwebp6:amd64 (0.6.1-2) ... 18:44:46 Setting up libjpeg8:amd64 (8c-2ubuntu8) ... 18:44:46 Setting up python-pyparsing (2.2.0+dfsg1-2) ... 18:44:47 Setting up libjsoncpp1:amd64 (1.7.4-3) ... 18:44:47 Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ... 18:44:47 18:44:47 Creating config file /etc/papersize with new version 18:44:47 Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ... 18:44:47 Setting up google-mock:amd64 (1.8.0-6) ... 18:44:48 Setting up libarchive13:amd64 (3.2.2-3.1ubuntu0.6) ... 18:44:48 Setting up libtiff5:amd64 (4.0.9-5ubuntu0.3) ... 18:44:48 Setting up libwebpmux3:amd64 (0.6.1-2) ... 18:44:48 Setting up libwebpdemux2:amd64 (0.6.1-2) ... 18:44:48 Setting up cmake (3.10.2-1ubuntu2.18.04.1) ... 18:44:48 Setting up python-pil:amd64 (5.1.0-1ubuntu0.4) ... 18:44:48 Processing triggers for libc-bin (2.27-3ubuntu1.4) ... 18:44:48 Processing triggers for man-db (2.8.3-2ubuntu0.1) ... 18:44:48 Processing triggers for shared-mime-info (1.9-2) ... 18:45:00 Processing triggers for sgml-base (1.29) ... 18:45:00 Setting up docutils-common (0.14+dfsg-3) ... 18:45:00 Processing triggers for sgml-base (1.29) ... 18:45:00 Setting up python-docutils (0.14+dfsg-3) ... 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 18:45:00 update-alternatives: using /usr/share/docutils/scripts/python2/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 18:45:01 Setting up python-catkin-pkg-modules (0.4.23-1) ... 18:45:02 Setting up python-catkin-pkg (0.4.23-100) ... 18:45:02 Setting up ros-melodic-catkin (0.7.29-1bionic.20201014.191449) ... 18:45:02 Invoking 'apt-get clean' 18:45:06 ---> 8f1eb4e212a5 18:45:07 Removing intermediate container 23b8bbe3bb52 18:45:07 Step 29 : USER buildfarm 18:45:07 ---> Running in 7a5e65630d67 18:45:07 ---> 1eccbbbaec8c 18:45:07 Removing intermediate container 7a5e65630d67 18:45:07 Step 30 : ENTRYPOINT sh -c 18:45:07 ---> Running in 32f5309689ed 18:45:07 ---> ab69701bb08c 18:45:07 Removing intermediate container 32f5309689ed 18:45:07 Step 31 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic mqtt_bridge --sourcedeb-dir /tmp/binarydeb 18:45:08 ---> Running in d2a86ad500d5 18:45:08 ---> 707fbc29a8e2 18:45:08 Removing intermediate container d2a86ad500d5 18:45:08 Successfully built 707fbc29a8e2 18:45:08 + echo # END SECTION 18:45:08 # END SECTION18:45:38 [Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins4105133699445488119.sh 18:45:38 + [ false = false ] 18:45:38 + echo # BEGIN SECTION: Clean up to save disk space on agents2. Run Dockerfile - build binarydebHide Details
18:45:08 # BEGIN SECTION: Run Dockerfile - build binarydeb 18:45:08 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.melodic_ubuntu_bionic_amd64_mqtt_bridge18:45:38 + echo # END SECTION 18:45:38 # END SECTION2.1. build binarydebHide Details
18:45:08 # BEGIN SUBSECTION: build binarydeb 18:45:08 Package 'ros-melodic-mqtt-bridge' version: 1.0.0-1bionic.20210129.184141 18:45:10 Invoking 'apt-src build ros-melodic-mqtt-bridge' in '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:12 I: Building in /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0 .. 18:45:13 dpkg-buildpackage: info: source package ros-melodic-mqtt-bridge 18:45:13 dpkg-buildpackage: info: source version 1.0.0-1bionic.20210129.184141 18:45:13 dpkg-buildpackage: info: source distribution bionic 18:45:13 dpkg-buildpackage: info: source changed by Marc Hanheide <marc@hanheide.net> 18:45:13 dpkg-source --before-build ros-melodic-mqtt-bridge-1.0.0 18:45:13 dpkg-buildpackage: info: host architecture amd64 18:45:13 dpkg-source: info: using options from ros-melodic-mqtt-bridge-1.0.0/debian/source/options: --auto-commit 18:45:13 fakeroot debian/rules clean 18:45:13 dh clean -v --buildsystem=cmake 18:45:14 dh_testdir -O-v -O--buildsystem=cmake 18:45:14 dh_auto_clean -O-v -O--buildsystem=cmake 18:45:14 dh_clean -O-v -O--buildsystem=cmake 18:45:14 rm -f debian/debhelper-build-stamp 18:45:14 rm -rf debian/.debhelper/ 18:45:14 rm -f -- debian/ros-melodic-mqtt-bridge.substvars debian/files 18:45:14 rm -fr -- debian/ros-melodic-mqtt-bridge/ debian/tmp/ 18:45:14 find . \( \( \ 18:45:14 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS -o -path .\*/.pc -o -path .\*/_darcs \) -prune -o -type f -a \ 18:45:14 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 18:45:14 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 18:45:14 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 18:45:14 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 18:45:14 \) -exec rm -f {} + \) -o \ 18:45:14 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 18:45:14 debian/rules build 18:45:14 dh build -v --buildsystem=cmake 18:45:14 dh_testdir -O-v -O--buildsystem=cmake 18:45:14 dh_update_autotools_config -O-v -O--buildsystem=cmake 18:45:14 debian/rules override_dh_auto_configure 18:45:14 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:14 # In case we're installing to a non-standard location, look for a setup.sh 18:45:14 # in the install tree that was dropped by catkin, and source it. It will 18:45:14 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 18:45:14 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 18:45:14 dh_auto_configure -- \ 18:45:14 -DCATKIN_BUILD_BINARY_PACKAGE="1" \ 18:45:14 -DCMAKE_INSTALL_PREFIX="/opt/ros/melodic" \ 18:45:14 -DCMAKE_PREFIX_PATH="/opt/ros/melodic" 18:45:14 install -d obj-x86_64-linux-gnu 18:45:14 cd obj-x86_64-linux-gnu && cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON -DCATKIN_BUILD_BINARY_PACKAGE=1 -DCMAKE_INSTALL_PREFIX=/opt/ros/melodic -DCMAKE_PREFIX_PATH=/opt/ros/melodic 18:45:14 -- The C compiler identification is GNU 7.5.0 18:45:14 -- The CXX compiler identification is GNU 7.5.0 18:45:14 -- Check for working C compiler: /usr/bin/cc 18:45:15 -- Check for working C compiler: /usr/bin/cc -- works 18:45:15 -- Detecting C compiler ABI info 18:45:15 -- Detecting C compiler ABI info - done 18:45:15 -- Detecting C compile features 18:45:15 -- Detecting C compile features - done 18:45:15 -- Check for working CXX compiler: /usr/bin/c++ 18:45:16 -- Check for working CXX compiler: /usr/bin/c++ -- works 18:45:16 -- Detecting CXX compiler ABI info 18:45:16 -- Detecting CXX compiler ABI info - done 18:45:16 -- Detecting CXX compile features 18:45:16 -- Detecting CXX compile features - done 18:45:16 -- Using CATKIN_DEVEL_PREFIX: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/devel 18:45:16 -- Using CMAKE_PREFIX_PATH: /opt/ros/melodic 18:45:16 -- This workspace overlays: /opt/ros/melodic 18:45:16 -- Found PythonInterp: /usr/bin/python (found version "2.7.17") 18:45:16 -- Using PYTHON_EXECUTABLE: /usr/bin/python 18:45:16 -- Using Debian Python package layout 18:45:16 -- Using empy: /usr/bin/empy 18:45:16 -- Using CATKIN_ENABLE_TESTING: ON 18:45:16 -- Skip enable_testing() when building binary package 18:45:16 -- Using CATKIN_TEST_RESULTS_DIR: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/test_results 18:45:17 -- Found gtest sources under '/usr/src/googletest': gtests will be built 18:45:17 -- Found gmock sources under '/usr/src/googletest': gmock will be built 18:45:17 -- Looking for pthread.h 18:45:17 -- Looking for pthread.h - found 18:45:17 -- Looking for pthread_create 18:45:17 -- Looking for pthread_create - not found 18:45:17 -- Looking for pthread_create in pthreads 18:45:17 -- Looking for pthread_create in pthreads - not found 18:45:17 -- Looking for pthread_create in pthread 18:45:17 -- Looking for pthread_create in pthread - found 18:45:17 -- Found Threads: TRUE 18:45:17 -- Using Python nosetests: /usr/bin/nosetests-2.7 18:45:17 -- catkin 0.7.29 18:45:17 -- BUILD_SHARED_LIBS is on 18:45:18 -- Configuring done 18:45:18 -- Generating done 18:45:18 CMake Warning: 18:45:18 Manually-specified variables were not used by the project: 18:45:18 18:45:18 CMAKE_EXPORT_NO_PACKAGE_REGISTRY 18:45:18 CMAKE_INSTALL_LOCALSTATEDIR 18:45:18 CMAKE_INSTALL_SYSCONFDIR 18:45:18 18:45:18 18:45:18 -- Build files have been written to: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu 18:45:18 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:18 debian/rules override_dh_auto_build 18:45:18 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:18 # In case we're installing to a non-standard location, look for a setup.sh 18:45:18 # in the install tree that was dropped by catkin, and source it. It will 18:45:18 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 18:45:18 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 18:45:18 dh_auto_build 18:45:18 cd obj-x86_64-linux-gnu && make -j1 18:45:18 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:18 /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0 -B/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 18:45:18 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 18:45:18 make -f CMakeFiles/Makefile2 all 18:45:18 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:18 make -f CMakeFiles/install_depends.dir/build.make CMakeFiles/install_depends.dir/depend 18:45:18 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:18 cd /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0 /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0 /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/CMakeFiles/install_depends.dir/DependInfo.cmake --color= 18:45:18 Scanning dependencies of target install_depends 18:45:18 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:18 make -f CMakeFiles/install_depends.dir/build.make CMakeFiles/install_depends.dir/build 18:45:18 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:18 pip install --user -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt 18:45:19 Collecting inject<4.0,>=3.3.1 (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt (line 1)) 18:45:19 Downloading https://files.pythonhosted.org/packages/3b/f0/23703cbb81f878308ec23426fd9a94a98e4302fefcb021c625343e2512ce/Inject-3.5.4.tar.gz 18:45:20 Collecting msgpack-python>=0.4.8 (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt (line 2)) 18:45:20 Downloading https://files.pythonhosted.org/packages/8a/20/6eca772d1a5830336f84aca1d8198e5a3f4715cd1c7fc36d3cc7f7185091/msgpack-python-0.5.6.tar.gz (138kB) 18:45:20 Collecting paho-mqtt>=1.2 (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt (line 3)) 18:45:20 Downloading https://files.pythonhosted.org/packages/32/d3/6dcb8fd14746fcde6a556f932b5de8bea8fedcb85b3a092e0e986372c0e7/paho-mqtt-1.5.1.tar.gz (101kB) 18:45:21 Collecting pymongo (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt (line 4)) 18:45:22 Downloading https://files.pythonhosted.org/packages/c0/85/69e05399d208b33fefec8e5bc03ea90e38361f3c0e4ca2d094a45b045e09/pymongo-3.11.2-cp27-cp27mu-manylinux1_x86_64.whl (488kB) 18:45:22 Collecting typing (from inject<4.0,>=3.3.1->-r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt (line 1)) 18:45:22 Downloading https://files.pythonhosted.org/packages/3b/c0/e44213fcb799eac02881e2485724ba5b0914600bc9df6ed922e364fdc059/typing-3.7.4.3-py2-none-any.whl 18:45:22 Building wheels for collected packages: inject, msgpack-python, paho-mqtt 18:45:22 Running setup.py bdist_wheel for inject: started 18:45:22 Running setup.py bdist_wheel for inject: finished with status 'done' 18:45:22 Stored in directory: /home/buildfarm/.cache/pip/wheels/25/83/fa/1717afd369ac10b1be969ae78bd394d972af33f54308a2653a 18:45:22 Running setup.py bdist_wheel for msgpack-python: started 18:45:29 Running setup.py bdist_wheel for msgpack-python: finished with status 'done' 18:45:29 Stored in directory: /home/buildfarm/.cache/pip/wheels/d5/de/86/7fa56fda12511be47ea0808f3502bc879df4e63ab168ec0406 18:45:29 Running setup.py bdist_wheel for paho-mqtt: started 18:45:29 Running setup.py bdist_wheel for paho-mqtt: finished with status 'done' 18:45:29 Stored in directory: /home/buildfarm/.cache/pip/wheels/75/e2/f5/78942b19b4d135605e58dfe85fba52253b14d636aabf76904b 18:45:29 Successfully built inject msgpack-python paho-mqtt 18:45:29 Installing collected packages: typing, inject, msgpack-python, paho-mqtt, pymongo 18:45:30 Successfully installed inject-3.5.4 msgpack-python-0.5.6 paho-mqtt-1.5.1 pymongo-3.11.2 typing-3.7.4.3 18:45:30 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:30 Built target install_depends 18:45:30 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:30 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/CMakeFiles 0 18:45:30 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:30 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:30 debian/rules override_dh_auto_test 18:45:30 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:30 # In case we're installing to a non-standard location, look for a setup.sh 18:45:30 # in the install tree that was dropped by catkin, and source it. It will 18:45:30 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 18:45:30 echo -- Running tests. Even if one of them fails the build is not canceled. 18:45:30 -- Running tests. Even if one of them fails the build is not canceled. 18:45:30 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 18:45:30 dh_auto_test || true 18:45:30 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:30 fakeroot debian/rules binary 18:45:30 dh binary -v --buildsystem=cmake 18:45:30 dh_testroot -O-v -O--buildsystem=cmake 18:45:30 dh_prep -O-v -O--buildsystem=cmake 18:45:30 rm -f -- debian/ros-melodic-mqtt-bridge.substvars 18:45:30 rm -fr -- debian/.debhelper/generated/ros-melodic-mqtt-bridge/ debian/ros-melodic-mqtt-bridge/ debian/tmp/ 18:45:30 dh_installdirs -O-v -O--buildsystem=cmake 18:45:31 install -d debian/ros-melodic-mqtt-bridge 18:45:31 debian/rules override_dh_auto_install 18:45:31 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:31 # In case we're installing to a non-standard location, look for a setup.sh 18:45:31 # in the install tree that was dropped by catkin, and source it. It will 18:45:31 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 18:45:31 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 18:45:31 dh_auto_install 18:45:31 cd obj-x86_64-linux-gnu && make -j1 install DESTDIR=/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge AM_UPDATE_INFO_DIR=no 18:45:31 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:31 /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0 -B/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 18:45:31 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 18:45:31 make -f CMakeFiles/Makefile2 all 18:45:31 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:31 make -f CMakeFiles/install_depends.dir/build.make CMakeFiles/install_depends.dir/depend 18:45:31 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:31 cd /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0 /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0 /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/CMakeFiles/install_depends.dir/DependInfo.cmake --color= 18:45:31 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:31 make -f CMakeFiles/install_depends.dir/build.make CMakeFiles/install_depends.dir/build 18:45:31 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:31 pip install --user -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt 18:45:32 Requirement already satisfied: inject<4.0,>=3.3.1 in /home/buildfarm/.local/lib/python2.7/site-packages (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt (line 1)) 18:45:32 Requirement already satisfied: msgpack-python>=0.4.8 in /home/buildfarm/.local/lib/python2.7/site-packages (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt (line 2)) 18:45:32 Requirement already satisfied: paho-mqtt>=1.2 in /home/buildfarm/.local/lib/python2.7/site-packages (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt (line 3)) 18:45:32 Requirement already satisfied: pymongo in /home/buildfarm/.local/lib/python2.7/site-packages (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt (line 4)) 18:45:32 Requirement already satisfied: typing; python_version < "3.5" in /home/buildfarm/.local/lib/python2.7/site-packages (from inject<4.0,>=3.3.1->-r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt (line 1)) 18:45:32 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:32 Built target install_depends 18:45:32 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:32 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/CMakeFiles 0 18:45:32 make -f CMakeFiles/Makefile2 preinstall 18:45:32 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:32 make[3]: Nothing to be done for 'preinstall'. 18:45:32 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:32 Install the project... 18:45:32 /usr/bin/cmake -P cmake_install.cmake 18:45:32 -- Install configuration: "None" 18:45:32 + cd /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0 18:45:32 + mkdir -p /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages 18:45:32 + /usr/bin/env PYTHONPATH=/opt/ros/melodic/lib/python2.7/dist-packages:/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib/python2.7/dist-packages:/opt/ros/melodic/lib/python2.7/dist-packages:/tmp/ros_buildfarm: CATKIN_BINARY_DIR=/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu /usr/bin/python /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/setup.py egg_info --egg-base /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu build --build-base /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu install --root=/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge --install-layout=deb --prefix=/opt/ros/melodic --install-scripts=/opt/ros/melodic/bin 18:45:32 running egg_info 18:45:32 creating /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/mqtt_bridge.egg-info 18:45:32 writing requirements to /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/requires.txt 18:45:32 writing /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/PKG-INFO 18:45:32 writing top-level names to /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/top_level.txt 18:45:32 writing dependency_links to /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/dependency_links.txt 18:45:32 writing manifest file '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/SOURCES.txt' 18:45:32 reading manifest file '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/SOURCES.txt' 18:45:32 writing manifest file '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/SOURCES.txt' 18:45:32 running build 18:45:32 running build_py 18:45:32 creating /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7 18:45:32 creating /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 18:45:32 copying src/mqtt_bridge/app.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 18:45:32 copying src/mqtt_bridge/util.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 18:45:32 copying src/mqtt_bridge/__init__.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 18:45:32 copying src/mqtt_bridge/bridge.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 18:45:32 copying src/mqtt_bridge/mqtt_client.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 18:45:32 running install 18:45:32 running install_lib 18:45:32 creating /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 18:45:32 copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge/app.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 18:45:32 copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge/util.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 18:45:32 copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge/__init__.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 18:45:32 copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge/bridge.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 18:45:32 copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge/mqtt_client.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 18:45:32 byte-compiling /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge/app.py to app.pyc 18:45:32 byte-compiling /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge/util.py to util.pyc 18:45:32 byte-compiling /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge/__init__.py to __init__.pyc 18:45:32 byte-compiling /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge/bridge.py to bridge.pyc 18:45:32 byte-compiling /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge/mqtt_client.py to mqtt_client.pyc 18:45:32 running install_egg_info 18:45:32 Copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu/mqtt_bridge.egg-info to /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge-1.0.0.egg-info 18:45:33 Skipping SOURCES.txt 18:45:33 running install_scripts 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/pkgconfig/mqtt_bridge.pc 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/cmake/mqtt_bridgeConfig.cmake 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/cmake/mqtt_bridgeConfig-version.cmake 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/package.xml 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/mqtt_bridge/mqtt_bridge_node.py 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/launch 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/launch/demo.launch 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/launch/action_server.launch 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/launch/dynamic_server.launch 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/launch/demo.test 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/config 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/config/tls_params.yaml 18:45:33 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/config/demo_params.yaml 18:45:33 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu' 18:45:33 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:33 dh_install -O-v -O--buildsystem=cmake 18:45:33 install -d debian/.debhelper/generated/ros-melodic-mqtt-bridge 18:45:33 dh_installdocs -O-v -O--buildsystem=cmake 18:45:33 install -d debian/ros-melodic-mqtt-bridge/usr/share/doc/ros-melodic-mqtt-bridge 18:45:33 dh_installchangelogs -O-v -O--buildsystem=cmake 18:45:33 install -p -m0644 debian/changelog debian/ros-melodic-mqtt-bridge/usr/share/doc/ros-melodic-mqtt-bridge/changelog.Debian 18:45:33 dh_installexamples -O-v -O--buildsystem=cmake 18:45:33 dh_installman -O-v -O--buildsystem=cmake 18:45:33 dh_installcatalogs -O-v -O--buildsystem=cmake 18:45:33 dh_installcron -O-v -O--buildsystem=cmake 18:45:33 dh_installdebconf -O-v -O--buildsystem=cmake 18:45:33 install -d debian/ros-melodic-mqtt-bridge/DEBIAN 18:45:33 dh_installemacsen -O-v -O--buildsystem=cmake 18:45:33 dh_installifupdown -O-v -O--buildsystem=cmake 18:45:33 dh_installinfo -O-v -O--buildsystem=cmake 18:45:33 dh_installinit -O-v -O--buildsystem=cmake 18:45:33 dh_installmenu -O-v -O--buildsystem=cmake 18:45:33 dh_installmime -O-v -O--buildsystem=cmake 18:45:34 dh_installmodules -O-v -O--buildsystem=cmake 18:45:34 dh_installlogcheck -O-v -O--buildsystem=cmake 18:45:34 dh_installlogrotate -O-v -O--buildsystem=cmake 18:45:34 dh_installpam -O-v -O--buildsystem=cmake 18:45:34 dh_installppp -O-v -O--buildsystem=cmake 18:45:34 dh_installudev -O-v -O--buildsystem=cmake 18:45:34 dh_installgsettings -O-v -O--buildsystem=cmake 18:45:34 dh_bugfiles -O-v -O--buildsystem=cmake 18:45:34 dh_ucf -O-v -O--buildsystem=cmake 18:45:34 dh_lintian -O-v -O--buildsystem=cmake 18:45:34 dh_gconf -O-v -O--buildsystem=cmake 18:45:34 dh_icons -O-v -O--buildsystem=cmake 18:45:34 dh_perl -O-v -O--buildsystem=cmake 18:45:34 dh_usrlocal -O-v -O--buildsystem=cmake 18:45:34 dh_link -O-v -O--buildsystem=cmake 18:45:34 dh_installwm -O-v -O--buildsystem=cmake 18:45:34 dh_installxfonts -O-v -O--buildsystem=cmake 18:45:34 dh_strip_nondeterminism -O-v -O--buildsystem=cmake 18:45:35 dh_compress -O-v -O--buildsystem=cmake 18:45:35 cd debian/ros-melodic-mqtt-bridge 18:45:35 chmod a-x usr/share/doc/ros-melodic-mqtt-bridge/changelog.Debian 18:45:35 gzip -9nf usr/share/doc/ros-melodic-mqtt-bridge/changelog.Debian 18:45:35 cd '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:35 dh_fixperms -O-v -O--buildsystem=cmake 18:45:35 find debian/ros-melodic-mqtt-bridge -true -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 18:45:35 find debian/ros-melodic-mqtt-bridge ! -type l -a -true -a -true -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s 18:45:35 find debian/ros-melodic-mqtt-bridge/usr/share/doc -type f -a -true -a ! -regex 'debian/ros-melodic-mqtt-bridge/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 18:45:35 find debian/ros-melodic-mqtt-bridge/usr/share/doc -type d -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0755 18:45:35 find debian/ros-melodic-mqtt-bridge -type f \( -name '*.so.*' -o -name '*.so' -o -name '*.la' -o -name '*.a' -o -name '*.js' -o -name '*.css' -o -name '*.scss' -o -name '*.sass' -o -name '*.jpeg' -o -name '*.jpg' -o -name '*.png' -o -name '*.gif' -o -name '*.cmxs' \) -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0644 18:45:35 dh_missing -O-v -O--buildsystem=cmake 18:45:35 dh_strip -O-v -O--buildsystem=cmake 18:45:35 dh_makeshlibs -O-v -O--buildsystem=cmake 18:45:35 rm -f debian/ros-melodic-mqtt-bridge/DEBIAN/shlibs 18:45:35 debian/rules override_dh_shlibdeps 18:45:35 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:35 # In case we're installing to a non-standard location, look for a setup.sh 18:45:35 # in the install tree that was dropped by catkin, and source it. It will 18:45:35 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 18:45:35 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 18:45:35 dh_shlibdeps -l/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian/ros-melodic-mqtt-bridge//opt/ros/melodic/lib/ 18:45:36 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0' 18:45:36 dh_installdeb -O-v -O--buildsystem=cmake 18:45:36 dh_gencontrol -O-v -O--buildsystem=cmake 18:45:36 echo misc:Depends= >> debian/ros-melodic-mqtt-bridge.substvars 18:45:36 echo misc:Pre-Depends= >> debian/ros-melodic-mqtt-bridge.substvars 18:45:36 dpkg-gencontrol -pros-melodic-mqtt-bridge -ldebian/changelog -Tdebian/ros-melodic-mqtt-bridge.substvars -Pdebian/ros-melodic-mqtt-bridge -UMulti-Arch 18:45:36 dpkg-gencontrol: warning: Depends field of package ros-melodic-mqtt-bridge: unknown substitution variable ${shlibs:Depends} 18:45:36 chmod 0644 -- debian/ros-melodic-mqtt-bridge/DEBIAN/control 18:45:36 chown 0:0 -- debian/ros-melodic-mqtt-bridge/DEBIAN/control 18:45:36 dh_md5sums -O-v -O--buildsystem=cmake 18:45:36 (cd debian/ros-melodic-mqtt-bridge >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum | perl -pe 'if (s@^\\@@) { s/\\\\/\\/g; }' > DEBIAN/md5sums) >/dev/null 18:45:36 chmod 0644 -- debian/ros-melodic-mqtt-bridge/DEBIAN/md5sums 18:45:36 chown 0:0 -- debian/ros-melodic-mqtt-bridge/DEBIAN/md5sums 18:45:36 dh_builddeb -O-v -O--buildsystem=cmake 18:45:36 dpkg-deb --build debian/ros-melodic-mqtt-bridge .. 18:45:36 dpkg-deb: building package 'ros-melodic-mqtt-bridge' in '../ros-melodic-mqtt-bridge_1.0.0-1bionic.20210129.184141_amd64.deb'. 18:45:36 dpkg-genbuildinfo --build=binary 18:45:36 dpkg-genchanges --build=binary >../ros-melodic-mqtt-bridge_1.0.0-1bionic.20210129.184141_amd64.changes 18:45:37 dpkg-genchanges: info: binary-only upload (no source code included) 18:45:37 dpkg-source --after-build ros-melodic-mqtt-bridge-1.0.0 18:45:37 dpkg-source: info: using options from ros-melodic-mqtt-bridge-1.0.0/debian/source/options: --auto-commit 18:45:37 dpkg-buildpackage: info: binary-only upload (no source included) 18:45:37 I: Successfully built in /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.0 18:45:37 # END SUBSECTION18:45:39 SSH: Connecting from host [lcas-buildfarm-slave-3] 18:45:39 SSH: Connecting with configuration [repo] ... 18:45:42 SSH: Disconnecting configuration [repo] ... 18:45:42 SSH: Transferred 2 file(s) 18:45:42 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 18:45:42 Waiting for the completion of Mrel_import-package 18:45:42 Mrel_import-package #824 started. 18:45:51 Mrel_import-package #824 completed. Result was SUCCESS 18:45:51 $ ssh-agent -k 18:45:51 unset SSH_AUTH_SOCK; 18:45:51 unset SSH_AGENT_PID; 18:45:51 echo Agent pid 18749 killed; 18:45:51 [ssh-agent] Stopped. 18:45:51 [description-setter] Description set: 1.0.0-1bionic.20210129.184141 18:45:51 Triggering a new build of Mrel_sync-packages-to-testing_bionic_amd64 18:45:51 Finished: SUCCESS3. Clean up to save disk space on agentsHide Details
18:45:38 # BEGIN SECTION: Clean up to save disk space on agents 18:45:38 + chmod -R u+w /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/binarydeb 18:45:38 + rm -fr binarydeb/ros-melodic-mqtt-bridge-1.0.0/CHANGELOG.rst binarydeb/ros-melodic-mqtt-bridge-1.0.0/CMakeLists.txt binarydeb/ros-melodic-mqtt-bridge-1.0.0/LICENSE.txt binarydeb/ros-melodic-mqtt-bridge-1.0.0/Makefile binarydeb/ros-melodic-mqtt-bridge-1.0.0/README.md binarydeb/ros-melodic-mqtt-bridge-1.0.0/config binarydeb/ros-melodic-mqtt-bridge-1.0.0/debian binarydeb/ros-melodic-mqtt-bridge-1.0.0/dev-requirements.txt binarydeb/ros-melodic-mqtt-bridge-1.0.0/launch binarydeb/ros-melodic-mqtt-bridge-1.0.0/obj-x86_64-linux-gnu binarydeb/ros-melodic-mqtt-bridge-1.0.0/package.xml binarydeb/ros-melodic-mqtt-bridge-1.0.0/requirements.txt binarydeb/ros-melodic-mqtt-bridge-1.0.0/scripts binarydeb/ros-melodic-mqtt-bridge-1.0.0/setup.py binarydeb/ros-melodic-mqtt-bridge-1.0.0/src binarydeb/ros-melodic-mqtt-bridge-1.0.0/test 18:45:38 + echo # END SECTION 18:45:38 # END SECTION