SuccessConsole Output

Skipping 217 KB.. Full Log
_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
14:32:17  ---> Using cache
14:32:17  ---> d9b48626ca0a
14:32:17 Step 21 : 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
14:32:17  ---> Using cache
14:32:17  ---> d974664eb50b
14:32:17 Step 22 : RUN echo "2019-12-02 (+0000)"
14:32:19  ---> Running in df6d2b07a40c
14:32:20 2019-12-02 (+0000)
14:32:20  ---> 7bae369071cb
14:32:20 Removing intermediate container df6d2b07a40c
14:32:20 Step 23 : 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
14:32:20  ---> Running in 26a6ffe99428
14:32:21 Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,823 B]
14:32:21 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease
14:32:21 Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB]
14:32:21 Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB]
14:32:21 Get:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
14:32:21 Get:6 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [117 kB]
14:32:21 Get:7 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB]
14:32:21 Ign:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  InRelease
14:32:21 Get:9 http://packages.ros.org/ros/ubuntu bionic InRelease [4,669 B]
14:32:21 Get:10 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Release [564 B]
14:32:21 Get:11 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Release.gpg [833 B]
14:32:21 Get:12 http://archive.ubuntu.com/ubuntu bionic/multiverse Sources [216 kB]
14:32:21 Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse Sources [5,685 B]
14:32:22 Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [1,319 kB]
14:32:22 Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/multiverse amd64 Packages [9,833 B]
14:32:22 Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [1,053 kB]
14:32:22 Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/restricted amd64 Packages [31.6 kB]
14:32:22 Get:18 http://archive.ubuntu.com/ubuntu bionic-backports/universe amd64 Packages [4,235 B]
14:32:22 Get:19 http://archive.ubuntu.com/ubuntu bionic-security/multiverse Sources [3,227 B]
14:32:22 Get:20 http://archive.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [6,508 B]
14:32:22 Get:21 http://packages.ros.org/ros/ubuntu bionic/main amd64 Packages [589 kB]
14:32:22 Get:22 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Packages [138 kB]
14:32:22 Get:23 http://security.ubuntu.com/ubuntu bionic-security/restricted amd64 Packages [16.8 kB]
14:32:22 Get:24 http://security.ubuntu.com/ubuntu bionic-security/multiverse amd64 Packages [6,508 B]
14:32:22 Get:25 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 Packages [789 kB]
14:32:23 Get:26 http://security.ubuntu.com/ubuntu bionic-security/main amd64 Packages [739 kB]
14:32:23 Fetched 5,395 kB in 2s (2,643 kB/s)
14:32:23 Reading package lists...
14:32:25 Reading package lists...
14:32:26 Building dependency tree...
14:32:27 Reading state information...
14:32:27 The following additional packages will be installed:
14:32:27   file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib
14:32:27   libpython3.6-minimal libpython3.6-stdlib mime-support python3-minimal
14:32:27   python3.6 python3.6-minimal xz-utils
14:32:27 Suggested packages:
14:32:27   python3-doc python3-tk python3-venv python3.6-venv python3.6-doc binutils
14:32:27   binfmt-support
14:32:27 The following NEW packages will be installed:
14:32:27   file libexpat1 libmagic-mgc libmagic1 libmpdec2 libpython3-stdlib
14:32:27   libpython3.6-minimal libpython3.6-stdlib mime-support python3
14:32:27   python3-minimal python3.6 python3.6-minimal xz-utils
14:32:27 0 upgraded, 14 newly installed, 0 to remove and 4 not upgraded.
14:32:27 Need to get 4,687 kB of archives.
14:32:27 After this operation, 28.3 MB of additional disk space will be used.
14:32:27 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-minimal amd64 3.6.9-1~18.04 [533 kB]
14:32:27 Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libexpat1 amd64 2.2.5-3ubuntu0.2 [80.5 kB]
14:32:27 Get:3 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6-minimal amd64 3.6.9-1~18.04 [1,610 kB]
14:32:27 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-minimal amd64 3.6.7-1~18.04 [23.7 kB]
14:32:27 Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 mime-support all 3.60ubuntu1 [30.1 kB]
14:32:27 Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpdec2 amd64 2.4.2-1ubuntu1 [84.1 kB]
14:32:27 Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3.6-stdlib amd64 3.6.9-1~18.04 [1,709 kB]
14:32:27 Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3.6 amd64 3.6.9-1~18.04 [203 kB]
14:32:27 Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython3-stdlib amd64 3.6.7-1~18.04 [7,240 B]
14:32:27 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3 amd64 3.6.7-1~18.04 [47.2 kB]
14:32:27 Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic-mgc amd64 1:5.32-2ubuntu0.3 [184 kB]
14:32:27 Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmagic1 amd64 1:5.32-2ubuntu0.3 [68.7 kB]
14:32:27 Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 file amd64 1:5.32-2ubuntu0.3 [22.1 kB]
14:32:27 Get:14 http://archive.ubuntu.com/ubuntu bionic/main amd64 xz-utils amd64 5.2.2-1.3 [83.8 kB]
14:32:27 debconf: delaying package configuration, since apt-utils is not installed
14:32:27 Fetched 4,687 kB in 0s (31.3 MB/s)
14:32:28 Selecting previously unselected package libpython3.6-minimal:amd64.
14:32:28 (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 ... 5006 files and directories currently installed.)
14:32:28 Preparing to unpack .../libpython3.6-minimal_3.6.9-1~18.04_amd64.deb ...
14:32:28 Unpacking libpython3.6-minimal:amd64 (3.6.9-1~18.04) ...
14:32:28 Selecting previously unselected package libexpat1:amd64.
14:32:28 Preparing to unpack .../libexpat1_2.2.5-3ubuntu0.2_amd64.deb ...
14:32:28 Unpacking libexpat1:amd64 (2.2.5-3ubuntu0.2) ...
14:32:28 Selecting previously unselected package python3.6-minimal.
14:32:28 Preparing to unpack .../python3.6-minimal_3.6.9-1~18.04_amd64.deb ...
14:32:28 Unpacking python3.6-minimal (3.6.9-1~18.04) ...
14:32:28 Setting up libpython3.6-minimal:amd64 (3.6.9-1~18.04) ...
14:32:28 Setting up libexpat1:amd64 (2.2.5-3ubuntu0.2) ...
14:32:28 Setting up python3.6-minimal (3.6.9-1~18.04) ...
14:32:29 Selecting previously unselected package python3-minimal.
14:32:29 (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 ... 5253 files and directories currently installed.)
14:32:29 Preparing to unpack .../0-python3-minimal_3.6.7-1~18.04_amd64.deb ...
14:32:29 Unpacking python3-minimal (3.6.7-1~18.04) ...
14:32:29 Selecting previously unselected package mime-support.
14:32:29 Preparing to unpack .../1-mime-support_3.60ubuntu1_all.deb ...
14:32:29 Unpacking mime-support (3.60ubuntu1) ...
14:32:29 Selecting previously unselected package libmpdec2:amd64.
14:32:29 Preparing to unpack .../2-libmpdec2_2.4.2-1ubuntu1_amd64.deb ...
14:32:29 Unpacking libmpdec2:amd64 (2.4.2-1ubuntu1) ...
14:32:29 Selecting previously unselected package libpython3.6-stdlib:amd64.
14:32:29 Preparing to unpack .../3-libpython3.6-stdlib_3.6.9-1~18.04_amd64.deb ...
14:32:29 Unpacking libpython3.6-stdlib:amd64 (3.6.9-1~18.04) ...
14:32:30 Selecting previously unselected package python3.6.
14:32:30 Preparing to unpack .../4-python3.6_3.6.9-1~18.04_amd64.deb ...
14:32:30 Unpacking python3.6 (3.6.9-1~18.04) ...
14:32:30 Selecting previously unselected package libpython3-stdlib:amd64.
14:32:30 Preparing to unpack .../5-libpython3-stdlib_3.6.7-1~18.04_amd64.deb ...
14:32:30 Unpacking libpython3-stdlib:amd64 (3.6.7-1~18.04) ...
14:32:30 Setting up python3-minimal (3.6.7-1~18.04) ...
14:32:31 Selecting previously unselected package python3.
14:32:31 (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 ... 5683 files and directories currently installed.)
14:32:31 Preparing to unpack .../python3_3.6.7-1~18.04_amd64.deb ...
14:32:31 Unpacking python3 (3.6.7-1~18.04) ...
14:32:31 Selecting previously unselected package libmagic-mgc.
14:32:31 Preparing to unpack .../libmagic-mgc_1%3a5.32-2ubuntu0.3_amd64.deb ...
14:32:31 Unpacking libmagic-mgc (1:5.32-2ubuntu0.3) ...
14:32:31 Selecting previously unselected package libmagic1:amd64.
14:32:31 Preparing to unpack .../libmagic1_1%3a5.32-2ubuntu0.3_amd64.deb ...
14:32:31 Unpacking libmagic1:amd64 (1:5.32-2ubuntu0.3) ...
14:32:31 Selecting previously unselected package file.
14:32:31 Preparing to unpack .../file_1%3a5.32-2ubuntu0.3_amd64.deb ...
14:32:31 Unpacking file (1:5.32-2ubuntu0.3) ...
14:32:31 Selecting previously unselected package xz-utils.
14:32:31 Preparing to unpack .../xz-utils_5.2.2-1.3_amd64.deb ...
14:32:31 Unpacking xz-utils (5.2.2-1.3) ...
14:32:31 Setting up mime-support (3.60ubuntu1) ...
14:32:31 Setting up libmagic-mgc (1:5.32-2ubuntu0.3) ...
14:32:31 Setting up libmagic1:amd64 (1:5.32-2ubuntu0.3) ...
14:32:31 Setting up xz-utils (5.2.2-1.3) ...
14:32:31 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
14:32:31 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
14:32:31 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
14:32:31 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
14:32:31 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
14:32:31 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
14:32:31 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
14:32:31 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
14:32:31 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
14:32:31 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
14:32:31 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
14:32:31 Setting up libmpdec2:amd64 (2.4.2-1ubuntu1) ...
14:32:31 Setting up libpython3.6-stdlib:amd64 (3.6.9-1~18.04) ...
14:32:31 Setting up python3.6 (3.6.9-1~18.04) ...
14:32:32 Setting up file (1:5.32-2ubuntu0.3) ...
14:32:32 Setting up libpython3-stdlib:amd64 (3.6.7-1~18.04) ...
14:32:33 Setting up python3 (3.6.7-1~18.04) ...
14:32:33 Processing triggers for libc-bin (2.27-3ubuntu1) ...
14:32:34  ---> e01205ba7994
14:32:35 Removing intermediate container 26a6ffe99428
14:32:35 Step 24 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python
14:32:35  ---> Running in 0f00be5435e1
14:32:35 Invoking 'apt-get update'
14:32:35 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease
14:32:35 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease
14:32:35 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
14:32:35 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease
14:32:35 Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease
14:32:36 Ign:6 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  InRelease
14:32:36 Hit:7 http://security.ubuntu.com/ubuntu bionic-security InRelease
14:32:36 Hit:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Release
14:32:36 Hit:9 http://packages.ros.org/ros/ubuntu bionic InRelease
14:32:38 Reading package lists...
14:32:38 Invoking 'apt-get install -q -y dh-python'
14:32:40 Reading package lists...
14:32:40 Building dependency tree...
14:32:40 Reading state information...
14:32:40 The following additional packages will be installed:
14:32:40   python3-distutils python3-lib2to3
14:32:40 Suggested packages:
14:32:40   libdpkg-perl dpkg-dev
14:32:40 The following NEW packages will be installed:
14:32:40   dh-python python3-distutils python3-lib2to3
14:32:40 0 upgraded, 3 newly installed, 0 to remove and 4 not upgraded.
14:32:40 Need to get 311 kB of archives.
14:32:40 After this operation, 3,582 kB of additional disk space will be used.
14:32:40 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-lib2to3 all 3.6.9-1~18.04 [77.4 kB]
14:32:40 Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python3-distutils all 3.6.9-1~18.04 [144 kB]
14:32:40 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-python all 3.20180325ubuntu2 [89.2 kB]
14:32:41 debconf: delaying package configuration, since apt-utils is not installed
14:32:41 Fetched 311 kB in 0s (3,438 kB/s)
14:32:41 Selecting previously unselected package python3-lib2to3.
14:32:41 (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 ... 5787 files and directories currently installed.)
14:32:41 Preparing to unpack .../python3-lib2to3_3.6.9-1~18.04_all.deb ...
14:32:41 Unpacking python3-lib2to3 (3.6.9-1~18.04) ...
14:32:41 Selecting previously unselected package python3-distutils.
14:32:41 Preparing to unpack .../python3-distutils_3.6.9-1~18.04_all.deb ...
14:32:41 Unpacking python3-distutils (3.6.9-1~18.04) ...
14:32:41 Selecting previously unselected package dh-python.
14:32:41 Preparing to unpack .../dh-python_3.20180325ubuntu2_all.deb ...
14:32:41 Unpacking dh-python (3.20180325ubuntu2) ...
14:32:42 Setting up python3-lib2to3 (3.6.9-1~18.04) ...
14:32:42 Setting up python3-distutils (3.6.9-1~18.04) ...
14:32:42 Setting up dh-python (3.20180325ubuntu2) ...
14:32:42 Invoking 'apt-get clean'
14:32:45  ---> 43d9e501fbd7
14:32:45 Removing intermediate container 0f00be5435e1
14:32:45 Step 25 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential
14:32:45  ---> Running in cd0d6f4fb8bc
14:32:46 Invoking 'apt-get update'
14:32:46 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease
14:32:46 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease
14:32:46 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
14:32:46 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease
14:32:46 Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease
14:32:46 Ign:6 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  InRelease
14:32:46 Hit:7 http://security.ubuntu.com/ubuntu bionic-security InRelease
14:32:46 Hit:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Release
14:32:46 Hit:9 http://packages.ros.org/ros/ubuntu bionic InRelease
14:32:49 Reading package lists...
14:32:49 Invoking 'apt-get install -q -y ccache gcc build-essential'
14:32:51 Reading package lists...
14:32:51 Building dependency tree...
14:32:51 Reading state information...
14:32:51 The following additional packages will be installed:
14:32:51   binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-7 dpkg-dev
14:32:51   fakeroot g++ g++-7 gcc-7 gcc-7-base libalgorithm-diff-perl
14:32:51   libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan4 libatomic1
14:32:51   libbinutils libc-dev-bin libc6-dev libcc1-0 libcilkrts5 libdpkg-perl
14:32:51   libfakeroot libfile-fcntllock-perl libgcc-7-dev libgdbm-compat4 libgdbm5
14:32:51   libgomp1 libisl19 libitm1 liblocale-gettext-perl liblsan0 libmpc3 libmpfr6
14:32:51   libmpx2 libperl5.26 libquadmath0 libstdc++-7-dev libtsan0 libubsan0
14:32:51   linux-libc-dev make manpages manpages-dev netbase patch perl
14:32:51   perl-modules-5.26
14:32:51 Suggested packages:
14:32:51   binutils-doc distcc cpp-doc gcc-7-locales debian-keyring g++-multilib
14:32:51   g++-7-multilib gcc-7-doc libstdc++6-7-dbg gcc-multilib autoconf automake
14:32:51   libtool flex bison gdb gcc-doc gcc-7-multilib libgcc1-dbg libgomp1-dbg
14:32:51   libitm1-dbg libatomic1-dbg libasan4-dbg liblsan0-dbg libtsan0-dbg
14:32:51   libubsan0-dbg libcilkrts5-dbg libmpx2-dbg libquadmath0-dbg glibc-doc git bzr
14:32:51   gdbm-l10n libstdc++-7-doc make-doc man-browser ed diffutils-doc perl-doc
14:32:51   libterm-readline-gnu-perl | libterm-readline-perl-perl
14:32:52 The following NEW packages will be installed:
14:32:52   binutils binutils-common binutils-x86-64-linux-gnu build-essential ccache
14:32:52   cpp cpp-7 dpkg-dev fakeroot g++ g++-7 gcc gcc-7 gcc-7-base
14:32:52   libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
14:32:52   libasan4 libatomic1 libbinutils libc-dev-bin libc6-dev libcc1-0 libcilkrts5
14:32:52   libdpkg-perl libfakeroot libfile-fcntllock-perl libgcc-7-dev libgdbm-compat4
14:32:52   libgdbm5 libgomp1 libisl19 libitm1 liblocale-gettext-perl liblsan0 libmpc3
14:32:52   libmpfr6 libmpx2 libperl5.26 libquadmath0 libstdc++-7-dev libtsan0 libubsan0
14:32:52   linux-libc-dev make manpages manpages-dev netbase patch perl
14:32:52   perl-modules-5.26
14:32:52 0 upgraded, 51 newly installed, 0 to remove and 4 not upgraded.
14:32:52 Need to get 45.4 MB of archives.
14:32:52 After this operation, 206 MB of additional disk space will be used.
14:32:52 Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblocale-gettext-perl amd64 1.07-3build2 [16.6 kB]
14:32:52 Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl-modules-5.26 all 5.26.1-6ubuntu0.3 [2,763 kB]
14:32:52 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm5 amd64 1.14.1-6 [26.0 kB]
14:32:52 Get:4 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgdbm-compat4 amd64 1.14.1-6 [6,084 B]
14:32:52 Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libperl5.26 amd64 5.26.1-6ubuntu0.3 [3,527 kB]
14:32:52 Get:6 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 perl amd64 5.26.1-6ubuntu0.3 [201 kB]
14:32:52 Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 netbase all 5.4 [12.7 kB]
14:32:52 Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages all 4.15-1 [1,234 kB]
14:32:52 Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-common amd64 2.30-21ubuntu1~18.04.2 [193 kB]
14:32:52 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libbinutils amd64 2.30-21ubuntu1~18.04.2 [503 kB]
14:32:52 Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils-x86-64-linux-gnu amd64 2.30-21ubuntu1~18.04.2 [1,856 kB]
14:32:52 Get:12 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 binutils amd64 2.30-21ubuntu1~18.04.2 [3,396 B]
14:32:52 Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 libc-dev-bin amd64 2.27-3ubuntu1 [71.8 kB]
14:32:52 Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 linux-libc-dev amd64 4.15.0-72.81 [1,000 kB]
14:32:52 Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 libc6-dev amd64 2.27-3ubuntu1 [2,587 kB]
14:32:52 Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7-base amd64 7.4.0-1ubuntu1~18.04.1 [18.9 kB]
14:32:52 Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 libisl19 amd64 0.19-1 [551 kB]
14:32:52 Get:18 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpfr6 amd64 4.0.1-1 [243 kB]
14:32:52 Get:19 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmpc3 amd64 1.1.0-1 [40.8 kB]
14:32:52 Get:20 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp-7 amd64 7.4.0-1ubuntu1~18.04.1 [6,742 kB]
14:32:52 Get:21 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cpp amd64 4:7.4.0-1ubuntu2.3 [27.7 kB]
14:32:52 Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcc1-0 amd64 8.3.0-6ubuntu1~18.04.1 [47.4 kB]
14:32:52 Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgomp1 amd64 8.3.0-6ubuntu1~18.04.1 [76.4 kB]
14:32:52 Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libitm1 amd64 8.3.0-6ubuntu1~18.04.1 [28.0 kB]
14:32:52 Get:25 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libatomic1 amd64 8.3.0-6ubuntu1~18.04.1 [9,184 B]
14:32:52 Get:26 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libasan4 amd64 7.4.0-1ubuntu1~18.04.1 [359 kB]
14:32:52 Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblsan0 amd64 8.3.0-6ubuntu1~18.04.1 [133 kB]
14:32:52 Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtsan0 amd64 8.3.0-6ubuntu1~18.04.1 [288 kB]
14:32:52 Get:29 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libubsan0 amd64 7.4.0-1ubuntu1~18.04.1 [126 kB]
14:32:52 Get:30 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcilkrts5 amd64 7.4.0-1ubuntu1~18.04.1 [42.5 kB]
14:32:52 Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libmpx2 amd64 8.3.0-6ubuntu1~18.04.1 [11.6 kB]
14:32:52 Get:32 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libquadmath0 amd64 8.3.0-6ubuntu1~18.04.1 [133 kB]
14:32:52 Get:33 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgcc-7-dev amd64 7.4.0-1ubuntu1~18.04.1 [2,381 kB]
14:32:52 Get:34 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc-7 amd64 7.4.0-1ubuntu1~18.04.1 [7,463 kB]
14:32:53 Get:35 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gcc amd64 4:7.4.0-1ubuntu2.3 [5,184 B]
14:32:53 Get:36 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libstdc++-7-dev amd64 7.4.0-1ubuntu1~18.04.1 [1,468 kB]
14:32:53 Get:37 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++-7 amd64 7.4.0-1ubuntu1~18.04.1 [7,574 kB]
14:32:53 Get:38 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 g++ amd64 4:7.4.0-1ubuntu2.3 [1,568 B]
14:32:53 Get:39 http://archive.ubuntu.com/ubuntu bionic/main amd64 make amd64 4.1-9.1ubuntu1 [154 kB]
14:32:53 Get:40 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libdpkg-perl all 1.19.0.5ubuntu2.3 [211 kB]
14:32:53 Get:41 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 patch amd64 2.7.6-2ubuntu1.1 [102 kB]
14:32:53 Get:42 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 dpkg-dev all 1.19.0.5ubuntu2.3 [607 kB]
14:32:53 Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 build-essential amd64 12.4ubuntu1 [4,758 B]
14:32:53 Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 ccache amd64 3.4.1-1 [110 kB]
14:32:53 Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfakeroot amd64 1.22-2ubuntu1 [25.9 kB]
14:32:53 Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 fakeroot amd64 1.22-2ubuntu1 [62.3 kB]
14:32:53 Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-perl all 1.19.03-1 [47.6 kB]
14:32:53 Get:48 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-diff-xs-perl amd64 0.04-5 [11.1 kB]
14:32:53 Get:49 http://archive.ubuntu.com/ubuntu bionic/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
14:32:53 Get:50 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-fcntllock-perl amd64 0.22-3build2 [33.2 kB]
14:32:53 Get:51 http://archive.ubuntu.com/ubuntu bionic/main amd64 manpages-dev all 4.15-1 [2,217 kB]
14:32:53 debconf: delaying package configuration, since apt-utils is not installed
14:32:53 Fetched 45.4 MB in 1s (38.2 MB/s)
14:32:54 Selecting previously unselected package liblocale-gettext-perl.
14:32:54 (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 ... 6240 files and directories currently installed.)
14:32:54 Preparing to unpack .../00-liblocale-gettext-perl_1.07-3build2_amd64.deb ...
14:32:54 Unpacking liblocale-gettext-perl (1.07-3build2) ...
14:32:54 Selecting previously unselected package perl-modules-5.26.
14:32:54 Preparing to unpack .../01-perl-modules-5.26_5.26.1-6ubuntu0.3_all.deb ...
14:32:54 Unpacking perl-modules-5.26 (5.26.1-6ubuntu0.3) ...
14:32:55 Selecting previously unselected package libgdbm5:amd64.
14:32:55 Preparing to unpack .../02-libgdbm5_1.14.1-6_amd64.deb ...
14:32:55 Unpacking libgdbm5:amd64 (1.14.1-6) ...
14:32:55 Selecting previously unselected package libgdbm-compat4:amd64.
14:32:55 Preparing to unpack .../03-libgdbm-compat4_1.14.1-6_amd64.deb ...
14:32:55 Unpacking libgdbm-compat4:amd64 (1.14.1-6) ...
14:32:55 Selecting previously unselected package libperl5.26:amd64.
14:32:55 Preparing to unpack .../04-libperl5.26_5.26.1-6ubuntu0.3_amd64.deb ...
14:32:55 Unpacking libperl5.26:amd64 (5.26.1-6ubuntu0.3) ...
14:32:56 Selecting previously unselected package perl.
14:32:56 Preparing to unpack .../05-perl_5.26.1-6ubuntu0.3_amd64.deb ...
14:32:56 Unpacking perl (5.26.1-6ubuntu0.3) ...
14:32:56 Selecting previously unselected package netbase.
14:32:56 Preparing to unpack .../06-netbase_5.4_all.deb ...
14:32:56 Unpacking netbase (5.4) ...
14:32:56 Selecting previously unselected package manpages.
14:32:56 Preparing to unpack .../07-manpages_4.15-1_all.deb ...
14:32:56 Unpacking manpages (4.15-1) ...
14:32:56 Selecting previously unselected package binutils-common:amd64.
14:32:56 Preparing to unpack .../08-binutils-common_2.30-21ubuntu1~18.04.2_amd64.deb ...
14:32:56 Unpacking binutils-common:amd64 (2.30-21ubuntu1~18.04.2) ...
14:32:56 Selecting previously unselected package libbinutils:amd64.
14:32:56 Preparing to unpack .../09-libbinutils_2.30-21ubuntu1~18.04.2_amd64.deb ...
14:32:56 Unpacking libbinutils:amd64 (2.30-21ubuntu1~18.04.2) ...
14:32:56 Selecting previously unselected package binutils-x86-64-linux-gnu.
14:32:56 Preparing to unpack .../10-binutils-x86-64-linux-gnu_2.30-21ubuntu1~18.04.2_amd64.deb ...
14:32:56 Unpacking binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.2) ...
14:32:57 Selecting previously unselected package binutils.
14:32:57 Preparing to unpack .../11-binutils_2.30-21ubuntu1~18.04.2_amd64.deb ...
14:32:57 Unpacking binutils (2.30-21ubuntu1~18.04.2) ...
14:32:57 Selecting previously unselected package libc-dev-bin.
14:32:57 Preparing to unpack .../12-libc-dev-bin_2.27-3ubuntu1_amd64.deb ...
14:32:57 Unpacking libc-dev-bin (2.27-3ubuntu1) ...
14:32:57 Selecting previously unselected package linux-libc-dev:amd64.
14:32:57 Preparing to unpack .../13-linux-libc-dev_4.15.0-72.81_amd64.deb ...
14:32:57 Unpacking linux-libc-dev:amd64 (4.15.0-72.81) ...
14:32:57 Selecting previously unselected package libc6-dev:amd64.
14:32:57 Preparing to unpack .../14-libc6-dev_2.27-3ubuntu1_amd64.deb ...
14:32:58 Unpacking libc6-dev:amd64 (2.27-3ubuntu1) ...
14:32:58 Selecting previously unselected package gcc-7-base:amd64.
14:32:58 Preparing to unpack .../15-gcc-7-base_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
14:32:58 Unpacking gcc-7-base:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:32:58 Selecting previously unselected package libisl19:amd64.
14:32:58 Preparing to unpack .../16-libisl19_0.19-1_amd64.deb ...
14:32:58 Unpacking libisl19:amd64 (0.19-1) ...
14:32:58 Selecting previously unselected package libmpfr6:amd64.
14:32:59 Preparing to unpack .../17-libmpfr6_4.0.1-1_amd64.deb ...
14:32:59 Unpacking libmpfr6:amd64 (4.0.1-1) ...
14:32:59 Selecting previously unselected package libmpc3:amd64.
14:32:59 Preparing to unpack .../18-libmpc3_1.1.0-1_amd64.deb ...
14:32:59 Unpacking libmpc3:amd64 (1.1.0-1) ...
14:32:59 Selecting previously unselected package cpp-7.
14:32:59 Preparing to unpack .../19-cpp-7_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
14:32:59 Unpacking cpp-7 (7.4.0-1ubuntu1~18.04.1) ...
14:33:00 Selecting previously unselected package cpp.
14:33:00 Preparing to unpack .../20-cpp_4%3a7.4.0-1ubuntu2.3_amd64.deb ...
14:33:00 Unpacking cpp (4:7.4.0-1ubuntu2.3) ...
14:33:00 Selecting previously unselected package libcc1-0:amd64.
14:33:00 Preparing to unpack .../21-libcc1-0_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
14:33:00 Unpacking libcc1-0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:00 Selecting previously unselected package libgomp1:amd64.
14:33:00 Preparing to unpack .../22-libgomp1_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
14:33:00 Unpacking libgomp1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:00 Selecting previously unselected package libitm1:amd64.
14:33:00 Preparing to unpack .../23-libitm1_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
14:33:00 Unpacking libitm1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:00 Selecting previously unselected package libatomic1:amd64.
14:33:00 Preparing to unpack .../24-libatomic1_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
14:33:00 Unpacking libatomic1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:00 Selecting previously unselected package libasan4:amd64.
14:33:00 Preparing to unpack .../25-libasan4_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
14:33:00 Unpacking libasan4:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:00 Selecting previously unselected package liblsan0:amd64.
14:33:00 Preparing to unpack .../26-liblsan0_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
14:33:00 Unpacking liblsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:01 Selecting previously unselected package libtsan0:amd64.
14:33:01 Preparing to unpack .../27-libtsan0_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
14:33:01 Unpacking libtsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:01 Selecting previously unselected package libubsan0:amd64.
14:33:01 Preparing to unpack .../28-libubsan0_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
14:33:01 Unpacking libubsan0:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:01 Selecting previously unselected package libcilkrts5:amd64.
14:33:01 Preparing to unpack .../29-libcilkrts5_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
14:33:01 Unpacking libcilkrts5:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:01 Selecting previously unselected package libmpx2:amd64.
14:33:01 Preparing to unpack .../30-libmpx2_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
14:33:01 Unpacking libmpx2:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:01 Selecting previously unselected package libquadmath0:amd64.
14:33:01 Preparing to unpack .../31-libquadmath0_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
14:33:01 Unpacking libquadmath0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:01 Selecting previously unselected package libgcc-7-dev:amd64.
14:33:01 Preparing to unpack .../32-libgcc-7-dev_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
14:33:01 Unpacking libgcc-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:02 Selecting previously unselected package gcc-7.
14:33:02 Preparing to unpack .../33-gcc-7_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
14:33:02 Unpacking gcc-7 (7.4.0-1ubuntu1~18.04.1) ...
14:33:03 Selecting previously unselected package gcc.
14:33:03 Preparing to unpack .../34-gcc_4%3a7.4.0-1ubuntu2.3_amd64.deb ...
14:33:03 Unpacking gcc (4:7.4.0-1ubuntu2.3) ...
14:33:03 Selecting previously unselected package libstdc++-7-dev:amd64.
14:33:03 Preparing to unpack .../35-libstdc++-7-dev_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
14:33:03 Unpacking libstdc++-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:04 Selecting previously unselected package g++-7.
14:33:04 Preparing to unpack .../36-g++-7_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
14:33:04 Unpacking g++-7 (7.4.0-1ubuntu1~18.04.1) ...
14:33:05 Selecting previously unselected package g++.
14:33:05 Preparing to unpack .../37-g++_4%3a7.4.0-1ubuntu2.3_amd64.deb ...
14:33:05 Unpacking g++ (4:7.4.0-1ubuntu2.3) ...
14:33:05 Selecting previously unselected package make.
14:33:05 Preparing to unpack .../38-make_4.1-9.1ubuntu1_amd64.deb ...
14:33:05 Unpacking make (4.1-9.1ubuntu1) ...
14:33:05 Selecting previously unselected package libdpkg-perl.
14:33:05 Preparing to unpack .../39-libdpkg-perl_1.19.0.5ubuntu2.3_all.deb ...
14:33:05 Unpacking libdpkg-perl (1.19.0.5ubuntu2.3) ...
14:33:05 Selecting previously unselected package patch.
14:33:05 Preparing to unpack .../40-patch_2.7.6-2ubuntu1.1_amd64.deb ...
14:33:05 Unpacking patch (2.7.6-2ubuntu1.1) ...
14:33:05 Selecting previously unselected package dpkg-dev.
14:33:05 Preparing to unpack .../41-dpkg-dev_1.19.0.5ubuntu2.3_all.deb ...
14:33:05 Unpacking dpkg-dev (1.19.0.5ubuntu2.3) ...
14:33:06 Selecting previously unselected package build-essential.
14:33:06 Preparing to unpack .../42-build-essential_12.4ubuntu1_amd64.deb ...
14:33:06 Unpacking build-essential (12.4ubuntu1) ...
14:33:06 Selecting previously unselected package ccache.
14:33:06 Preparing to unpack .../43-ccache_3.4.1-1_amd64.deb ...
14:33:06 Unpacking ccache (3.4.1-1) ...
14:33:06 Selecting previously unselected package libfakeroot:amd64.
14:33:06 Preparing to unpack .../44-libfakeroot_1.22-2ubuntu1_amd64.deb ...
14:33:06 Unpacking libfakeroot:amd64 (1.22-2ubuntu1) ...
14:33:06 Selecting previously unselected package fakeroot.
14:33:06 Preparing to unpack .../45-fakeroot_1.22-2ubuntu1_amd64.deb ...
14:33:06 Unpacking fakeroot (1.22-2ubuntu1) ...
14:33:06 Selecting previously unselected package libalgorithm-diff-perl.
14:33:06 Preparing to unpack .../46-libalgorithm-diff-perl_1.19.03-1_all.deb ...
14:33:06 Unpacking libalgorithm-diff-perl (1.19.03-1) ...
14:33:06 Selecting previously unselected package libalgorithm-diff-xs-perl.
14:33:06 Preparing to unpack .../47-libalgorithm-diff-xs-perl_0.04-5_amd64.deb ...
14:33:06 Unpacking libalgorithm-diff-xs-perl (0.04-5) ...
14:33:06 Selecting previously unselected package libalgorithm-merge-perl.
14:33:06 Preparing to unpack .../48-libalgorithm-merge-perl_0.08-3_all.deb ...
14:33:06 Unpacking libalgorithm-merge-perl (0.08-3) ...
14:33:06 Selecting previously unselected package libfile-fcntllock-perl.
14:33:06 Preparing to unpack .../49-libfile-fcntllock-perl_0.22-3build2_amd64.deb ...
14:33:06 Unpacking libfile-fcntllock-perl (0.22-3build2) ...
14:33:06 Selecting previously unselected package manpages-dev.
14:33:06 Preparing to unpack .../50-manpages-dev_4.15-1_all.deb ...
14:33:06 Unpacking manpages-dev (4.15-1) ...
14:33:08 Setting up libquadmath0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:08 Setting up libgomp1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:08 Setting up libatomic1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:08 Setting up manpages (4.15-1) ...
14:33:08 Setting up libcc1-0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:08 Setting up ccache (3.4.1-1) ...
14:33:08 Updating symlinks in /usr/lib/ccache ...
14:33:08 Setting up make (4.1-9.1ubuntu1) ...
14:33:08 Setting up libtsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:08 Setting up linux-libc-dev:amd64 (4.15.0-72.81) ...
14:33:08 Setting up libmpfr6:amd64 (4.0.1-1) ...
14:33:08 Setting up perl-modules-5.26 (5.26.1-6ubuntu0.3) ...
14:33:08 Setting up libgdbm5:amd64 (1.14.1-6) ...
14:33:08 Setting up liblsan0:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:09 Setting up gcc-7-base:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:09 Setting up binutils-common:amd64 (2.30-21ubuntu1~18.04.2) ...
14:33:09 Setting up libmpx2:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:09 Setting up patch (2.7.6-2ubuntu1.1) ...
14:33:09 Setting up libfakeroot:amd64 (1.22-2ubuntu1) ...
14:33:09 Setting up liblocale-gettext-perl (1.07-3build2) ...
14:33:09 Setting up libmpc3:amd64 (1.1.0-1) ...
14:33:09 Setting up libc-dev-bin (2.27-3ubuntu1) ...
14:33:09 Setting up libgdbm-compat4:amd64 (1.14.1-6) ...
14:33:09 Setting up manpages-dev (4.15-1) ...
14:33:09 Setting up libc6-dev:amd64 (2.27-3ubuntu1) ...
14:33:09 Setting up libitm1:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:09 Setting up netbase (5.4) ...
14:33:09 Setting up libisl19:amd64 (0.19-1) ...
14:33:09 Setting up libasan4:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:09 Setting up libbinutils:amd64 (2.30-21ubuntu1~18.04.2) ...
14:33:09 Setting up libcilkrts5:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:09 Setting up libubsan0:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:09 Setting up fakeroot (1.22-2ubuntu1) ...
14:33:09 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
14:33:09 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
14:33:09 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
14:33:09 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
14:33:09 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
14:33:09 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
14:33:09 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
14:33:09 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
14:33:09 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
14:33:09 Setting up libgcc-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:09 Setting up cpp-7 (7.4.0-1ubuntu1~18.04.1) ...
14:33:09 Setting up libstdc++-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:09 Setting up libperl5.26:amd64 (5.26.1-6ubuntu0.3) ...
14:33:09 Setting up binutils-x86-64-linux-gnu (2.30-21ubuntu1~18.04.2) ...
14:33:10 Setting up cpp (4:7.4.0-1ubuntu2.3) ...
14:33:10 Setting up perl (5.26.1-6ubuntu0.3) ...
14:33:10 Setting up libfile-fcntllock-perl (0.22-3build2) ...
14:33:10 Setting up libalgorithm-diff-perl (1.19.03-1) ...
14:33:10 Setting up binutils (2.30-21ubuntu1~18.04.2) ...
14:33:10 Setting up gcc-7 (7.4.0-1ubuntu1~18.04.1) ...
14:33:10 Setting up g++-7 (7.4.0-1ubuntu1~18.04.1) ...
14:33:10 Setting up libdpkg-perl (1.19.0.5ubuntu2.3) ...
14:33:10 Setting up gcc (4:7.4.0-1ubuntu2.3) ...
14:33:10 Setting up libalgorithm-merge-perl (0.08-3) ...
14:33:10 Setting up dpkg-dev (1.19.0.5ubuntu2.3) ...
14:33:10 Setting up libalgorithm-diff-xs-perl (0.04-5) ...
14:33:10 Setting up g++ (4:7.4.0-1ubuntu2.3) ...
14:33:10 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
14:33:10 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
14:33:10 Setting up build-essential (12.4ubuntu1) ...
14:33:10 Processing triggers for libc-bin (2.27-3ubuntu1) ...
14:33:10 Invoking 'apt-get clean'
14:33:17  ---> 6cd34fa0b50b
14:33:18 Removing intermediate container cd0d6f4fb8bc
14:33:18 Step 26 : 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
14:33:18  ---> Running in b8e66bb942e6
14:33:18 apt-src: 0.25.2
14:33:18 Invoking 'apt-get update'
14:33:18 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease
14:33:18 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease
14:33:18 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
14:33:18 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease
14:33:18 Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease
14:33:19 Ign:6 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  InRelease
14:33:19 Hit:7 http://security.ubuntu.com/ubuntu bionic-security InRelease
14:33:19 Hit:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Release
14:33:19 Hit:9 http://packages.ros.org/ros/ubuntu bionic InRelease
14:33:21 Reading package lists...
14:33:22 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes apt-src'
14:33:23 Reading package lists...
14:33:23 Building dependency tree...
14:33:23 Reading state information...
14:33:23 Starting pkgProblemResolver with broken count: 0
14:33:23 Starting 2 pkgProblemResolver with broken count: 0
14:33:23 Done
14:33:24 The following additional packages will be installed:
14:33:24   libapt-pkg-perl sudo
14:33:24 The following NEW packages will be installed:
14:33:24   apt-src libapt-pkg-perl sudo
14:33:24 0 upgraded, 3 newly installed, 0 to remove and 4 not upgraded.
14:33:24 Need to get 527 kB of archives.
14:33:24 After this operation, 2,062 kB of additional disk space will be used.
14:33:24 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 sudo amd64 1.8.21p2-3ubuntu1.1 [428 kB]
14:33:24 Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 libapt-pkg-perl amd64 0.1.33build1 [68.0 kB]
14:33:24 Get:3 http://archive.ubuntu.com/ubuntu bionic/universe amd64 apt-src all 0.25.2 [31.1 kB]
14:33:24 debconf: delaying package configuration, since apt-utils is not installed
14:33:24 Fetched 527 kB in 0s (5,396 kB/s)
14:33:24 Selecting previously unselected package sudo.
14:33:24 (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 ... 13954 files and directories currently installed.)
14:33:24 Preparing to unpack .../sudo_1.8.21p2-3ubuntu1.1_amd64.deb ...
14:33:24 Unpacking sudo (1.8.21p2-3ubuntu1.1) ...
14:33:24 Selecting previously unselected package libapt-pkg-perl.
14:33:24 Preparing to unpack .../libapt-pkg-perl_0.1.33build1_amd64.deb ...
14:33:24 Unpacking libapt-pkg-perl (0.1.33build1) ...
14:33:24 Selecting previously unselected package apt-src.
14:33:24 Preparing to unpack .../apt-src_0.25.2_all.deb ...
14:33:24 Unpacking apt-src (0.25.2) ...
14:33:24 Setting up libapt-pkg-perl (0.1.33build1) ...
14:33:25 Setting up apt-src (0.25.2) ...
14:33:25 Setting up sudo (1.8.21p2-3ubuntu1.1) ...
14:33:25 Invoking 'apt-get clean'
14:33:25  ---> c7df930dba8c
14:33:25 Removing intermediate container b8e66bb942e6
14:33:25 Step 27 : RUN echo "clang: 1:6.0-41~exp5~ubuntu1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes clang
14:33:26  ---> Running in 32ce826ffb88
14:33:26 clang: 1:6.0-41~exp5~ubuntu1
14:33:26 Invoking 'apt-get update'
14:33:26 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease
14:33:26 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease
14:33:26 Hit:3 http://security.ubuntu.com/ubuntu bionic-security InRelease
14:33:26 Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
14:33:26 Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease
14:33:26 Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease
14:33:26 Ign:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  InRelease
14:33:26 Hit:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Release
14:33:26 Hit:9 http://packages.ros.org/ros/ubuntu bionic InRelease
14:33:29 Reading package lists...
14:33:29 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes clang'
14:33:31 Reading package lists...
14:33:31 Building dependency tree...
14:33:31 Reading state information...
14:33:31 Starting pkgProblemResolver with broken count: 0
14:33:31 Starting 2 pkgProblemResolver with broken count: 0
14:33:31 Done
14:33:31 The following additional packages will be installed:
14:33:31   binfmt-support clang-6.0 lib32gcc1 lib32stdc++6 libc6-i386
14:33:31   libclang-common-6.0-dev libclang1-6.0 libedit2 libffi-dev libgc1c2
14:33:31   libjsoncpp1 libllvm6.0 libobjc-7-dev libobjc4 libomp-dev libomp5
14:33:31   libpipeline1 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib
14:33:31   libtinfo-dev llvm-6.0 llvm-6.0-dev llvm-6.0-runtime python python-minimal
14:33:31   python2.7 python2.7-minimal
14:33:31 Suggested packages:
14:33:31   gnustep gnustep-devel clang-6.0-doc libomp-doc llvm-6.0-doc python-doc
14:33:31   python-tk python2.7-doc
14:33:31 The following NEW packages will be installed:
14:33:31   binfmt-support clang clang-6.0 lib32gcc1 lib32stdc++6 libc6-i386
14:33:31   libclang-common-6.0-dev libclang1-6.0 libedit2 libffi-dev libgc1c2
14:33:31   libjsoncpp1 libllvm6.0 libobjc-7-dev libobjc4 libomp-dev libomp5
14:33:31   libpipeline1 libpython-stdlib libpython2.7-minimal libpython2.7-stdlib
14:33:31   libtinfo-dev llvm-6.0 llvm-6.0-dev llvm-6.0-runtime python python-minimal
14:33:31   python2.7 python2.7-minimal
14:33:31 0 upgraded, 29 newly installed, 0 to remove and 4 not upgraded.
14:33:31 Need to get 70.1 MB of archives.
14:33:31 After this operation, 384 MB of additional disk space will be used.
14:33:31 Get:1 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-minimal amd64 2.7.15-4ubuntu4~18.04.2 [336 kB]
14:33:31 Get:2 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7-minimal amd64 2.7.15-4ubuntu4~18.04.2 [1,296 kB]
14:33:31 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-minimal amd64 2.7.15~rc1-1 [28.1 kB]
14:33:31 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpython2.7-stdlib amd64 2.7.15-4ubuntu4~18.04.2 [1,916 kB]
14:33:31 Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 python2.7 amd64 2.7.15-4ubuntu4~18.04.2 [239 kB]
14:33:32 Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpython-stdlib amd64 2.7.15~rc1-1 [7,620 B]
14:33:32 Get:7 http://archive.ubuntu.com/ubuntu bionic/main amd64 python amd64 2.7.15~rc1-1 [140 kB]
14:33:32 Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 libedit2 amd64 3.1-20170329-1 [76.9 kB]
14:33:32 Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpipeline1 amd64 1.5.0-1 [25.3 kB]
14:33:32 Get:10 http://archive.ubuntu.com/ubuntu bionic/main amd64 binfmt-support amd64 2.1.8-2 [51.6 kB]
14:33:32 Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjsoncpp1 amd64 1.7.4-3 [73.6 kB]
14:33:32 Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 libllvm6.0 amd64 1:6.0-1ubuntu2 [14.5 MB]
14:33:32 Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 libgc1c2 amd64 1:7.4.2-8ubuntu1 [81.8 kB]
14:33:32 Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libobjc4 amd64 8.3.0-6ubuntu1~18.04.1 [52.2 kB]
14:33:32 Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libobjc-7-dev amd64 7.4.0-1ubuntu1~18.04.1 [206 kB]
14:33:32 Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 libc6-i386 amd64 2.27-3ubuntu1 [2,651 kB]
14:33:32 Get:17 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 lib32gcc1 amd64 1:8.3.0-6ubuntu1~18.04.1 [47.9 kB]
14:33:32 Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 lib32stdc++6 amd64 8.3.0-6ubuntu1~18.04.1 [416 kB]
14:33:32 Get:19 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libclang-common-6.0-dev amd64 1:6.0-1ubuntu2 [3,078 kB]
14:33:32 Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 libclang1-6.0 amd64 1:6.0-1ubuntu2 [7,067 kB]
14:33:32 Get:21 http://archive.ubuntu.com/ubuntu bionic/universe amd64 clang-6.0 amd64 1:6.0-1ubuntu2 [9,292 kB]
14:33:32 Get:22 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 clang amd64 1:6.0-41~exp5~ubuntu1 [3,216 B]
14:33:32 Get:23 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtinfo-dev amd64 6.1-1ubuntu1.18.04 [81.3 kB]
14:33:32 Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 llvm-6.0-runtime amd64 1:6.0-1ubuntu2 [200 kB]
14:33:32 Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 llvm-6.0 amd64 1:6.0-1ubuntu2 [4,838 kB]
14:33:32 Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 libffi-dev amd64 3.2.1-8 [156 kB]
14:33:32 Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 llvm-6.0-dev amd64 1:6.0-1ubuntu2 [23.0 MB]
14:33:33 Get:28 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libomp5 amd64 5.0.1-1 [234 kB]
14:33:33 Get:29 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libomp-dev amd64 5.0.1-1 [5,088 B]
14:33:33 debconf: delaying package configuration, since apt-utils is not installed
14:33:33 Fetched 70.1 MB in 2s (42.1 MB/s)
14:33:34 Selecting previously unselected package libpython2.7-minimal:amd64.
14:33:34 (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 ... 14049 files and directories currently installed.)
14:33:34 Preparing to unpack .../0-libpython2.7-minimal_2.7.15-4ubuntu4~18.04.2_amd64.deb ...
14:33:34 Unpacking libpython2.7-minimal:amd64 (2.7.15-4ubuntu4~18.04.2) ...
14:33:34 Selecting previously unselected package python2.7-minimal.
14:33:34 Preparing to unpack .../1-python2.7-minimal_2.7.15-4ubuntu4~18.04.2_amd64.deb ...
14:33:34 Unpacking python2.7-minimal (2.7.15-4ubuntu4~18.04.2) ...
14:33:34 Selecting previously unselected package python-minimal.
14:33:34 Preparing to unpack .../2-python-minimal_2.7.15~rc1-1_amd64.deb ...
14:33:34 Unpacking python-minimal (2.7.15~rc1-1) ...
14:33:34 Selecting previously unselected package libpython2.7-stdlib:amd64.
14:33:34 Preparing to unpack .../3-libpython2.7-stdlib_2.7.15-4ubuntu4~18.04.2_amd64.deb ...
14:33:34 Unpacking libpython2.7-stdlib:amd64 (2.7.15-4ubuntu4~18.04.2) ...
14:33:35 Selecting previously unselected package python2.7.
14:33:35 Preparing to unpack .../4-python2.7_2.7.15-4ubuntu4~18.04.2_amd64.deb ...
14:33:35 Unpacking python2.7 (2.7.15-4ubuntu4~18.04.2) ...
14:33:35 Selecting previously unselected package libpython-stdlib:amd64.
14:33:35 Preparing to unpack .../5-libpython-stdlib_2.7.15~rc1-1_amd64.deb ...
14:33:35 Unpacking libpython-stdlib:amd64 (2.7.15~rc1-1) ...
14:33:35 Setting up libpython2.7-minimal:amd64 (2.7.15-4ubuntu4~18.04.2) ...
14:33:35 Setting up python2.7-minimal (2.7.15-4ubuntu4~18.04.2) ...
14:33:36 Setting up python-minimal (2.7.15~rc1-1) ...
14:33:36 Selecting previously unselected package python.
14:33:36 (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 ... 14800 files and directories currently installed.)
14:33:36 Preparing to unpack .../00-python_2.7.15~rc1-1_amd64.deb ...
14:33:36 Unpacking python (2.7.15~rc1-1) ...
14:33:36 Selecting previously unselected package libedit2:amd64.
14:33:36 Preparing to unpack .../01-libedit2_3.1-20170329-1_amd64.deb ...
14:33:36 Unpacking libedit2:amd64 (3.1-20170329-1) ...
14:33:36 Selecting previously unselected package libpipeline1:amd64.
14:33:36 Preparing to unpack .../02-libpipeline1_1.5.0-1_amd64.deb ...
14:33:36 Unpacking libpipeline1:amd64 (1.5.0-1) ...
14:33:36 Selecting previously unselected package binfmt-support.
14:33:36 Preparing to unpack .../03-binfmt-support_2.1.8-2_amd64.deb ...
14:33:36 Unpacking binfmt-support (2.1.8-2) ...
14:33:36 Selecting previously unselected package libjsoncpp1:amd64.
14:33:36 Preparing to unpack .../04-libjsoncpp1_1.7.4-3_amd64.deb ...
14:33:36 Unpacking libjsoncpp1:amd64 (1.7.4-3) ...
14:33:36 Selecting previously unselected package libllvm6.0:amd64.
14:33:36 Preparing to unpack .../05-libllvm6.0_1%3a6.0-1ubuntu2_amd64.deb ...
14:33:36 Unpacking libllvm6.0:amd64 (1:6.0-1ubuntu2) ...
14:33:38 Selecting previously unselected package libgc1c2:amd64.
14:33:38 Preparing to unpack .../06-libgc1c2_1%3a7.4.2-8ubuntu1_amd64.deb ...
14:33:38 Unpacking libgc1c2:amd64 (1:7.4.2-8ubuntu1) ...
14:33:39 Selecting previously unselected package libobjc4:amd64.
14:33:39 Preparing to unpack .../07-libobjc4_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
14:33:39 Unpacking libobjc4:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:39 Selecting previously unselected package libobjc-7-dev:amd64.
14:33:39 Preparing to unpack .../08-libobjc-7-dev_7.4.0-1ubuntu1~18.04.1_amd64.deb ...
14:33:39 Unpacking libobjc-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:39 Selecting previously unselected package libc6-i386.
14:33:39 Preparing to unpack .../09-libc6-i386_2.27-3ubuntu1_amd64.deb ...
14:33:39 Unpacking libc6-i386 (2.27-3ubuntu1) ...
14:33:39 Selecting previously unselected package lib32gcc1.
14:33:39 Preparing to unpack .../10-lib32gcc1_1%3a8.3.0-6ubuntu1~18.04.1_amd64.deb ...
14:33:39 Unpacking lib32gcc1 (1:8.3.0-6ubuntu1~18.04.1) ...
14:33:39 Selecting previously unselected package lib32stdc++6.
14:33:39 Preparing to unpack .../11-lib32stdc++6_8.3.0-6ubuntu1~18.04.1_amd64.deb ...
14:33:40 Unpacking lib32stdc++6 (8.3.0-6ubuntu1~18.04.1) ...
14:33:40 Selecting previously unselected package libclang-common-6.0-dev.
14:33:40 Preparing to unpack .../12-libclang-common-6.0-dev_1%3a6.0-1ubuntu2_amd64.deb ...
14:33:40 Unpacking libclang-common-6.0-dev (1:6.0-1ubuntu2) ...
14:33:41 Selecting previously unselected package libclang1-6.0:amd64.
14:33:41 Preparing to unpack .../13-libclang1-6.0_1%3a6.0-1ubuntu2_amd64.deb ...
14:33:41 Unpacking libclang1-6.0:amd64 (1:6.0-1ubuntu2) ...
14:33:42 Selecting previously unselected package clang-6.0.
14:33:42 Preparing to unpack .../14-clang-6.0_1%3a6.0-1ubuntu2_amd64.deb ...
14:33:42 Unpacking clang-6.0 (1:6.0-1ubuntu2) ...
14:33:43 Selecting previously unselected package clang.
14:33:43 Preparing to unpack .../15-clang_1%3a6.0-41~exp5~ubuntu1_amd64.deb ...
14:33:43 Unpacking clang (1:6.0-41~exp5~ubuntu1) ...
14:33:44 Selecting previously unselected package libtinfo-dev:amd64.
14:33:44 Preparing to unpack .../16-libtinfo-dev_6.1-1ubuntu1.18.04_amd64.deb ...
14:33:44 Unpacking libtinfo-dev:amd64 (6.1-1ubuntu1.18.04) ...
14:33:44 Selecting previously unselected package llvm-6.0-runtime.
14:33:44 Preparing to unpack .../17-llvm-6.0-runtime_1%3a6.0-1ubuntu2_amd64.deb ...
14:33:44 Unpacking llvm-6.0-runtime (1:6.0-1ubuntu2) ...
14:33:44 Selecting previously unselected package llvm-6.0.
14:33:44 Preparing to unpack .../18-llvm-6.0_1%3a6.0-1ubuntu2_amd64.deb ...
14:33:44 Unpacking llvm-6.0 (1:6.0-1ubuntu2) ...
14:33:45 Selecting previously unselected package libffi-dev:amd64.
14:33:45 Preparing to unpack .../19-libffi-dev_3.2.1-8_amd64.deb ...
14:33:45 Unpacking libffi-dev:amd64 (3.2.1-8) ...
14:33:45 Selecting previously unselected package llvm-6.0-dev.
14:33:45 Preparing to unpack .../20-llvm-6.0-dev_1%3a6.0-1ubuntu2_amd64.deb ...
14:33:45 Unpacking llvm-6.0-dev (1:6.0-1ubuntu2) ...
14:33:51 Selecting previously unselected package libomp5:amd64.
14:33:51 Preparing to unpack .../21-libomp5_5.0.1-1_amd64.deb ...
14:33:51 Unpacking libomp5:amd64 (5.0.1-1) ...
14:33:51 Selecting previously unselected package libomp-dev.
14:33:51 Preparing to unpack .../22-libomp-dev_5.0.1-1_amd64.deb ...
14:33:51 Unpacking libomp-dev (5.0.1-1) ...
14:33:52 Setting up libedit2:amd64 (3.1-20170329-1) ...
14:33:52 Setting up libomp5:amd64 (5.0.1-1) ...
14:33:52 Setting up libllvm6.0:amd64 (1:6.0-1ubuntu2) ...
14:33:52 Setting up libtinfo-dev:amd64 (6.1-1ubuntu1.18.04) ...
14:33:52 Setting up libgc1c2:amd64 (1:7.4.2-8ubuntu1) ...
14:33:52 Setting up libclang1-6.0:amd64 (1:6.0-1ubuntu2) ...
14:33:52 Setting up libffi-dev:amd64 (3.2.1-8) ...
14:33:52 Setting up libpipeline1:amd64 (1.5.0-1) ...
14:33:52 Setting up libc6-i386 (2.27-3ubuntu1) ...
14:33:52 Setting up libomp-dev (5.0.1-1) ...
14:33:52 Setting up libpython2.7-stdlib:amd64 (2.7.15-4ubuntu4~18.04.2) ...
14:33:52 Setting up lib32gcc1 (1:8.3.0-6ubuntu1~18.04.1) ...
14:33:52 Setting up libjsoncpp1:amd64 (1.7.4-3) ...
14:33:52 Setting up binfmt-support (2.1.8-2) ...
14:33:52 mount: /proc/sys/fs/binfmt_misc: cannot mount binfmt_misc read-only.
14:33:52 update-binfmts: warning: Couldn't mount the binfmt_misc filesystem on /proc/sys/fs/binfmt_misc.
14:33:52 mount: /proc/sys/fs/binfmt_misc: cannot mount binfmt_misc read-only.
14:33:52 update-binfmts: warning: Couldn't mount the binfmt_misc filesystem on /proc/sys/fs/binfmt_misc.
14:33:52 mount: /proc/sys/fs/binfmt_misc: cannot mount binfmt_misc read-only.
14:33:52 update-binfmts: warning: Couldn't mount the binfmt_misc filesystem on /proc/sys/fs/binfmt_misc.
14:33:52 invoke-rc.d: could not determine current runlevel
14:33:52 invoke-rc.d: policy-rc.d denied execution of start.
14:33:52 Setting up libobjc4:amd64 (8.3.0-6ubuntu1~18.04.1) ...
14:33:52 Setting up python2.7 (2.7.15-4ubuntu4~18.04.2) ...
14:33:54 Setting up llvm-6.0-runtime (1:6.0-1ubuntu2) ...
14:33:54 mount: /proc/sys/fs/binfmt_misc: cannot mount binfmt_misc read-only.
14:33:54 update-binfmts: warning: Couldn't mount the binfmt_misc filesystem on /proc/sys/fs/binfmt_misc.
14:33:54 Setting up libpython-stdlib:amd64 (2.7.15~rc1-1) ...
14:33:54 Setting up libobjc-7-dev:amd64 (7.4.0-1ubuntu1~18.04.1) ...
14:33:54 Setting up llvm-6.0 (1:6.0-1ubuntu2) ...
14:33:54 Setting up lib32stdc++6 (8.3.0-6ubuntu1~18.04.1) ...
14:33:55 Setting up python (2.7.15~rc1-1) ...
14:33:55 Setting up libclang-common-6.0-dev (1:6.0-1ubuntu2) ...
14:33:55 Setting up llvm-6.0-dev (1:6.0-1ubuntu2) ...
14:33:55 Setting up clang-6.0 (1:6.0-1ubuntu2) ...
14:33:55 Setting up clang (1:6.0-41~exp5~ubuntu1) ...
14:33:55 Processing triggers for mime-support (3.60ubuntu1) ...
14:33:55 Processing triggers for libc-bin (2.27-3ubuntu1) ...
14:33:55 Processing triggers for ccache (3.4.1-1) ...
14:33:55 Updating symlinks in /usr/lib/ccache ...
14:33:55 Invoking 'apt-get clean'
14:34:03  ---> 261151c9fa05
14:34:04 Removing intermediate container 32ce826ffb88
14:34:04 Step 28 : 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
14:34:04  ---> Running in 147735205ade
14:34:05 debhelper: 12.1.1ubuntu1~ubuntu18.04.1
14:34:05 Invoking 'apt-get update'
14:34:05 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease
14:34:05 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease
14:34:05 Hit:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
14:34:05 Hit:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease
14:34:05 Hit:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease
14:34:05 Ign:6 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  InRelease
14:34:05 Hit:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Release
14:34:05 Hit:8 http://packages.ros.org/ros/ubuntu bionic InRelease
14:34:05 Hit:9 http://security.ubuntu.com/ubuntu bionic-security InRelease
14:34:08 Reading package lists...
14:34:08 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes debhelper'
14:34:10 Reading package lists...
14:34:11 Building dependency tree...
14:34:11 Reading state information...
14:34:11 Starting pkgProblemResolver with broken count: 0
14:34:11 Starting 2 pkgProblemResolver with broken count: 0
14:34:11 Done
14:34:11 The following additional packages will be installed:
14:34:11   autoconf automake autopoint autotools-dev bsdmainutils ca-certificates curl
14:34:11   dh-autoreconf dh-strip-nondeterminism gettext gettext-base groff-base
14:34:11   intltool-debian krb5-locales libarchive-cpio-perl libarchive-zip-perl
14:34:11   libbsd0 libcroco3 libcurl4 libfile-stripnondeterminism-perl libglib2.0-0
14:34:11   libglib2.0-data libgssapi-krb5-2 libicu60 libk5crypto3 libkeyutils1
14:34:11   libkrb5-3 libkrb5support0 libltdl-dev libltdl7 libmail-sendmail-perl
14:34:11   libnghttp2-14 libpsl5 librtmp1 libsigsegv2 libsys-hostname-long-perl
14:34:11   libtimedate-perl libtool libxml2 m4 man-db openssl po-debconf publicsuffix
14:34:11   shared-mime-info xdg-user-dirs
14:34:11 Suggested packages:
14:34:11   autoconf-archive gnu-standards autoconf-doc wamerican | wordlist whois
14:34:11   vacation dh-make dwz gettext-doc libasprintf-dev libgettextpo-dev groff
14:34:11   krb5-doc krb5-user libtool-doc gfortran | fortran95-compiler gcj-jdk m4-doc
14:34:11   apparmor less www-browser libmail-box-perl
14:34:11 The following NEW packages will be installed:
14:34:11   autoconf automake autopoint autotools-dev bsdmainutils ca-certificates curl
14:34:11   debhelper dh-autoreconf dh-strip-nondeterminism gettext gettext-base
14:34:11   groff-base intltool-debian krb5-locales libarchive-cpio-perl
14:34:11   libarchive-zip-perl libbsd0 libcroco3 libcurl4
14:34:11   libfile-stripnondeterminism-perl libglib2.0-0 libglib2.0-data
14:34:11   libgssapi-krb5-2 libicu60 libk5crypto3 libkeyutils1 libkrb5-3
14:34:11   libkrb5support0 libltdl-dev libltdl7 libmail-sendmail-perl libnghttp2-14
14:34:11   libpsl5 librtmp1 libsigsegv2 libsys-hostname-long-perl libtimedate-perl
14:34:11   libtool libxml2 m4 man-db openssl po-debconf publicsuffix shared-mime-info
14:34:11   xdg-user-dirs
14:34:11 0 upgraded, 47 newly installed, 0 to remove and 4 not upgraded.
14:34:11 Need to get 19.5 MB of archives.
14:34:11 After this operation, 70.6 MB of additional disk space will be used.
14:34:11 Get:1 http://archive.ubuntu.com/ubuntu bionic/main amd64 libbsd0 amd64 0.8.7-1 [41.5 kB]
14:34:11 Get:2 http://archive.ubuntu.com/ubuntu bionic/main amd64 bsdmainutils amd64 11.1.2ubuntu1 [181 kB]
14:34:11 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 groff-base amd64 1.22.3-10 [1,153 kB]
14:34:11 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 man-db amd64 2.8.3-2ubuntu0.1 [1,019 kB]
14:34:11 Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 openssl amd64 1.1.1-1ubuntu2.1~18.04.5 [613 kB]
14:34:11 Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 ca-certificates all 20180409 [151 kB]
14:34:11 Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-0 amd64 2.56.4-0ubuntu0.18.04.4 [1,169 kB]
14:34:11 Get:8 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libglib2.0-data all 2.56.4-0ubuntu0.18.04.4 [4,496 B]
14:34:11 Get:9 http://archive.ubuntu.com/ubuntu bionic/main amd64 libicu60 amd64 60.2-3ubuntu3 [8,054 kB]
14:34:11 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libxml2 amd64 2.9.4+dfsg1-6.1ubuntu1.2 [663 kB]
14:34:11 Get:11 http://archive.ubuntu.com/ubuntu bionic/main amd64 shared-mime-info amd64 1.9-2 [426 kB]
14:34:11 Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 xdg-user-dirs amd64 0.17-1ubuntu1 [48.0 kB]
14:34:11 Get:13 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext-base amd64 0.19.8.1-6ubuntu0.3 [113 kB]
14:34:11 Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 krb5-locales all 1.16-2ubuntu0.1 [13.5 kB]
14:34:11 Get:15 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5support0 amd64 1.16-2ubuntu0.1 [30.9 kB]
14:34:11 Get:16 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libk5crypto3 amd64 1.16-2ubuntu0.1 [85.6 kB]
14:34:11 Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 libkeyutils1 amd64 1.5.9-9.2ubuntu2 [8,720 B]
14:34:11 Get:18 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libkrb5-3 amd64 1.16-2ubuntu0.1 [279 kB]
14:34:11 Get:19 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libgssapi-krb5-2 amd64 1.16-2ubuntu0.1 [122 kB]
14:34:11 Get:20 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpsl5 amd64 0.19.1-5build1 [41.8 kB]
14:34:11 Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 publicsuffix all 20180223.1310-1 [97.6 kB]
14:34:11 Get:22 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsigsegv2 amd64 2.12-1 [14.7 kB]
14:34:11 Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 m4 amd64 1.4.18-1 [197 kB]
14:34:11 Get:24 http://archive.ubuntu.com/ubuntu bionic/main amd64 autoconf all 2.69-11 [322 kB]
14:34:11 Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 autotools-dev all 20180224.1 [39.6 kB]
14:34:11 Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 automake all 1:1.15.1-3ubuntu2 [509 kB]
14:34:12 Get:27 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 autopoint all 0.19.8.1-6ubuntu0.3 [426 kB]
14:34:12 Get:28 http://archive.ubuntu.com/ubuntu bionic/main amd64 libnghttp2-14 amd64 1.30.0-1ubuntu1 [77.8 kB]
14:34:12 Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-1 [54.2 kB]
14:34:12 Get:30 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libcurl4 amd64 7.58.0-2ubuntu3.8 [214 kB]
14:34:12 Get:31 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 curl amd64 7.58.0-2ubuntu3.8 [159 kB]
14:34:12 Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtool all 2.4.6-2 [194 kB]
14:34:12 Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-autoreconf all 17 [15.8 kB]
14:34:12 Get:34 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive-zip-perl all 1.60-1ubuntu0.1 [84.6 kB]
14:34:12 Get:35 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfile-stripnondeterminism-perl all 0.040-1.1~build1 [13.8 kB]
14:34:12 Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 libtimedate-perl all 2.3000-2 [37.5 kB]
14:34:12 Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 dh-strip-nondeterminism all 0.040-1.1~build1 [5,208 B]
14:34:12 Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 libcroco3 amd64 0.6.12-2 [81.3 kB]
14:34:12 Get:39 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 gettext amd64 0.19.8.1-6ubuntu0.3 [1,293 kB]
14:34:12 Get:40 http://archive.ubuntu.com/ubuntu bionic/main amd64 intltool-debian all 0.35.0+20060710.4 [24.9 kB]
14:34:12 Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 po-debconf all 1.0.20 [232 kB]
14:34:12 Get:42 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 debhelper all 11.1.6ubuntu2 [902 kB]
14:34:12 Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 libarchive-cpio-perl all 0.10-1 [9,644 B]
14:34:12 Get:44 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl7 amd64 2.4.6-2 [38.8 kB]
14:34:12 Get:45 http://archive.ubuntu.com/ubuntu bionic/main amd64 libltdl-dev amd64 2.4.6-2 [162 kB]
14:34:12 Get:46 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsys-hostname-long-perl all 1.5-1 [11.7 kB]
14:34:12 Get:47 http://archive.ubuntu.com/ubuntu bionic/main amd64 libmail-sendmail-perl all 0.80-1 [22.6 kB]
14:34:12 debconf: delaying package configuration, since apt-utils is not installed
14:34:12 Fetched 19.5 MB in 1s (30.3 MB/s)
14:34:12 Selecting previously unselected package libbsd0:amd64.
14:34:12 (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 ... 17266 files and directories currently installed.)
14:34:12 Preparing to unpack .../00-libbsd0_0.8.7-1_amd64.deb ...
14:34:12 Unpacking libbsd0:amd64 (0.8.7-1) ...
14:34:12 Selecting previously unselected package bsdmainutils.
14:34:12 Preparing to unpack .../01-bsdmainutils_11.1.2ubuntu1_amd64.deb ...
14:34:12 Unpacking bsdmainutils (11.1.2ubuntu1) ...
14:34:13 Selecting previously unselected package groff-base.
14:34:13 Preparing to unpack .../02-groff-base_1.22.3-10_amd64.deb ...
14:34:13 Unpacking groff-base (1.22.3-10) ...
14:34:13 Selecting previously unselected package man-db.
14:34:13 Preparing to unpack .../03-man-db_2.8.3-2ubuntu0.1_amd64.deb ...
14:34:13 Unpacking man-db (2.8.3-2ubuntu0.1) ...
14:34:13 Selecting previously unselected package openssl.
14:34:13 Preparing to unpack .../04-openssl_1.1.1-1ubuntu2.1~18.04.5_amd64.deb ...
14:34:13 Unpacking openssl (1.1.1-1ubuntu2.1~18.04.5) ...
14:34:13 Selecting previously unselected package ca-certificates.
14:34:13 Preparing to unpack .../05-ca-certificates_20180409_all.deb ...
14:34:13 Unpacking ca-certificates (20180409) ...
14:34:14 Selecting previously unselected package libglib2.0-0:amd64.
14:34:14 Preparing to unpack .../06-libglib2.0-0_2.56.4-0ubuntu0.18.04.4_amd64.deb ...
14:34:14 Unpacking libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.4) ...
14:34:14 Selecting previously unselected package libglib2.0-data.
14:34:14 Preparing to unpack .../07-libglib2.0-data_2.56.4-0ubuntu0.18.04.4_all.deb ...
14:34:14 Unpacking libglib2.0-data (2.56.4-0ubuntu0.18.04.4) ...
14:34:14 Selecting previously unselected package libicu60:amd64.
14:34:14 Preparing to unpack .../08-libicu60_60.2-3ubuntu3_amd64.deb ...
14:34:14 Unpacking libicu60:amd64 (60.2-3ubuntu3) ...
14:34:15 Selecting previously unselected package libxml2:amd64.
14:34:15 Preparing to unpack .../09-libxml2_2.9.4+dfsg1-6.1ubuntu1.2_amd64.deb ...
14:34:15 Unpacking libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.2) ...
14:34:15 Selecting previously unselected package shared-mime-info.
14:34:15 Preparing to unpack .../10-shared-mime-info_1.9-2_amd64.deb ...
14:34:15 Unpacking shared-mime-info (1.9-2) ...
14:34:16 Selecting previously unselected package xdg-user-dirs.
14:34:16 Preparing to unpack .../11-xdg-user-dirs_0.17-1ubuntu1_amd64.deb ...
14:34:16 Unpacking xdg-user-dirs (0.17-1ubuntu1) ...
14:34:16 Selecting previously unselected package gettext-base.
14:34:16 Preparing to unpack .../12-gettext-base_0.19.8.1-6ubuntu0.3_amd64.deb ...
14:34:16 Unpacking gettext-base (0.19.8.1-6ubuntu0.3) ...
14:34:16 Selecting previously unselected package krb5-locales.
14:34:16 Preparing to unpack .../13-krb5-locales_1.16-2ubuntu0.1_all.deb ...
14:34:16 Unpacking krb5-locales (1.16-2ubuntu0.1) ...
14:34:16 Selecting previously unselected package libkrb5support0:amd64.
14:34:16 Preparing to unpack .../14-libkrb5support0_1.16-2ubuntu0.1_amd64.deb ...
14:34:16 Unpacking libkrb5support0:amd64 (1.16-2ubuntu0.1) ...
14:34:16 Selecting previously unselected package libk5crypto3:amd64.
14:34:16 Preparing to unpack .../15-libk5crypto3_1.16-2ubuntu0.1_amd64.deb ...
14:34:16 Unpacking libk5crypto3:amd64 (1.16-2ubuntu0.1) ...
14:34:16 Selecting previously unselected package libkeyutils1:amd64.
14:34:16 Preparing to unpack .../16-libkeyutils1_1.5.9-9.2ubuntu2_amd64.deb ...
14:34:16 Unpacking libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ...
14:34:17 Selecting previously unselected package libkrb5-3:amd64.
14:34:17 Preparing to unpack .../17-libkrb5-3_1.16-2ubuntu0.1_amd64.deb ...
14:34:17 Unpacking libkrb5-3:amd64 (1.16-2ubuntu0.1) ...
14:34:17 Selecting previously unselected package libgssapi-krb5-2:amd64.
14:34:17 Preparing to unpack .../18-libgssapi-krb5-2_1.16-2ubuntu0.1_amd64.deb ...
14:34:17 Unpacking libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ...
14:34:17 Selecting previously unselected package libpsl5:amd64.
14:34:17 Preparing to unpack .../19-libpsl5_0.19.1-5build1_amd64.deb ...
14:34:17 Unpacking libpsl5:amd64 (0.19.1-5build1) ...
14:34:17 Selecting previously unselected package publicsuffix.
14:34:17 Preparing to unpack .../20-publicsuffix_20180223.1310-1_all.deb ...
14:34:17 Unpacking publicsuffix (20180223.1310-1) ...
14:34:17 Selecting previously unselected package libsigsegv2:amd64.
14:34:17 Preparing to unpack .../21-libsigsegv2_2.12-1_amd64.deb ...
14:34:17 Unpacking libsigsegv2:amd64 (2.12-1) ...
14:34:17 Selecting previously unselected package m4.
14:34:17 Preparing to unpack .../22-m4_1.4.18-1_amd64.deb ...
14:34:17 Unpacking m4 (1.4.18-1) ...
14:34:17 Selecting previously unselected package autoconf.
14:34:17 Preparing to unpack .../23-autoconf_2.69-11_all.deb ...
14:34:17 Unpacking autoconf (2.69-11) ...
14:34:17 Selecting previously unselected package autotools-dev.
14:34:17 Preparing to unpack .../24-autotools-dev_20180224.1_all.deb ...
14:34:17 Unpacking autotools-dev (20180224.1) ...
14:34:18 Selecting previously unselected package automake.
14:34:18 Preparing to unpack .../25-automake_1%3a1.15.1-3ubuntu2_all.deb ...
14:34:18 Unpacking automake (1:1.15.1-3ubuntu2) ...
14:34:18 Selecting previously unselected package autopoint.
14:34:18 Preparing to unpack .../26-autopoint_0.19.8.1-6ubuntu0.3_all.deb ...
14:34:18 Unpacking autopoint (0.19.8.1-6ubuntu0.3) ...
14:34:18 Selecting previously unselected package libnghttp2-14:amd64.
14:34:18 Preparing to unpack .../27-libnghttp2-14_1.30.0-1ubuntu1_amd64.deb ...
14:34:18 Unpacking libnghttp2-14:amd64 (1.30.0-1ubuntu1) ...
14:34:18 Selecting previously unselected package librtmp1:amd64.
14:34:18 Preparing to unpack .../28-librtmp1_2.4+20151223.gitfa8646d.1-1_amd64.deb ...
14:34:18 Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ...
14:34:19 Selecting previously unselected package libcurl4:amd64.
14:34:19 Preparing to unpack .../29-libcurl4_7.58.0-2ubuntu3.8_amd64.deb ...
14:34:19 Unpacking libcurl4:amd64 (7.58.0-2ubuntu3.8) ...
14:34:19 Selecting previously unselected package curl.
14:34:19 Preparing to unpack .../30-curl_7.58.0-2ubuntu3.8_amd64.deb ...
14:34:19 Unpacking curl (7.58.0-2ubuntu3.8) ...
14:34:19 Selecting previously unselected package libtool.
14:34:19 Preparing to unpack .../31-libtool_2.4.6-2_all.deb ...
14:34:19 Unpacking libtool (2.4.6-2) ...
14:34:19 Selecting previously unselected package dh-autoreconf.
14:34:19 Preparing to unpack .../32-dh-autoreconf_17_all.deb ...
14:34:19 Unpacking dh-autoreconf (17) ...
14:34:19 Selecting previously unselected package libarchive-zip-perl.
14:34:19 Preparing to unpack .../33-libarchive-zip-perl_1.60-1ubuntu0.1_all.deb ...
14:34:19 Unpacking libarchive-zip-perl (1.60-1ubuntu0.1) ...
14:34:19 Selecting previously unselected package libfile-stripnondeterminism-perl.
14:34:19 Preparing to unpack .../34-libfile-stripnondeterminism-perl_0.040-1.1~build1_all.deb ...
14:34:19 Unpacking libfile-stripnondeterminism-perl (0.040-1.1~build1) ...
14:34:19 Selecting previously unselected package libtimedate-perl.
14:34:19 Preparing to unpack .../35-libtimedate-perl_2.3000-2_all.deb ...
14:34:19 Unpacking libtimedate-perl (2.3000-2) ...
14:34:19 Selecting previously unselected package dh-strip-nondeterminism.
14:34:19 Preparing to unpack .../36-dh-strip-nondeterminism_0.040-1.1~build1_all.deb ...
14:34:19 Unpacking dh-strip-nondeterminism (0.040-1.1~build1) ...
14:34:20 Selecting previously unselected package libcroco3:amd64.
14:34:20 Preparing to unpack .../37-libcroco3_0.6.12-2_amd64.deb ...
14:34:20 Unpacking libcroco3:amd64 (0.6.12-2) ...
14:34:20 Selecting previously unselected package gettext.
14:34:20 Preparing to unpack .../38-gettext_0.19.8.1-6ubuntu0.3_amd64.deb ...
14:34:20 Unpacking gettext (0.19.8.1-6ubuntu0.3) ...
14:34:20 Selecting previously unselected package intltool-debian.
14:34:20 Preparing to unpack .../39-intltool-debian_0.35.0+20060710.4_all.deb ...
14:34:20 Unpacking intltool-debian (0.35.0+20060710.4) ...
14:34:20 Selecting previously unselected package po-debconf.
14:34:20 Preparing to unpack .../40-po-debconf_1.0.20_all.deb ...
14:34:20 Unpacking po-debconf (1.0.20) ...
14:34:20 Selecting previously unselected package debhelper.
14:34:20 Preparing to unpack .../41-debhelper_11.1.6ubuntu2_all.deb ...
14:34:20 Unpacking debhelper (11.1.6ubuntu2) ...
14:34:20 Selecting previously unselected package libarchive-cpio-perl.
14:34:20 Preparing to unpack .../42-libarchive-cpio-perl_0.10-1_all.deb ...
14:34:20 Unpacking libarchive-cpio-perl (0.10-1) ...
14:34:21 Selecting previously unselected package libltdl7:amd64.
14:34:21 Preparing to unpack .../43-libltdl7_2.4.6-2_amd64.deb ...
14:34:21 Unpacking libltdl7:amd64 (2.4.6-2) ...
14:34:21 Selecting previously unselected package libltdl-dev:amd64.
14:34:21 Preparing to unpack .../44-libltdl-dev_2.4.6-2_amd64.deb ...
14:34:21 Unpacking libltdl-dev:amd64 (2.4.6-2) ...
14:34:21 Selecting previously unselected package libsys-hostname-long-perl.
14:34:21 Preparing to unpack .../45-libsys-hostname-long-perl_1.5-1_all.deb ...
14:34:21 Unpacking libsys-hostname-long-perl (1.5-1) ...
14:34:21 Selecting previously unselected package libmail-sendmail-perl.
14:34:21 Preparing to unpack .../46-libmail-sendmail-perl_0.80-1_all.deb ...
14:34:21 Unpacking libmail-sendmail-perl (0.80-1) ...
14:34:21 Setting up libicu60:amd64 (60.2-3ubuntu3) ...
14:34:21 Setting up libarchive-zip-perl (1.60-1ubuntu0.1) ...
14:34:21 Setting up libnghttp2-14:amd64 (1.30.0-1ubuntu1) ...
14:34:21 Setting up libtimedate-perl (2.3000-2) ...
14:34:21 Setting up libsigsegv2:amd64 (2.12-1) ...
14:34:21 Setting up libpsl5:amd64 (0.19.1-5build1) ...
14:34:21 Setting up groff-base (1.22.3-10) ...
14:34:21 Setting up libglib2.0-0:amd64 (2.56.4-0ubuntu0.18.04.4) ...
14:34:21 No schema files found: doing nothing.
14:34:21 Setting up libarchive-cpio-perl (0.10-1) ...
14:34:21 Setting up gettext-base (0.19.8.1-6ubuntu0.3) ...
14:34:21 Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-1) ...
14:34:21 Setting up m4 (1.4.18-1) ...
14:34:22 Setting up libbsd0:amd64 (0.8.7-1) ...
14:34:22 Setting up libkrb5support0:amd64 (1.16-2ubuntu0.1) ...
14:34:22 Setting up libxml2:amd64 (2.9.4+dfsg1-6.1ubuntu1.2) ...
14:34:22 Setting up libcroco3:amd64 (0.6.12-2) ...
14:34:22 Setting up libsys-hostname-long-perl (1.5-1) ...
14:34:22 Setting up libglib2.0-data (2.56.4-0ubuntu0.18.04.4) ...
14:34:22 Setting up libmail-sendmail-perl (0.80-1) ...
14:34:22 Setting up krb5-locales (1.16-2ubuntu0.1) ...
14:34:22 Setting up publicsuffix (20180223.1310-1) ...
14:34:22 Setting up autotools-dev (20180224.1) ...
14:34:22 Setting up libltdl7:amd64 (2.4.6-2) ...
14:34:22 Setting up openssl (1.1.1-1ubuntu2.1~18.04.5) ...
14:34:22 Setting up shared-mime-info (1.9-2) ...
14:34:26 Setting up libkeyutils1:amd64 (1.5.9-9.2ubuntu2) ...
14:34:26 Setting up bsdmainutils (11.1.2ubuntu1) ...
14:34:26 update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode
14:34:26 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
14:34:26 update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode
14:34:26 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
14:34:26 Setting up ca-certificates (20180409) ...
14:34:27 Updating certificates in /etc/ssl/certs...
14:34:29 133 added, 0 removed; done.
14:34:29 Setting up xdg-user-dirs (0.17-1ubuntu1) ...
14:34:29 Setting up autopoint (0.19.8.1-6ubuntu0.3) ...
14:34:29 Setting up libfile-stripnondeterminism-perl (0.040-1.1~build1) ...
14:34:29 Setting up libtool (2.4.6-2) ...
14:34:29 Setting up libk5crypto3:amd64 (1.16-2ubuntu0.1) ...
14:34:29 Setting up libltdl-dev:amd64 (2.4.6-2) ...
14:34:29 Setting up gettext (0.19.8.1-6ubuntu0.3) ...
14:34:29 Setting up autoconf (2.69-11) ...
14:34:29 Setting up intltool-debian (0.35.0+20060710.4) ...
14:34:29 Setting up automake (1:1.15.1-3ubuntu2) ...
14:34:29 update-alternatives: using /usr/bin/automake-1.15 to provide /usr/bin/automake (automake) in auto mode
14:34:29 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
14:34:29 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
14:34:29 Setting up man-db (2.8.3-2ubuntu0.1) ...
14:34:29 Building database of manual pages ...
14:34:30 Setting up libkrb5-3:amd64 (1.16-2ubuntu0.1) ...
14:34:30 Setting up po-debconf (1.0.20) ...
14:34:30 Setting up libgssapi-krb5-2:amd64 (1.16-2ubuntu0.1) ...
14:34:30 Setting up libcurl4:amd64 (7.58.0-2ubuntu3.8) ...
14:34:30 Setting up curl (7.58.0-2ubuntu3.8) ...
14:34:30 Setting up dh-autoreconf (17) ...
14:34:30 Setting up debhelper (11.1.6ubuntu2) ...
14:34:30 Setting up dh-strip-nondeterminism (0.040-1.1~build1) ...
14:34:30 Processing triggers for libc-bin (2.27-3ubuntu1) ...
14:34:30 Processing triggers for mime-support (3.60ubuntu1) ...
14:34:30 Processing triggers for ca-certificates (20180409) ...
14:34:30 Updating certificates in /etc/ssl/certs...
14:34:31 0 added, 0 removed; done.
14:34:31 Running hooks in /etc/ca-certificates/update.d...
14:34:31 done.
14:34:31 Invoking 'apt-get clean'
14:34:34  ---> 66008ab158b4
14:34:34 Removing intermediate container 147735205ade
14:34:34 Step 29 : RUN echo "libczmq-dev: 4.1.0-2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes libczmq-dev
14:34:34  ---> Running in faac6e0d43e2
14:34:35 libczmq-dev: 4.1.0-2
14:34:35 Invoking 'apt-get update'
14:34:35 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease
14:34:35 Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease
14:34:35 Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease
14:34:35 Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
14:34:35 Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease
14:34:35 Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease
14:34:35 Ign:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  InRelease
14:34:35 Hit:8 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Release
14:34:35 Hit:9 http://packages.ros.org/ros/ubuntu bionic InRelease
14:34:38 Reading package lists...
14:34:38 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes libczmq-dev'
14:34:39 Reading package lists...
14:34:40 Building dependency tree...
14:34:40 Reading state information...
14:34:40 Starting pkgProblemResolver with broken count: 0
14:34:40 Starting 2 pkgProblemResolver with broken count: 0
14:34:40 Done
14:34:40 The following additional packages will be installed:
14:34:40   libczmq4 libnorm1 libpgm-5.2-0 libsodium23 libzmq3-dev libzmq5
14:34:40 The following NEW packages will be installed:
14:34:40   libczmq-dev libczmq4 libnorm1 libpgm-5.2-0 libsodium23 libzmq3-dev libzmq5
14:34:40 0 upgraded, 7 newly installed, 0 to remove and 4 not upgraded.
14:34:40 Need to get 1,642 kB of archives.
14:34:40 After this operation, 6,299 kB of additional disk space will be used.
14:34:40 Get:1 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libnorm1 amd64 1.5r6+dfsg1-6 [224 kB]
14:34:40 Get:2 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libpgm-5.2-0 amd64 5.2.122~dfsg-2 [157 kB]
14:34:40 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 libsodium23 amd64 1.0.16-2 [143 kB]
14:34:40 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libzmq5 amd64 4.2.5-1ubuntu0.2 [221 kB]
14:34:40 Get:5 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 libzmq3-dev amd64 4.2.5-1ubuntu0.2 [400 kB]
14:34:40 Get:6 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libczmq4 amd64 4.1.0-2 [145 kB]
14:34:40 Get:7 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libczmq-dev amd64 4.1.0-2 [351 kB]
14:34:40 debconf: delaying package configuration, since apt-utils is not installed
14:34:41 Fetched 1,642 kB in 0s (16.5 MB/s)
14:34:41 Selecting previously unselected package libnorm1:amd64.
14:34:41 (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 ... 19952 files and directories currently installed.)
14:34:41 Preparing to unpack .../0-libnorm1_1.5r6+dfsg1-6_amd64.deb ...
14:34:41 Unpacking libnorm1:amd64 (1.5r6+dfsg1-6) ...
14:34:41 Selecting previously unselected package libpgm-5.2-0:amd64.
14:34:41 Preparing to unpack .../1-libpgm-5.2-0_5.2.122~dfsg-2_amd64.deb ...
14:34:41 Unpacking libpgm-5.2-0:amd64 (5.2.122~dfsg-2) ...
14:34:41 Selecting previously unselected package libsodium23:amd64.
14:34:41 Preparing to unpack .../2-libsodium23_1.0.16-2_amd64.deb ...
14:34:41 Unpacking libsodium23:amd64 (1.0.16-2) ...
14:34:41 Selecting previously unselected package libzmq5:amd64.
14:34:41 Preparing to unpack .../3-libzmq5_4.2.5-1ubuntu0.2_amd64.deb ...
14:34:41 Unpacking libzmq5:amd64 (4.2.5-1ubuntu0.2) ...
14:34:41 Selecting previously unselected package libzmq3-dev:amd64.
14:34:41 Preparing to unpack .../4-libzmq3-dev_4.2.5-1ubuntu0.2_amd64.deb ...
14:34:41 Unpacking libzmq3-dev:amd64 (4.2.5-1ubuntu0.2) ...
14:34:41 Selecting previously unselected package libczmq4:amd64.
14:34:41 Preparing to unpack .../5-libczmq4_4.1.0-2_amd64.deb ...
14:34:41 Unpacking libczmq4:amd64 (4.1.0-2) ...
14:34:42 Selecting previously unselected package libczmq-dev:amd64.
14:34:42 Preparing to unpack .../6-libczmq-dev_4.1.0-2_amd64.deb ...
14:34:42 Unpacking libczmq-dev:amd64 (4.1.0-2) ...
14:34:42 Setting up libpgm-5.2-0:amd64 (5.2.122~dfsg-2) ...
14:34:42 Setting up libnorm1:amd64 (1.5r6+dfsg1-6) ...
14:34:42 Setting up libsodium23:amd64 (1.0.16-2) ...
14:34:42 Setting up libzmq5:amd64 (4.2.5-1ubuntu0.2) ...
14:34:42 Setting up libzmq3-dev:amd64 (4.2.5-1ubuntu0.2) ...
14:34:42 Setting up libczmq4:amd64 (4.1.0-2) ...
14:34:42 Setting up libczmq-dev:amd64 (4.1.0-2) ...
14:34:42 Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
14:34:42 Processing triggers for libc-bin (2.27-3ubuntu1) ...
14:34:42 Invoking 'apt-get clean'
14:34:43  ---> 5c5fcc4aff80
14:34:44 Removing intermediate container faac6e0d43e2
14:34:44 Step 30 : RUN echo "ros-melodic-catkin: 0.7.19-1bionic.20191008.145018" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin
14:34:44  ---> Running in a06f3e09cf44
14:34:44 ros-melodic-catkin: 0.7.19-1bionic.20191008.145018
14:34:44 Invoking 'apt-get update'
14:34:44 Hit:1 http://10.210.9.154/ubuntu/building bionic InRelease
14:34:44 Hit:2 http://security.ubuntu.com/ubuntu bionic-security InRelease
14:34:44 Hit:3 http://archive.ubuntu.com/ubuntu bionic InRelease
14:34:44 Hit:4 http://archive.ubuntu.com/ubuntu bionic-updates InRelease
14:34:44 Hit:5 http://archive.ubuntu.com/ubuntu bionic-backports InRelease
14:34:44 Hit:6 http://archive.ubuntu.com/ubuntu bionic-security InRelease
14:34:44 Ign:7 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  InRelease
14:34:44 Hit:8 http://packages.ros.org/ros/ubuntu bionic InRelease
14:34:44 Hit:9 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64  Release
14:34:47 Reading package lists...
14:34:47 Invoking 'apt-get install -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin'
14:34:49 Reading package lists...
14:34:49 Building dependency tree...
14:34:49 Reading state information...
14:34:49 Starting pkgProblemResolver with broken count: 0
14:34:49 Starting 2 pkgProblemResolver with broken count: 0
14:34:49 Done
14:34:49 The following additional packages will be installed:
14:34:49   cmake cmake-data docutils-common docutils-doc google-mock googletest
14:34:49   libarchive13 libfreetype6 libgtest-dev libjbig0 libjpeg-turbo8 libjpeg8
14:34:49   liblcms2-2 liblzo2-2 libpaper-utils libpaper1 libpng16-16 librhash0 libtiff5
14:34:49   libuv1 libwebp6 libwebpdemux2 libwebpmux3 multiarch-support
14:34:49   python-catkin-pkg python-catkin-pkg-modules python-chardet python-dateutil
14:34:49   python-docutils python-empy python-nose python-olefile python-pil
14:34:49   python-pkg-resources python-pygments python-pyparsing python-roman
14:34:49   python-six sgml-base tzdata ucf xml-core
14:34:49 Suggested packages:
14:34:49   cmake-doc ninja-build lrzip liblcms2-utils fonts-linuxlibertine
14:34:49   | ttf-linux-libertine texlive-lang-french texlive-latex-base
14:34:49   texlive-latex-recommended python-coverage python-nose-doc python-pil-doc
14:34:49   python-pil-dbg python-setuptools ttf-bitstream-vera python-pyparsing-doc
14:34:49   sgml-base-doc
14:34:49 The following NEW packages will be installed:
14:34:49   cmake cmake-data docutils-common docutils-doc google-mock googletest
14:34:49   libarchive13 libfreetype6 libgtest-dev libjbig0 libjpeg-turbo8 libjpeg8
14:34:49   liblcms2-2 liblzo2-2 libpaper-utils libpaper1 libpng16-16 librhash0 libtiff5
14:34:49   libuv1 libwebp6 libwebpdemux2 libwebpmux3 multiarch-support
14:34:49   python-catkin-pkg python-catkin-pkg-modules python-chardet python-dateutil
14:34:49   python-docutils python-empy python-nose python-olefile python-pil
14:34:49   python-pkg-resources python-pygments python-pyparsing python-roman
14:34:49   python-six ros-melodic-catkin sgml-base tzdata ucf xml-core
14:34:49 0 upgraded, 43 newly installed, 0 to remove and 4 not upgraded.
14:34:49 Need to get 10.1 MB of archives.
14:34:49 After this operation, 55.4 MB of additional disk space will be used.
14:34:49 Get:1 http://10.210.9.154/ubuntu/building bionic/main amd64 python-catkin-pkg-modules all 0.4.14-1 [41.5 kB]
14:34:49 Get:2 http://10.210.9.154/ubuntu/building bionic/main amd64 python-catkin-pkg all 0.4.14-100 [3,516 B]
14:34:50 Get:3 http://archive.ubuntu.com/ubuntu bionic/main amd64 multiarch-support amd64 2.27-3ubuntu1 [6,916 B]
14:34:50 Get:4 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libjpeg-turbo8 amd64 1.5.2-0ubuntu5.18.04.3 [110 kB]
14:34:50 Get:5 http://archive.ubuntu.com/ubuntu bionic/main amd64 liblzo2-2 amd64 2.08-1.2 [48.7 kB]
14:34:50 Get:6 http://archive.ubuntu.com/ubuntu bionic/main amd64 sgml-base all 1.29 [12.3 kB]
14:34:50 Get:7 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 tzdata all 2019c-0ubuntu0.18.04 [190 kB]
14:34:50 Get:8 http://archive.ubuntu.com/ubuntu bionic/main amd64 ucf all 3.0038 [50.5 kB]
14:34:50 Get:9 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libpng16-16 amd64 1.6.34-1ubuntu0.18.04.2 [176 kB]
14:34:50 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake-data all 3.10.2-1ubuntu2.18.04.1 [1,332 kB]
14:34:50 Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libarchive13 amd64 3.2.2-3.1ubuntu0.5 [288 kB]
14:34:50 Get:12 http://archive.ubuntu.com/ubuntu bionic/main amd64 librhash0 amd64 1.3.6-2 [78.1 kB]
14:34:50 Get:13 http://archive.ubuntu.com/ubuntu bionic/main amd64 libuv1 amd64 1.18.0-3 [64.4 kB]
14:34:50 Get:14 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 cmake amd64 3.10.2-1ubuntu2.18.04.1 [3,152 kB]
14:34:50 Get:15 http://archive.ubuntu.com/ubuntu bionic/main amd64 xml-core all 0.18 [21.3 kB]
14:34:50 Get:16 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-common all 0.14+dfsg-3 [156 kB]
14:34:50 Get:17 http://archive.ubuntu.com/ubuntu bionic/main amd64 docutils-doc all 0.14+dfsg-3 [913 kB]
14:34:50 Get:18 http://packages.ros.org/ros/ubuntu bionic/main amd64 ros-melodic-catkin amd64 0.7.19-1bionic.20191008.145018 [125 kB]
14:34:50 Get:19 http://archive.ubuntu.com/ubuntu bionic/universe amd64 googletest amd64 1.8.0-6 [652 kB]
14:34:50 Get:20 http://archive.ubuntu.com/ubuntu bionic/universe amd64 google-mock amd64 1.8.0-6 [2,972 B]
14:34:50 Get:21 http://archive.ubuntu.com/ubuntu bionic/main amd64 libfreetype6 amd64 2.8.1-2ubuntu2 [335 kB]
14:34:50 Get:22 http://archive.ubuntu.com/ubuntu bionic/universe amd64 libgtest-dev amd64 1.8.0-6 [2,718 B]
14:34:50 Get:23 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjpeg8 amd64 8c-2ubuntu8 [2,194 B]
14:34:50 Get:24 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 liblcms2-2 amd64 2.9-1ubuntu0.1 [139 kB]
14:34:50 Get:25 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper1 amd64 1.1.24+nmu5ubuntu1 [13.6 kB]
14:34:50 Get:26 http://archive.ubuntu.com/ubuntu bionic/main amd64 libpaper-utils amd64 1.1.24+nmu5ubuntu1 [8,170 B]
14:34:50 Get:27 http://archive.ubuntu.com/ubuntu bionic/main amd64 libjbig0 amd64 2.1-3.1build1 [26.7 kB]
14:34:50 Get:28 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 libtiff5 amd64 4.0.9-5ubuntu0.3 [153 kB]
14:34:50 Get:29 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebp6 amd64 0.6.1-2 [185 kB]
14:34:50 Get:30 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpdemux2 amd64 0.6.1-2 [9,472 B]
14:34:50 Get:31 http://archive.ubuntu.com/ubuntu bionic/main amd64 libwebpmux3 amd64 0.6.1-2 [19.6 kB]
14:34:50 Get:32 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-six all 1.11.0-2 [11.3 kB]
14:34:50 Get:33 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-dateutil all 2.6.1-1 [60.6 kB]
14:34:50 Get:34 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-roman all 2.0.0-3 [8,548 B]
14:34:50 Get:35 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-docutils all 0.14+dfsg-3 [365 kB]
14:34:50 Get:36 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pyparsing all 2.2.0+dfsg1-2 [52.1 kB]
14:34:50 Get:37 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pkg-resources all 39.0.1-2 [128 kB]
14:34:50 Get:38 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-chardet all 3.0.4-1 [80.3 kB]
14:34:50 Get:39 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-empy all 3.3.2-1build1 [72.5 kB]
14:34:50 Get:40 http://archive.ubuntu.com/ubuntu bionic/universe amd64 python-nose all 1.3.7-3 [116 kB]
14:34:50 Get:41 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-olefile all 0.45.1-1 [33.2 kB]
14:34:50 Get:42 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pil amd64 5.1.0-1 [328 kB]
14:34:50 Get:43 http://archive.ubuntu.com/ubuntu bionic/main amd64 python-pygments all 2.2.0+dfsg-1 [577 kB]
14:34:50 debconf: delaying package configuration, since apt-utils is not installed
14:34:50 Fetched 10.1 MB in 1s (20.1 MB/s)
14:34:50 Selecting previously unselected package multiarch-support.
14:34:50 (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 ... 20161 files and directories currently installed.)
14:34:50 Preparing to unpack .../multiarch-support_2.27-3ubuntu1_amd64.deb ...
14:34:50 Unpacking multiarch-support (2.27-3ubuntu1) ...
14:34:51 Setting up multiarch-support (2.27-3ubuntu1) ...
14:34:51 Selecting previously unselected package libjpeg-turbo8:amd64.
14:34:51 (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 ... 20164 files and directories currently installed.)
14:34:51 Preparing to unpack .../00-libjpeg-turbo8_1.5.2-0ubuntu5.18.04.3_amd64.deb ...
14:34:51 Unpacking libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ...
14:34:51 Selecting previously unselected package liblzo2-2:amd64.
14:34:51 Preparing to unpack .../01-liblzo2-2_2.08-1.2_amd64.deb ...
14:34:51 Unpacking liblzo2-2:amd64 (2.08-1.2) ...
14:34:51 Selecting previously unselected package sgml-base.
14:34:51 Preparing to unpack .../02-sgml-base_1.29_all.deb ...
14:34:51 Unpacking sgml-base (1.29) ...
14:34:51 Selecting previously unselected package tzdata.
14:34:51 Preparing to unpack .../03-tzdata_2019c-0ubuntu0.18.04_all.deb ...
14:34:51 Unpacking tzdata (2019c-0ubuntu0.18.04) ...
14:34:52 Selecting previously unselected package ucf.
14:34:52 Preparing to unpack .../04-ucf_3.0038_all.deb ...
14:34:52 Moving old data out of the way
14:34:52 Unpacking ucf (3.0038) ...
14:34:52 Selecting previously unselected package libpng16-16:amd64.
14:34:52 Preparing to unpack .../05-libpng16-16_1.6.34-1ubuntu0.18.04.2_amd64.deb ...
14:34:52 Unpacking libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ...
14:34:52 Selecting previously unselected package cmake-data.
14:34:52 Preparing to unpack .../06-cmake-data_3.10.2-1ubuntu2.18.04.1_all.deb ...
14:34:52 Unpacking cmake-data (3.10.2-1ubuntu2.18.04.1) ...
14:34:53 Selecting previously unselected package libarchive13:amd64.
14:34:53 Preparing to unpack .../07-libarchive13_3.2.2-3.1ubuntu0.5_amd64.deb ...
14:34:53 Unpacking libarchive13:amd64 (3.2.2-3.1ubuntu0.5) ...
14:34:53 Selecting previously unselected package librhash0:amd64.
14:34:53 Preparing to unpack .../08-librhash0_1.3.6-2_amd64.deb ...
14:34:53 Unpacking librhash0:amd64 (1.3.6-2) ...
14:34:53 Selecting previously unselected package libuv1:amd64.
14:34:53 Preparing to unpack .../09-libuv1_1.18.0-3_amd64.deb ...
14:34:53 Unpacking libuv1:amd64 (1.18.0-3) ...
14:34:53 Selecting previously unselected package cmake.
14:34:53 Preparing to unpack .../10-cmake_3.10.2-1ubuntu2.18.04.1_amd64.deb ...
14:34:53 Unpacking cmake (3.10.2-1ubuntu2.18.04.1) ...
14:34:54 Selecting previously unselected package xml-core.
14:34:54 Preparing to unpack .../11-xml-core_0.18_all.deb ...
14:34:54 Unpacking xml-core (0.18) ...
14:34:54 Selecting previously unselected package docutils-common.
14:34:54 Preparing to unpack .../12-docutils-common_0.14+dfsg-3_all.deb ...
14:34:54 Unpacking docutils-common (0.14+dfsg-3) ...
14:34:54 Selecting previously unselected package docutils-doc.
14:34:54 Preparing to unpack .../13-docutils-doc_0.14+dfsg-3_all.deb ...
14:34:54 Unpacking docutils-doc (0.14+dfsg-3) ...
14:34:54 Selecting previously unselected package googletest:amd64.
14:34:54 Preparing to unpack .../14-googletest_1.8.0-6_amd64.deb ...
14:34:54 Unpacking googletest:amd64 (1.8.0-6) ...
14:34:55 Selecting previously unselected package google-mock:amd64.
14:34:55 Preparing to unpack .../15-google-mock_1.8.0-6_amd64.deb ...
14:34:55 Unpacking google-mock:amd64 (1.8.0-6) ...
14:34:55 Selecting previously unselected package libfreetype6:amd64.
14:34:55 Preparing to unpack .../16-libfreetype6_2.8.1-2ubuntu2_amd64.deb ...
14:34:55 Unpacking libfreetype6:amd64 (2.8.1-2ubuntu2) ...
14:34:55 Selecting previously unselected package libgtest-dev:amd64.
14:34:55 Preparing to unpack .../17-libgtest-dev_1.8.0-6_amd64.deb ...
14:34:55 Unpacking libgtest-dev:amd64 (1.8.0-6) ...
14:34:55 Selecting previously unselected package libjpeg8:amd64.
14:34:55 Preparing to unpack .../18-libjpeg8_8c-2ubuntu8_amd64.deb ...
14:34:55 Unpacking libjpeg8:amd64 (8c-2ubuntu8) ...
14:34:55 Selecting previously unselected package liblcms2-2:amd64.
14:34:55 Preparing to unpack .../19-liblcms2-2_2.9-1ubuntu0.1_amd64.deb ...
14:34:55 Unpacking liblcms2-2:amd64 (2.9-1ubuntu0.1) ...
14:34:55 Selecting previously unselected package libpaper1:amd64.
14:34:55 Preparing to unpack .../20-libpaper1_1.1.24+nmu5ubuntu1_amd64.deb ...
14:34:55 Unpacking libpaper1:amd64 (1.1.24+nmu5ubuntu1) ...
14:34:56 Selecting previously unselected package libpaper-utils.
14:34:56 Preparing to unpack .../21-libpaper-utils_1.1.24+nmu5ubuntu1_amd64.deb ...
14:34:56 Unpacking libpaper-utils (1.1.24+nmu5ubuntu1) ...
14:34:56 Selecting previously unselected package libjbig0:amd64.
14:34:56 Preparing to unpack .../22-libjbig0_2.1-3.1build1_amd64.deb ...
14:34:56 Unpacking libjbig0:amd64 (2.1-3.1build1) ...
14:34:56 Selecting previously unselected package libtiff5:amd64.
14:34:56 Preparing to unpack .../23-libtiff5_4.0.9-5ubuntu0.3_amd64.deb ...
14:34:56 Unpacking libtiff5:amd64 (4.0.9-5ubuntu0.3) ...
14:34:56 Selecting previously unselected package libwebp6:amd64.
14:34:56 Preparing to unpack .../24-libwebp6_0.6.1-2_amd64.deb ...
14:34:56 Unpacking libwebp6:amd64 (0.6.1-2) ...
14:34:56 Selecting previously unselected package libwebpdemux2:amd64.
14:34:56 Preparing to unpack .../25-libwebpdemux2_0.6.1-2_amd64.deb ...
14:34:56 Unpacking libwebpdemux2:amd64 (0.6.1-2) ...
14:34:56 Selecting previously unselected package libwebpmux3:amd64.
14:34:56 Preparing to unpack .../26-libwebpmux3_0.6.1-2_amd64.deb ...
14:34:56 Unpacking libwebpmux3:amd64 (0.6.1-2) ...
14:34:56 Selecting previously unselected package python-six.
14:34:56 Preparing to unpack .../27-python-six_1.11.0-2_all.deb ...
14:34:56 Unpacking python-six (1.11.0-2) ...
14:34:56 Selecting previously unselected package python-dateutil.
14:34:56 Preparing to unpack .../28-python-dateutil_2.6.1-1_all.deb ...
14:34:56 Unpacking python-dateutil (2.6.1-1) ...
14:34:57 Selecting previously unselected package python-roman.
14:34:57 Preparing to unpack .../29-python-roman_2.0.0-3_all.deb ...
14:34:57 Unpacking python-roman (2.0.0-3) ...
14:34:57 Selecting previously unselected package python-docutils.
14:34:57 Preparing to unpack .../30-python-docutils_0.14+dfsg-3_all.deb ...
14:34:57 Unpacking python-docutils (0.14+dfsg-3) ...
14:34:57 Selecting previously unselected package python-pyparsing.
14:34:57 Preparing to unpack .../31-python-pyparsing_2.2.0+dfsg1-2_all.deb ...
14:34:57 Unpacking python-pyparsing (2.2.0+dfsg1-2) ...
14:34:57 Selecting previously unselected package python-catkin-pkg-modules.
14:34:57 Preparing to unpack .../32-python-catkin-pkg-modules_0.4.14-1_all.deb ...
14:34:57 Unpacking python-catkin-pkg-modules (0.4.14-1) ...
14:34:57 Selecting previously unselected package python-catkin-pkg.
14:34:57 Preparing to unpack .../33-python-catkin-pkg_0.4.14-100_all.deb ...
14:34:57 Unpacking python-catkin-pkg (0.4.14-100) ...
14:34:57 Selecting previously unselected package python-pkg-resources.
14:34:57 Preparing to unpack .../34-python-pkg-resources_39.0.1-2_all.deb ...
14:34:57 Unpacking python-pkg-resources (39.0.1-2) ...
14:34:57 Selecting previously unselected package python-chardet.
14:34:57 Preparing to unpack .../35-python-chardet_3.0.4-1_all.deb ...
14:34:57 Unpacking python-chardet (3.0.4-1) ...
14:34:57 Selecting previously unselected package python-empy.
14:34:57 Preparing to unpack .../36-python-empy_3.3.2-1build1_all.deb ...
14:34:57 Unpacking python-empy (3.3.2-1build1) ...
14:34:57 Selecting previously unselected package python-nose.
14:34:57 Preparing to unpack .../37-python-nose_1.3.7-3_all.deb ...
14:34:57 Unpacking python-nose (1.3.7-3) ...
14:34:58 Selecting previously unselected package python-olefile.
14:34:58 Preparing to unpack .../38-python-olefile_0.45.1-1_all.deb ...
14:34:58 Unpacking python-olefile (0.45.1-1) ...
14:34:58 Selecting previously unselected package python-pil:amd64.
14:34:58 Preparing to unpack .../39-python-pil_5.1.0-1_amd64.deb ...
14:34:58 Unpacking python-pil:amd64 (5.1.0-1) ...
14:34:58 Selecting previously unselected package python-pygments.
14:34:58 Preparing to unpack .../40-python-pygments_2.2.0+dfsg-1_all.deb ...
14:34:58 Unpacking python-pygments (2.2.0+dfsg-1) ...
14:34:58 Selecting previously unselected package ros-melodic-catkin.
14:34:58 Preparing to unpack .../41-ros-melodic-catkin_0.7.19-1bionic.20191008.145018_amd64.deb ...
14:34:58 Unpacking ros-melodic-catkin (0.7.19-1bionic.20191008.145018) ...
14:34:58 Setting up libpng16-16:amd64 (1.6.34-1ubuntu0.18.04.2) ...
14:34:58 Setting up liblcms2-2:amd64 (2.9-1ubuntu0.1) ...
14:34:58 Setting up libjbig0:amd64 (2.1-3.1build1) ...
14:34:58 Setting up libuv1:amd64 (1.18.0-3) ...
14:34:58 Setting up tzdata (2019c-0ubuntu0.18.04) ...
14:34:59 
14:34:59 Current default time zone: 'Etc/UTC'
14:34:59 Local time is now:      Mon Dec  2 14:34:59 UTC 2019.
14:34:59 Universal Time is now:  Mon Dec  2 14:34:59 UTC 2019.
14:34:59 Run 'dpkg-reconfigure tzdata' if you wish to change it.
14:34:59 
14:34:59 Setting up cmake-data (3.10.2-1ubuntu2.18.04.1) ...
14:34:59 Setting up libjpeg-turbo8:amd64 (1.5.2-0ubuntu5.18.04.3) ...
14:34:59 Setting up sgml-base (1.29) ...
14:34:59 Setting up python-pkg-resources (39.0.1-2) ...
14:34:59 Setting up python-roman (2.0.0-3) ...
14:35:00 Setting up ucf (3.0038) ...
14:35:00 Setting up libfreetype6:amd64 (2.8.1-2ubuntu2) ...
14:35:00 Setting up librhash0:amd64 (1.3.6-2) ...
14:35:00 Setting up python-six (1.11.0-2) ...
14:35:01 Setting up googletest:amd64 (1.8.0-6) ...
14:35:01 Setting up python-pygments (2.2.0+dfsg-1) ...
14:35:02 Setting up python-empy (3.3.2-1build1) ...
14:35:02 Setting up docutils-doc (0.14+dfsg-3) ...
14:35:02 Setting up libgtest-dev:amd64 (1.8.0-6) ...
14:35:02 Setting up python-olefile (0.45.1-1) ...
14:35:03 Setting up xml-core (0.18) ...
14:35:03 Setting up python-nose (1.3.7-3) ...
14:35:04 Setting up liblzo2-2:amd64 (2.08-1.2) ...
14:35:04 Setting up libwebp6:amd64 (0.6.1-2) ...
14:35:04 Setting up libjpeg8:amd64 (8c-2ubuntu8) ...
14:35:04 Setting up python-pyparsing (2.2.0+dfsg1-2) ...
14:35:05 Setting up libpaper1:amd64 (1.1.24+nmu5ubuntu1) ...
14:35:06 
14:35:06 Creating config file /etc/papersize with new version
14:35:06 Setting up libpaper-utils (1.1.24+nmu5ubuntu1) ...
14:35:06 Setting up google-mock:amd64 (1.8.0-6) ...
14:35:06 Setting up python-chardet (3.0.4-1) ...
14:35:06 Setting up libarchive13:amd64 (3.2.2-3.1ubuntu0.5) ...
14:35:06 Setting up libtiff5:amd64 (4.0.9-5ubuntu0.3) ...
14:35:06 Setting up python-dateutil (2.6.1-1) ...
14:35:07 Setting up libwebpmux3:amd64 (0.6.1-2) ...
14:35:07 Setting up libwebpdemux2:amd64 (0.6.1-2) ...
14:35:07 Setting up cmake (3.10.2-1ubuntu2.18.04.1) ...
14:35:07 Setting up python-pil:amd64 (5.1.0-1) ...
14:35:08 Processing triggers for libc-bin (2.27-3ubuntu1) ...
14:35:08 Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
14:35:08 Processing triggers for shared-mime-info (1.9-2) ...
14:35:12 Processing triggers for sgml-base (1.29) ...
14:35:12 Setting up docutils-common (0.14+dfsg-3) ...
14:35:13 Processing triggers for sgml-base (1.29) ...
14:35:13 Setting up python-docutils (0.14+dfsg-3) ...
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode
14:35:13 update-alternatives: using /usr/share/docutils/scripts/python2/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode
14:35:14 Setting up python-catkin-pkg-modules (0.4.14-1) ...
14:35:14 Setting up python-catkin-pkg (0.4.14-100) ...
14:35:14 Setting up ros-melodic-catkin (0.7.19-1bionic.20191008.145018) ...
14:35:14 Invoking 'apt-get clean'
14:35:18  ---> 6b107b9f6003
14:35:18 Removing intermediate container a06f3e09cf44
14:35:18 Step 31 : USER buildfarm
14:35:19  ---> Running in 4892045aa449
14:35:19  ---> 7d6e1bfd5d59
14:35:19 Removing intermediate container 4892045aa449
14:35:19 Step 32 : ENTRYPOINT sh -c
14:35:19  ---> Running in 25fe859db6da
14:35:19  ---> cc7eebe991d0
14:35:19 Removing intermediate container 25fe859db6da
14:35:19 Step 33 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic py_at_broker --sourcedeb-dir /tmp/binarydeb
14:35:19  ---> Running in aebb432592e6
14:35:20  ---> a5f33a6a06d9
14:35:20 Removing intermediate container aebb432592e6
14:35:20 Successfully built a5f33a6a06d9
14:35:20 + echo # END SECTION
14:35:20 # END SECTION
14:35:20 + echo # BEGIN SECTION: Run Dockerfile - build binarydeb
1. Run Dockerfile - build binarydeb

Hide Details

14:35:20 # BEGIN SECTION: Run Dockerfile - build binarydeb 14:35:20 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__py_at_broker__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Mbin_uB64__py_at_broker__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__py_at_broker__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.melodic_ubuntu_bionic_amd64_py_at_broker
1.1. build binarydeb

Hide Details

14:35:20 # BEGIN SUBSECTION: build binarydeb 14:35:20 Package 'ros-melodic-py-at-broker' version: 0.0.5-1bionic.20191202.143157 14:35:22 Invoking 'apt-src build ros-melodic-py-at-broker' in '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:35:24 I: Building in /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 .. 14:35:25 dpkg-buildpackage: info: source package ros-melodic-py-at-broker 14:35:25 dpkg-buildpackage: info: source version 0.0.5-1bionic.20191202.143157 14:35:25 dpkg-buildpackage: info: source distribution bionic 14:35:25 dpkg-buildpackage: info: source changed by Marc Hanheide <marc@hanheide.net> 14:35:25 dpkg-source --before-build ros-melodic-py-at-broker-0.0.5 14:35:25 dpkg-buildpackage: info: host architecture amd64 14:35:25 dpkg-source: info: using options from ros-melodic-py-at-broker-0.0.5/debian/source/options: --auto-commit 14:35:25 fakeroot debian/rules clean 14:35:25 dh clean -v --buildsystem=cmake 14:35:26 dh_testdir -O-v -O--buildsystem=cmake 14:35:26 dh_auto_clean -O-v -O--buildsystem=cmake 14:35:26 dh_clean -O-v -O--buildsystem=cmake 14:35:26 rm -f debian/debhelper-build-stamp 14:35:26 rm -rf debian/.debhelper/ 14:35:26 rm -f -- debian/ros-melodic-py-at-broker.substvars debian/files 14:35:26 rm -fr -- debian/ros-melodic-py-at-broker/ debian/tmp/ 14:35:26 find . \( \( \ 14:35:26 \( -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 \ 14:35:26 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 14:35:26 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 14:35:26 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 14:35:26 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 14:35:26 \) -exec rm -f {} + \) -o \ 14:35:26 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 14:35:26 debian/rules build 14:35:26 dh build -v --buildsystem=cmake 14:35:26 dh_testdir -O-v -O--buildsystem=cmake 14:35:26 dh_update_autotools_config -O-v -O--buildsystem=cmake 14:35:26 debian/rules override_dh_auto_configure 14:35:26 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:35:26 # In case we're installing to a non-standard location, look for a setup.sh 14:35:26 # in the install tree that was dropped by catkin, and source it. It will 14:35:26 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 14:35:26 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 14:35:26 dh_auto_configure -- -DCMAKE_INSTALL_PREFIX="/opt/ros/melodic" 14:35:26 install -d obj-x86_64-linux-gnu 14:35:26 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 -DCMAKE_INSTALL_PREFIX=/opt/ros/melodic 14:35:27 -- The CXX compiler identification is GNU 7.4.0 14:35:27 -- Check for working CXX compiler: /usr/lib/ccache/c++ 14:35:27 -- Check for working CXX compiler: /usr/lib/ccache/c++ -- works 14:35:27 -- Detecting CXX compiler ABI info 14:35:27 -- Detecting CXX compiler ABI info - done 14:35:27 -- Detecting CXX compile features 14:35:28 -- Detecting CXX compile features - done 14:35:28 -- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) 14:35:28 -- Looking for C++ include pthread.h 14:35:29 -- Looking for C++ include pthread.h - found 14:35:29 -- Looking for pthread_create 14:35:29 -- Looking for pthread_create - not found 14:35:29 -- Looking for pthread_create in pthreads 14:35:29 -- Looking for pthread_create in pthreads - not found 14:35:29 -- Looking for pthread_create in pthread 14:35:29 -- Looking for pthread_create in pthread - found 14:35:29 -- Found Threads: TRUE 14:35:29 -- Configuring done 14:35:29 -- Generating done 14:35:29 CMake Warning: 14:35:29 Manually-specified variables were not used by the project: 14:35:29 14:35:29 CMAKE_EXPORT_NO_PACKAGE_REGISTRY 14:35:29 14:35:29 14:35:29 -- Build files have been written to: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu 14:35:29 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:35:29 debian/rules override_dh_auto_build 14:35:29 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:35:29 # In case we're installing to a non-standard location, look for a setup.sh 14:35:29 # in the install tree that was dropped by catkin, and source it. It will 14:35:29 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 14:35:29 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 14:35:29 dh_auto_build 14:35:30 cd obj-x86_64-linux-gnu && make -j1 14:35:30 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:30 /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 -B/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 14:35:30 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 14:35:30 make -f CMakeFiles/Makefile2 all 14:35:30 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:30 make -f addr_broker/CMakeFiles/abroker.dir/build.make addr_broker/CMakeFiles/abroker.dir/depend 14:35:30 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:30 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/abroker.dir/DependInfo.cmake --color= 14:35:30 Scanning dependencies of target abroker 14:35:30 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:30 make -f addr_broker/CMakeFiles/abroker.dir/build.make addr_broker/CMakeFiles/abroker.dir/build 14:35:30 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:30 [ 11%] Building CXX object addr_broker/CMakeFiles/abroker.dir/src/addr_broker.cc.o 14:35:30 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/lib/ccache/c++ -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/lib/flatbuffers/include -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/lib/spdlog/include -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -std=gnu++11 -o CMakeFiles/abroker.dir/src/addr_broker.cc.o -c /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/src/addr_broker.cc 14:35:39 [ 22%] Linking CXX static library libabroker.a 14:35:39 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/bin/cmake -P CMakeFiles/abroker.dir/cmake_clean_target.cmake 14:35:39 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/bin/cmake -E cmake_link_script CMakeFiles/abroker.dir/link.txt --verbose=1 14:35:39 /usr/bin/ar qc libabroker.a CMakeFiles/abroker.dir/src/addr_broker.cc.o 14:35:39 /usr/bin/ranlib libabroker.a 14:35:39 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:40 [ 22%] Built target abroker 14:35:40 make -f addr_broker/CMakeFiles/addr_broker.dir/build.make addr_broker/CMakeFiles/addr_broker.dir/depend 14:35:40 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:40 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/addr_broker.dir/DependInfo.cmake --color= 14:35:40 Scanning dependencies of target addr_broker 14:35:40 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:40 make -f addr_broker/CMakeFiles/addr_broker.dir/build.make addr_broker/CMakeFiles/addr_broker.dir/build 14:35:40 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:40 [ 33%] Building CXX object addr_broker/CMakeFiles/addr_broker.dir/src/addr_broker_main.cc.o 14:35:40 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/lib/ccache/c++ -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/lib/flatbuffers/include -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/lib/spdlog/include -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -std=gnu++11 -o CMakeFiles/addr_broker.dir/src/addr_broker_main.cc.o -c /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/src/addr_broker_main.cc 14:35:41 [ 44%] Linking CXX executable addr_broker 14:35:41 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/bin/cmake -E cmake_link_script CMakeFiles/addr_broker.dir/link.txt --verbose=1 14:35:41 /usr/lib/ccache/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/addr_broker.dir/src/addr_broker_main.cc.o -o addr_broker libabroker.a -lzmq -lczmq -lpthread 14:35:41 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:41 [ 44%] Built target addr_broker 14:35:41 make -f addr_broker/CMakeFiles/kill_addr_broker.dir/build.make addr_broker/CMakeFiles/kill_addr_broker.dir/depend 14:35:41 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:41 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/kill_addr_broker.dir/DependInfo.cmake --color= 14:35:41 Scanning dependencies of target kill_addr_broker 14:35:41 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:41 make -f addr_broker/CMakeFiles/kill_addr_broker.dir/build.make addr_broker/CMakeFiles/kill_addr_broker.dir/build 14:35:41 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:41 [ 55%] Building CXX object addr_broker/CMakeFiles/kill_addr_broker.dir/src/kill_addr_broker_main.cc.o 14:35:41 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/lib/ccache/c++ -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/include -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/lib/flatbuffers/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -std=gnu++11 -o CMakeFiles/kill_addr_broker.dir/src/kill_addr_broker_main.cc.o -c /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/src/kill_addr_broker_main.cc 14:35:43 [ 66%] Linking CXX executable kill_addr_broker 14:35:43 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker && /usr/bin/cmake -E cmake_link_script CMakeFiles/kill_addr_broker.dir/link.txt --verbose=1 14:35:43 /usr/lib/ccache/c++ -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -rdynamic CMakeFiles/kill_addr_broker.dir/src/kill_addr_broker_main.cc.o -o kill_addr_broker -lzmq -lczmq 14:35:43 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:43 [ 66%] Built target kill_addr_broker 14:35:43 make -f cpp/CMakeFiles/atc.dir/build.make cpp/CMakeFiles/atc.dir/depend 14:35:43 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:43 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/cpp /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp/CMakeFiles/atc.dir/DependInfo.cmake --color= 14:35:43 Scanning dependencies of target atc 14:35:43 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:43 make -f cpp/CMakeFiles/atc.dir/build.make cpp/CMakeFiles/atc.dir/build 14:35:43 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:43 [ 77%] Building CXX object cpp/CMakeFiles/atc.dir/src/broker.cc.o 14:35:43 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp && /usr/lib/ccache/c++ -DATC_REALTIME_KERNEL=1 -Datc_EXPORTS -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/lib/spdlog/include -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/lib/flatbuffers/include -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -std=gnu++11 -o CMakeFiles/atc.dir/src/broker.cc.o -c /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/cpp/src/broker.cc 14:35:54 [ 88%] Building CXX object cpp/CMakeFiles/atc.dir/src/fb_msg.cc.o 14:35:54 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp && /usr/lib/ccache/c++ -DATC_REALTIME_KERNEL=1 -Datc_EXPORTS -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/lib/spdlog/include -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker/lib/flatbuffers/include -I/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/include -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -std=gnu++11 -o CMakeFiles/atc.dir/src/fb_msg.cc.o -c /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/cpp/src/fb_msg.cc 14:35:55 [100%] Linking CXX shared library libatc.so 14:35:55 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp && /usr/bin/cmake -E cmake_link_script CMakeFiles/atc.dir/link.txt --verbose=1 14:35:55 /usr/lib/ccache/c++ -fPIC -g -O2 -fdebug-prefix-map=/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5=. -fstack-protector-strong -Wformat -Werror=format-security -DNDEBUG -Wdate-time -D_FORTIFY_SOURCE=2 -shared -Wl,-soname,libatc.so -o libatc.so CMakeFiles/atc.dir/src/broker.cc.o CMakeFiles/atc.dir/src/fb_msg.cc.o -lzmq -lczmq 14:35:55 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:55 [100%] Built target atc 14:35:55 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:55 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles 0 14:35:55 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:55 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:35:55 debian/rules override_dh_auto_test 14:35:55 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:35:55 # In case we're installing to a non-standard location, look for a setup.sh 14:35:55 # in the install tree that was dropped by catkin, and source it. It will 14:35:55 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 14:35:55 echo -- Running tests. Even if one of them fails the build is not canceled. 14:35:55 -- Running tests. Even if one of them fails the build is not canceled. 14:35:55 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 14:35:55 dh_auto_test || true 14:35:55 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:35:55 fakeroot debian/rules binary 14:35:55 dh binary -v --buildsystem=cmake 14:35:56 dh_testroot -O-v -O--buildsystem=cmake 14:35:56 dh_prep -O-v -O--buildsystem=cmake 14:35:56 rm -f -- debian/ros-melodic-py-at-broker.substvars 14:35:56 rm -fr -- debian/.debhelper/generated/ros-melodic-py-at-broker/ debian/ros-melodic-py-at-broker/ debian/tmp/ 14:35:56 dh_installdirs -O-v -O--buildsystem=cmake 14:35:56 install -d debian/ros-melodic-py-at-broker 14:35:56 debian/rules override_dh_auto_install 14:35:56 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:35:56 # In case we're installing to a non-standard location, look for a setup.sh 14:35:56 # in the install tree that was dropped by catkin, and source it. It will 14:35:56 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 14:35:56 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 14:35:56 dh_auto_install 14:35:56 cd obj-x86_64-linux-gnu && make -j1 install DESTDIR=/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker AM_UPDATE_INFO_DIR=no 14:35:56 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 -B/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 14:35:56 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 14:35:56 make -f CMakeFiles/Makefile2 all 14:35:56 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 make -f addr_broker/CMakeFiles/abroker.dir/build.make addr_broker/CMakeFiles/abroker.dir/depend 14:35:56 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/abroker.dir/DependInfo.cmake --color= 14:35:56 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 make -f addr_broker/CMakeFiles/abroker.dir/build.make addr_broker/CMakeFiles/abroker.dir/build 14:35:56 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 make[4]: Nothing to be done for 'addr_broker/CMakeFiles/abroker.dir/build'. 14:35:56 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 [ 22%] Built target abroker 14:35:56 make -f addr_broker/CMakeFiles/addr_broker.dir/build.make addr_broker/CMakeFiles/addr_broker.dir/depend 14:35:56 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/addr_broker.dir/DependInfo.cmake --color= 14:35:56 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 make -f addr_broker/CMakeFiles/addr_broker.dir/build.make addr_broker/CMakeFiles/addr_broker.dir/build 14:35:56 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 make[4]: Nothing to be done for 'addr_broker/CMakeFiles/addr_broker.dir/build'. 14:35:56 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 [ 44%] Built target addr_broker 14:35:56 make -f addr_broker/CMakeFiles/kill_addr_broker.dir/build.make addr_broker/CMakeFiles/kill_addr_broker.dir/depend 14:35:56 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/addr_broker/CMakeFiles/kill_addr_broker.dir/DependInfo.cmake --color= 14:35:56 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 make -f addr_broker/CMakeFiles/kill_addr_broker.dir/build.make addr_broker/CMakeFiles/kill_addr_broker.dir/build 14:35:56 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 make[4]: Nothing to be done for 'addr_broker/CMakeFiles/kill_addr_broker.dir/build'. 14:35:56 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 [ 66%] Built target kill_addr_broker 14:35:56 make -f cpp/CMakeFiles/atc.dir/build.make cpp/CMakeFiles/atc.dir/depend 14:35:56 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 cd /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/cpp /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/cpp/CMakeFiles/atc.dir/DependInfo.cmake --color= 14:35:56 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 make -f cpp/CMakeFiles/atc.dir/build.make cpp/CMakeFiles/atc.dir/build 14:35:56 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 make[4]: Nothing to be done for 'cpp/CMakeFiles/atc.dir/build'. 14:35:56 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 [100%] Built target atc 14:35:56 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu/CMakeFiles 0 14:35:56 make -f CMakeFiles/Makefile2 preinstall 14:35:56 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 make[3]: Nothing to be done for 'preinstall'. 14:35:56 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 Install the project... 14:35:56 /usr/bin/cmake -P cmake_install.cmake 14:35:56 -- Install configuration: "None" 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages/AddrBrokerComm_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages/franka_images_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages/task_policy_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages/double_signal_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages/Timestamp_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages/empowerment_policy_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages/gripper_cmd_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages/Signal_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages/franka_state_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages/franka_lidar_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/messages/des_tau_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/broker.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/atc/fb_msg.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/lib/cmake/atc/atcConfig.cmake 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/bin/addr_broker 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/bin/kill_addr_broker 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/lib/libatc.so 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/ostr.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/bundled 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/bundled/posix.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/bundled/LICENSE.rst 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/bundled/printf.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/bundled/posix.cc 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/bundled/time.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/bundled/format.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/bundled/format.cc 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/bundled/printf.cc 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/bundled/ostream.cc 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/bundled/ostream.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/fmt/fmt.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/android_sink.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/file_sinks.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/ansicolor_sink.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/null_sink.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/stdout_sinks.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/ostream_sink.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/base_sink.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/sink.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/wincolor_sink.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/windebug_sink.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/syslog_sink.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/msvc_sink.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/sinks/dist_sink.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/async_logger.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/formatter.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/spdlog.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/common.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/tweakme.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details/log_msg.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details/pattern_formatter_impl.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details/spdlog_impl.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details/async_log_helper.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details/os.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details/async_logger_impl.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details/mpmc_bounded_q.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details/logger_impl.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details/null_mutex.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details/registry.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/details/file_helper.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/spdlog/logger.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/stl_emulation.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/idl.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/util.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/base.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/minireflect.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/hash.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/code_generators.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/flatbuffers.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/flexbuffers.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/grpc.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/registry.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/reflection_generated.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/reflection.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/include/flatbuffers/flatc.h 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/lib/cmake/atc/atcTargets.cmake 14:35:56 -- Installing: /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker/opt/ros/melodic/lib/cmake/atc/atcTargets-none.cmake 14:35:56 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu' 14:35:56 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:35:56 dh_install -O-v -O--buildsystem=cmake 14:35:56 install -d debian/.debhelper/generated/ros-melodic-py-at-broker 14:35:56 dh_installdocs -O-v -O--buildsystem=cmake 14:35:57 install -d debian/ros-melodic-py-at-broker/usr/share/doc/ros-melodic-py-at-broker 14:35:57 dh_installchangelogs -O-v -O--buildsystem=cmake 14:35:57 install -p -m0644 debian/changelog debian/ros-melodic-py-at-broker/usr/share/doc/ros-melodic-py-at-broker/changelog.Debian 14:35:57 dh_installexamples -O-v -O--buildsystem=cmake 14:35:57 dh_installman -O-v -O--buildsystem=cmake 14:35:57 dh_installcatalogs -O-v -O--buildsystem=cmake 14:35:57 dh_installcron -O-v -O--buildsystem=cmake 14:35:57 dh_installdebconf -O-v -O--buildsystem=cmake 14:35:57 install -d debian/ros-melodic-py-at-broker/DEBIAN 14:35:57 dh_installemacsen -O-v -O--buildsystem=cmake 14:35:57 dh_installifupdown -O-v -O--buildsystem=cmake 14:35:57 dh_installinfo -O-v -O--buildsystem=cmake 14:35:57 dh_installinit -O-v -O--buildsystem=cmake 14:35:57 dh_installmenu -O-v -O--buildsystem=cmake 14:35:58 dh_installmime -O-v -O--buildsystem=cmake 14:35:58 dh_installmodules -O-v -O--buildsystem=cmake 14:35:58 dh_installlogcheck -O-v -O--buildsystem=cmake 14:35:58 dh_installlogrotate -O-v -O--buildsystem=cmake 14:35:58 dh_installpam -O-v -O--buildsystem=cmake 14:35:58 dh_installppp -O-v -O--buildsystem=cmake 14:35:58 dh_installudev -O-v -O--buildsystem=cmake 14:35:58 dh_installgsettings -O-v -O--buildsystem=cmake 14:35:58 dh_bugfiles -O-v -O--buildsystem=cmake 14:35:58 dh_ucf -O-v -O--buildsystem=cmake 14:35:58 dh_lintian -O-v -O--buildsystem=cmake 14:35:58 dh_gconf -O-v -O--buildsystem=cmake 14:35:58 dh_icons -O-v -O--buildsystem=cmake 14:35:58 dh_perl -O-v -O--buildsystem=cmake 14:35:58 dh_usrlocal -O-v -O--buildsystem=cmake 14:35:58 dh_link -O-v -O--buildsystem=cmake 14:35:59 dh_installwm -O-v -O--buildsystem=cmake 14:35:59 dh_installxfonts -O-v -O--buildsystem=cmake 14:35:59 dh_strip_nondeterminism -O-v -O--buildsystem=cmake 14:35:59 dh_compress -O-v -O--buildsystem=cmake 14:35:59 cd debian/ros-melodic-py-at-broker 14:35:59 chmod a-x usr/share/doc/ros-melodic-py-at-broker/changelog.Debian 14:35:59 gzip -9nf usr/share/doc/ros-melodic-py-at-broker/changelog.Debian 14:35:59 cd '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:35:59 dh_fixperms -O-v -O--buildsystem=cmake 14:35:59 find debian/ros-melodic-py-at-broker -true -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 14:35:59 find debian/ros-melodic-py-at-broker ! -type l -a -true -a -true -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s 14:35:59 find debian/ros-melodic-py-at-broker/usr/share/doc -type f -a -true -a ! -regex 'debian/ros-melodic-py-at-broker/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 14:35:59 find debian/ros-melodic-py-at-broker/usr/share/doc -type d -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0755 14:35:59 find debian/ros-melodic-py-at-broker -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 14:35:59 dh_missing -O-v -O--buildsystem=cmake 14:35:59 dh_strip -O-v -O--buildsystem=cmake 14:35:59 install -d debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/ea 14:35:59 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-py-at-broker/opt/ros/melodic/lib/libatc.so debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/ea/99410c5feed740933ffbeae6511b6bd94cf39b.debug 14:35:59 chmod 0644 -- debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/ea/99410c5feed740933ffbeae6511b6bd94cf39b.debug 14:35:59 chown 0:0 -- debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/ea/99410c5feed740933ffbeae6511b6bd94cf39b.debug 14:35:59 strip --remove-section=.comment --remove-section=.note --strip-unneeded debian/ros-melodic-py-at-broker/opt/ros/melodic/lib/libatc.so 14:35:59 objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/ea/99410c5feed740933ffbeae6511b6bd94cf39b.debug debian/ros-melodic-py-at-broker/opt/ros/melodic/lib/libatc.so 14:35:59 install -d debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/cf 14:35:59 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-py-at-broker/opt/ros/melodic/bin/addr_broker debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/cf/1b1cd948814e215fc3bcfa66929f598dd3ec07.debug 14:36:00 chmod 0644 -- debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/cf/1b1cd948814e215fc3bcfa66929f598dd3ec07.debug 14:36:00 chown 0:0 -- debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/cf/1b1cd948814e215fc3bcfa66929f598dd3ec07.debug 14:36:00 strip --remove-section=.comment --remove-section=.note debian/ros-melodic-py-at-broker/opt/ros/melodic/bin/addr_broker 14:36:00 objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/cf/1b1cd948814e215fc3bcfa66929f598dd3ec07.debug debian/ros-melodic-py-at-broker/opt/ros/melodic/bin/addr_broker 14:36:00 install -d debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/3f 14:36:00 objcopy --only-keep-debug --compress-debug-sections debian/ros-melodic-py-at-broker/opt/ros/melodic/bin/kill_addr_broker debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/3f/2f0d80e096a8466013c63a65daa8ce1c08b728.debug 14:36:00 chmod 0644 -- debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/3f/2f0d80e096a8466013c63a65daa8ce1c08b728.debug 14:36:00 chown 0:0 -- debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/3f/2f0d80e096a8466013c63a65daa8ce1c08b728.debug 14:36:00 strip --remove-section=.comment --remove-section=.note debian/ros-melodic-py-at-broker/opt/ros/melodic/bin/kill_addr_broker 14:36:00 objcopy --add-gnu-debuglink debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/lib/debug/.build-id/3f/2f0d80e096a8466013c63a65daa8ce1c08b728.debug debian/ros-melodic-py-at-broker/opt/ros/melodic/bin/kill_addr_broker 14:36:00 install -d debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/share/doc 14:36:00 ln -s ros-melodic-py-at-broker debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/usr/share/doc/ros-melodic-py-at-broker-dbgsym 14:36:00 dh_makeshlibs -O-v -O--buildsystem=cmake 14:36:00 rm -f debian/ros-melodic-py-at-broker/DEBIAN/shlibs 14:36:00 debian/rules override_dh_shlibdeps 14:36:00 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:36:00 # In case we're installing to a non-standard location, look for a setup.sh 14:36:00 # in the install tree that was dropped by catkin, and source it. It will 14:36:00 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 14:36:00 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 14:36:00 dh_shlibdeps -l/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker//opt/ros/melodic/lib/ 14:36:00 dpkg-shlibdeps -Tdebian/ros-melodic-py-at-broker.substvars -l/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5/debian/ros-melodic-py-at-broker//opt/ros/melodic/lib/ debian/ros-melodic-py-at-broker/opt/ros/melodic/lib/libatc.so debian/ros-melodic-py-at-broker/opt/ros/melodic/bin/addr_broker debian/ros-melodic-py-at-broker/opt/ros/melodic/bin/kill_addr_broker 14:36:02 dpkg-shlibdeps: warning: symbol pthread_create used by debian/ros-melodic-py-at-broker/opt/ros/melodic/lib/libatc.so found in none of the libraries 14:36:02 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-py-at-broker-0.0.5' 14:36:02 dh_installdeb -O-v -O--buildsystem=cmake 14:36:02 dh_gencontrol -O-v -O--buildsystem=cmake 14:36:02 echo misc:Depends= >> debian/ros-melodic-py-at-broker.substvars 14:36:02 echo misc:Pre-Depends= >> debian/ros-melodic-py-at-broker.substvars 14:36:02 install -d debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/DEBIAN 14:36:02 dpkg-gencontrol -pros-melodic-py-at-broker -ldebian/changelog -Tdebian/ros-melodic-py-at-broker.substvars -Pdebian/.debhelper/ros-melodic-py-at-broker/dbgsym-root -UPre-Depends -URecommends -USuggests -UEnhances -UProvides -UEssential -UConflicts -DPriority=optional -UHomepage -UImportant -DAuto-Built-Package=debug-symbols -DPackage=ros-melodic-py-at-broker-dbgsym "-DDepends=ros-melodic-py-at-broker (= \${binary:Version})" "-DDescription=debug symbols for ros-melodic-py-at-broker" "-DBuild-Ids=3f2f0d80e096a8466013c63a65daa8ce1c08b728 cf1b1cd948814e215fc3bcfa66929f598dd3ec07 ea99410c5feed740933ffbeae6511b6bd94cf39b" -DSection=debug -DPackage-Type=ddeb -UMulti-Arch -UReplaces -UBreaks 14:36:02 chmod 0644 -- debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/DEBIAN/control 14:36:02 chown 0:0 -- debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/DEBIAN/control 14:36:02 dpkg-gencontrol -pros-melodic-py-at-broker -ldebian/changelog -Tdebian/ros-melodic-py-at-broker.substvars -Pdebian/ros-melodic-py-at-broker -UMulti-Arch 14:36:02 chmod 0644 -- debian/ros-melodic-py-at-broker/DEBIAN/control 14:36:02 chown 0:0 -- debian/ros-melodic-py-at-broker/DEBIAN/control 14:36:02 dh_md5sums -O-v -O--buildsystem=cmake 14:36:02 (cd debian/ros-melodic-py-at-broker >/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 14:36:02 chmod 0644 -- debian/ros-melodic-py-at-broker/DEBIAN/md5sums 14:36:02 chown 0:0 -- debian/ros-melodic-py-at-broker/DEBIAN/md5sums 14:36:02 (cd debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root >/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 14:36:02 chmod 0644 -- debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/DEBIAN/md5sums 14:36:02 chown 0:0 -- debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root/DEBIAN/md5sums 14:36:02 dh_builddeb -O-v -O--buildsystem=cmake 14:36:02 dpkg-deb --build debian/ros-melodic-py-at-broker .. 14:36:02 dpkg-deb: building package 'ros-melodic-py-at-broker' in '../ros-melodic-py-at-broker_0.0.5-1bionic.20191202.143157_amd64.deb'. 14:36:02 install -d debian/.debhelper/scratch-space/build-ros-melodic-py-at-broker 14:36:02 dpkg-deb --build debian/.debhelper/ros-melodic-py-at-broker/dbgsym-root debian/.debhelper/scratch-space/build-ros-melodic-py-at-broker 14:36:02 dpkg-deb: building package 'ros-melodic-py-at-broker-dbgsym' in 'debian/.debhelper/scratch-space/build-ros-melodic-py-at-broker/ros-melodic-py-at-broker-dbgsym_0.0.5-1bionic.20191202.143157_amd64.deb'. 14:36:03 Renaming ros-melodic-py-at-broker-dbgsym_0.0.5-1bionic.20191202.143157_amd64.deb to ros-melodic-py-at-broker-dbgsym_0.0.5-1bionic.20191202.143157_amd64.ddeb 14:36:03 mv debian/.debhelper/scratch-space/build-ros-melodic-py-at-broker/ros-melodic-py-at-broker-dbgsym_0.0.5-1bionic.20191202.143157_amd64.deb ../ros-melodic-py-at-broker-dbgsym_0.0.5-1bionic.20191202.143157_amd64.ddeb 14:36:03 dpkg-genbuildinfo --build=binary 14:36:03 dpkg-genchanges --build=binary >../ros-melodic-py-at-broker_0.0.5-1bionic.20191202.143157_amd64.changes 14:36:04 dpkg-genchanges: info: binary-only upload (no source code included) 14:36:04 dpkg-source --after-build ros-melodic-py-at-broker-0.0.5 14:36:04 dpkg-source: info: using options from ros-melodic-py-at-broker-0.0.5/debian/source/options: --auto-commit 14:36:04 dpkg-buildpackage: info: binary-only upload (no source included) 14:36:04 I: Successfully built in /tmp/binarydeb/ros-melodic-py-at-broker-0.0.5 14:36:04 # END SUBSECTION
14:36:06 + echo # END SECTION 14:36:06 # END SECTION
14:36:06 [Mbin_uB64__py_at_broker__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/hudson1745448028150021002.sh 14:36:06 + [ false = false ] 14:36:06 + echo # BEGIN SECTION: Clean up to save disk space on agents
2. Clean up to save disk space on agents

Hide Details

14:36:06 # BEGIN SECTION: Clean up to save disk space on agents 14:36:06 + chmod -R u+w /home/jenkins-slave/workspace/Mbin_uB64__py_at_broker__ubuntu_bionic_amd64__binary/binarydeb 14:36:07 + rm -fr binarydeb/ros-melodic-py-at-broker-0.0.5/CHANGELOG.rst binarydeb/ros-melodic-py-at-broker-0.0.5/CMakeFiles binarydeb/ros-melodic-py-at-broker-0.0.5/CMakeLists.txt binarydeb/ros-melodic-py-at-broker-0.0.5/Doxyfile binarydeb/ros-melodic-py-at-broker-0.0.5/addr_broker binarydeb/ros-melodic-py-at-broker-0.0.5/atcConfig.cmake binarydeb/ros-melodic-py-at-broker-0.0.5/cmake binarydeb/ros-melodic-py-at-broker-0.0.5/cpp binarydeb/ros-melodic-py-at-broker-0.0.5/debian binarydeb/ros-melodic-py-at-broker-0.0.5/include binarydeb/ros-melodic-py-at-broker-0.0.5/message_types binarydeb/ros-melodic-py-at-broker-0.0.5/obj-x86_64-linux-gnu binarydeb/ros-melodic-py-at-broker-0.0.5/package.xml binarydeb/ros-melodic-py-at-broker-0.0.5/python binarydeb/ros-melodic-py-at-broker-0.0.5/rST_docs binarydeb/ros-melodic-py-at-broker-0.0.5/readme.rst 14:36:07 + echo # END SECTION 14:36:07 # END SECTION
14:36:07 SSH: Connecting from host [lcas-buildfarm-slave-2] 14:36:07 SSH: Connecting with configuration [repo] ... 14:36:08 SSH: Disconnecting configuration [repo] ... 14:36:08 SSH: Transferred 3 file(s) 14:36:08 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 14:36:08 Waiting for the completion of Mrel_import-package 14:36:21 Mrel_import-package #249 completed. Result was SUCCESS 14:36:21 $ ssh-agent -k 14:36:21 unset SSH_AUTH_SOCK; 14:36:21 unset SSH_AGENT_PID; 14:36:21 echo Agent pid 10059 killed; 14:36:21 [ssh-agent] Stopped. 14:36:21 [description-setter] Description set: 0.0.5-1bionic.20191202.143157 14:36:21 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered 14:36:21 Triggering a new build of Mrel_sync-packages-to-testing_bionic_amd64 14:36:21 Finished: SUCCESS