SuccessConsole Output

Skipping 24 KB.. Full Log
kages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list
15:24:25   
15:24:25   RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list))
15:24:25   
15:24:25   RUN mkdir /tmp/wrapper_scripts
15:24:25   RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n    max_tries = 10\n    known_error_strings = [\n        'Failed to fetch',\n        'Failed to stat',\n        'Hash Sum mismatch',\n        'Unable to locate package',\n        'is not what the server reported',\n    ]\n\n    command = argv[0]\n    if command in ['update', 'source']:\n        rc, _, _ = call_apt_repeatedly(\n            argv, known_error_strings, max_tries)\n        return rc\n    elif command == 'update-install-clean':\n        return call_apt_update_install_clean(\n            argv[1:], known_error_strings, max_tries)\n    else:\n        assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n        install_argv, known_error_strings, max_tries):\n    tries = 0\n    command = 'update'\n    while tries < max_tries:\n        if command == 'update':\n            rc, _, tries = call_apt_repeatedly(\n                [command], known_error_strings, max_tries - tries,\n                offset=tries)\n            if rc != 0:\n                # abort if update was unsuccessful even after retries\n                break\n            # move on to the install command if update was successful\n            command = 'install'\n\n        if command == 'install':\n            # any call is considered a try\n            tries += 1\n            known_error_strings_redo_update = [\n                'Size mismatch',\n                'maybe run apt update',\n                'The following packages cannot be authenticated!',\n                'Unable to locate package',\n                'has no installation candidate',\n                'corrupted package archive',\n            ]\n            rc, known_error_conditions = \\\\\n                call_apt(\n                    [command] + install_argv,\n                    known_error_strings + known_error_strings_redo_update)\n            if not known_error_conditions:\n                if rc != 0:\n                    # abort if install was unsuccessful\n                    break\n                # move on to the clean command if install was successful\n                command = 'clean'\n                continue\n\n            # known errors are always interpreted as a non-zero rc\n            if rc == 0:\n                rc = 1\n            # check if update needs to be rerun\n            if (\n                set(known_error_conditions) &\n                set(known_error_strings_redo_update)\n            ):\n                command = 'update'\n                print(\"'apt install' failed and likely requires \" +\n                      \"'apt update' to run again\")\n                # retry with update command\n                continue\n\n            print('')\n            print('Invocation failed due to the following known error '\n                  'conditions: ' + ', '.join(known_error_conditions))\n            print('')\n            if tries < max_tries:\n                sleep_time = 5\n                print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n                      sleep_time)\n                sleep(sleep_time)\n                # retry install command\n\n        if command == 'clean':\n            rc, _ = call_apt([command], [])\n            break\n\n    return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n    command = argv[0]\n    for i in range(1, max_tries + 1):\n        if i > 1:\n            sleep_time = 5 + 2 * (i + offset)\n            print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n                  (command, i + offset, max_tries + offset, sleep_time))\n            sleep(sleep_time)\n        rc, known_error_conditions = call_apt(argv, known_error_strings)\n        if not known_error_conditions:\n            # break the loop and return the reported rc\n            break\n        # known errors are always interpreted as a non-zero rc\n        if rc == 0:\n            rc = 1\n        print('')\n        print('Invocation failed due to the following known error conditions: '\n              ', '.join(known_error_conditions))\n        print('')\n        # retry in case of failure with known error condition\n    return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n    known_error_conditions = []\n\n    # some of the used options are not supported in older distros\n    # e.g. Ubuntu Wily, Debian Jessie\n    cmd = ['apt-get'] + argv\n    print(\"Invoking '%s'\" % ' '.join(cmd))\n    proc = subprocess.Popen(\n        cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n    lines = []\n    while True:\n        line = proc.stdout.readline()\n        if not line:\n            break\n        line = line.decode()\n        lines.append(line)\n        sys.stdout.write(line)\n        for known_error_string in known_error_strings:\n            if known_error_string in line:\n                if known_error_string not in known_error_conditions:\n                    known_error_conditions.append(known_error_string)\n    proc.wait()\n    rc = proc.returncode\n    if rc and not known_error_conditions:\n        print('Invocation failed without any known error condition, '\n              'printing all lines to debug known error detection:')\n        for index, line in enumerate(lines):\n            print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n        print('None of the following known errors were detected:')\n        for index, known_error_string in enumerate(known_error_strings):\n            print(' ', index + 1, \"'%s'\" % known_error_string)\n    return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n    sys.exit(main())" > /tmp/wrapper_scripts/apt.py
15:24:25   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
15:24:25   
15:24:25   # automatic invalidation once every day
15:24:25   RUN echo "2021-07-15 (+0000)"
15:24:25   
15:24:25   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
15:24:25   
15:24:25   RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml openssl
15:24:25   
15:24:25   # always invalidate to actually have the latest apt repo state
15:24:25   RUN echo "2021-07-15 14:24:25 +0000"
15:24:25   RUN python3 -u /tmp/wrapper_scripts/apt.py update
15:24:25   
15:24:25   USER buildfarm
15:24:25   ENTRYPOINT ["sh", "-c"]
15:24:25   CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sourcedeb.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic topological_utils --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic topological_utils --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/create_binarydeb_task_generator.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic topological_utils ubuntu bionic amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /tmp/keys/0.key /tmp/keys/1.key --binarydeb-dir /tmp/binarydeb --env-vars  --dockerfile-dir /tmp/docker_build_binarydeb"]
15:24:25 + echo # END SECTION
15:24:25 # END SECTION
15:24:25 + echo # BEGIN SECTION: Build Dockerfile - binarydeb task
1. Build Dockerfile - binarydeb task

Hide Details

15:24:25 # BEGIN SECTION: Build Dockerfile - binarydeb task 15:24:25 + cd /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/docker_generating_docker 15:24:25 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 15:24:25 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 15:24:25 Check docker base image for updates: docker pull ubuntu:bionic 15:24:27 bionic: Pulling from library/ubuntu 15:24:28 Digest: sha256:3b8692dc4474d4f6043fae285676699361792ce1828e22b1b57367b5c05457e3 15:24:28 Status: Image is up to date for ubuntu:bionic 15:24:28 + docker build --force-rm -t binarydeb_task_generation.melodic_ubuntu_bionic_amd64_topological_utils . 15:24:28 Sending build context to Docker daemon 22.02kB 15:24:28 Step 1/28 : FROM ubuntu:bionic 15:24:28 ---> fbf60236a8e3 15:24:28 Step 2/28 : VOLUME /var/cache/apt/archives 15:24:28 ---> Using cache 15:24:28 ---> aec862515235 15:24:28 Step 3/28 : ENV DEBIAN_FRONTEND noninteractive 15:24:28 ---> Using cache 15:24:28 ---> c9e25f0238a3 15:24:28 Step 4/28 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 15:24:28 ---> Using cache 15:24:28 ---> 49bfd53933a1 15:24:28 Step 5/28 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 15:24:28 ---> Using cache 15:24:28 ---> 2b132e2267f0 15:24:28 Step 6/28 : RUN locale-gen en_US.UTF-8 15:24:28 ---> Using cache 15:24:28 ---> f423ce7d1fb5 15:24:28 Step 7/28 : ENV LANG en_US.UTF-8 15:24:28 ---> Using cache 15:24:28 ---> 810803aaea06 15:24:28 Step 8/28 : ENV TZ GMT+00 15:24:28 ---> Using cache 15:24:28 ---> 810e234eab7b 15:24:28 Step 9/28 : RUN useradd -u 1002 -l -m buildfarm 15:24:28 ---> Using cache 15:24:28 ---> 7ca182242ec8 15:24:28 Step 10/28 : RUN mkdir /tmp/keys 15:24:28 ---> Using cache 15:24:28 ---> 829d28971b90 15:24:28 Step 11/28 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 15:24:28 ---> Using cache 15:24:28 ---> e63546efab0e 15:24:28 Step 12/28 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 15:24:28 ---> Using cache 15:24:28 ---> 014527010d31 15:24:28 Step 13/28 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jc\nVFrQhE0L/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3tro\nu5oCR+SyHN9xPnUwDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4\nK/AY0jzT6OpHfXU6ytlFsI47ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rG\naIoAWlx2H0J7sAHmqS29N9jV9mo135d+d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+\nTwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS6nHrWH2WqQxRbiITl0irkQoz\npwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBNqoAQRbvWvBhPjO/p\nV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL8bwxX7UT\nhM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVV\nokdGpcUzvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQAB\ntCZPcGVuIFJvYm90aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoA\nPhYhBMHPbjHmut6IaLFytPQu1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUK\nCQgLAgQWAgMBAh4BAheAAAoJEPQu1vurF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQ\nnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeANKARNCaGLyNIWkuyDovPV0xZJ\nrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/sNGByJEhs37F05AnF\nvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHvZSxRonWh\nNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kj\nJ4e7YAZobC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6\nDiJVfXuWkk5PM2zsFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbR\nfp/4W7uCPFvwAatWEHJhlM3sQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQ\nqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePRhE+J9mejgWRZxkjAH/FlAubqXkDgterC\nh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/MpPWAHCqpQhe2DET/jRSaM53US\nAHNx8kw4MPUkxExgI7SdiQJUBBMBCAA+AhsDBQsJCAcCBhUKCQgLAgQWAgMBAh4B\nAheAFiEEwc9uMea63ohosXK09C7W+6sXxlQFAmCx2FEFCQtMxbsACgkQ9C7W+6sX\nxlRMzA//d/sSQ48gWNR1Gak0nZ1viIFFC7lvZIlEb4oh1u9AHMpQExXr9FSEQM+O\nFdkjfMN6/MF7C8AwqSqzZDVxaj1ZXtk/JOS9LJ7L9OOf4+jNx2/OS+sSMMx+0iTw\nTVbMsaru+c8tnWr9vpWrgffvdn4QNZoNoPBbvYJsIEtYBW2p9/zQLCUjbHx9gcqv\ndUFSfBxc0dHj6dEAF8BadpTiT6hOyEJC5yx3y+K01+xJesq4rLP3UhEdE+cmPHxS\n8ZTi1EZ+seTDXnTkRm+A/Ta9d5HJYFF8qIvW8bLi0JJEN1k7eazYnabTxU+/rkew\ndpZgyc76s0mYxmP130l0v/0ZF/kXpTSq6ggUvf0GFQS8HKe6qWuqKy2fI6HDxb8h\nDL/KY3MExwzPqtwyMzCGSCb8s1ehIPXU6sm7iS1DBGHC8ZVqucHyKHCOxPFkXKVo\nuYVJ9oD44CU6oItLU6QhUzONb5SXoDqqOIIRQ6yeV/gIaWHM0xk7HeWjDqLHMSoo\n5x8QKl4iPzRrZ8EOZaRwACOUe7pUGEBNQMb17bEovNXZn8Mtixvf6f1Bbso7TJkp\n+K5SjoBhugCKhAqfmOHeJG+MaHZSOmjbYb6hp7c9wJzsb7PXaPrEhjvT0VC4Dj10\nDZinMx1rT85fgs/npJMS94NGs74KdXpYT4XkVogrBvvY8visuLg=\n=p9Xy\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 15:24:28 ---> Using cache 15:24:28 ---> 40750027db7d 15:24:28 Step 14/28 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:24:28 ---> Using cache 15:24:28 ---> e372b3076b72 15:24:28 Step 15/28 : RUN echo deb-src http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:24:28 ---> Using cache 15:24:28 ---> fd61fb0f17fd 15:24:28 Step 16/28 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:24:28 ---> Using cache 15:24:28 ---> e4dea3055d72 15:24:28 Step 17/28 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) 15:24:28 ---> Using cache 15:24:28 ---> d5570c94efe1 15:24:28 Step 18/28 : RUN mkdir /tmp/wrapper_scripts 15:24:28 ---> Using cache 15:24:28 ---> e5bc34aac83e 15:24:28 Step 19/28 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py 15:24:28 ---> Using cache 15:24:28 ---> 2ff5548e8e6d 15:24:28 Step 20/28 : 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 15:24:28 ---> Using cache 15:24:28 ---> 2fa4e8f5f3dc 15:24:28 Step 21/28 : RUN echo "2021-07-15 (+0000)" 15:24:28 ---> Using cache 15:24:28 ---> a135cd11d9b4 15:24:28 Step 22/28 : 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 15:24:28 ---> Using cache 15:24:28 ---> 495454c917c9 15:24:28 Step 23/28 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y devscripts dpkg-dev python3-apt python3-catkin-pkg-modules python3-empy python3-rosdistro-modules python3-yaml openssl 15:24:28 ---> Using cache 15:24:28 ---> 9d33855fecf7 15:24:28 Step 24/28 : RUN echo "2021-07-15 14:24:25 +0000" 15:24:28 ---> Running in 6748b0277aa0 15:24:29 2021-07-15 14:24:25 +0000 15:24:29 ---> 0b06a38146e9 15:24:29 Removing intermediate container 6748b0277aa0 15:24:29 Step 25/28 : RUN python3 -u /tmp/wrapper_scripts/apt.py update 15:24:29 ---> Running in 9369dd703394 15:24:30 Invoking 'apt-get update' 15:24:30 Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,829 B] 15:24:30 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 15:24:30 Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 15:24:30 Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] 15:24:30 Get:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 15:24:30 Hit:6 http://packages.ros.org/ros/ubuntu bionic InRelease 15:24:30 Get:7 http://security.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 15:24:30 Get:8 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [208 kB] 15:24:31 Fetched 552 kB in 1s (423 kB/s) 15:24:33 Reading package lists... 15:24:36 ---> 5638569a12f9 15:24:36 Removing intermediate container 9369dd703394 15:24:36 Step 26/28 : USER buildfarm 15:24:36 ---> Running in 163ed6aba4b9 15:24:36 ---> 4ea9022c8d8e 15:24:36 Removing intermediate container 163ed6aba4b9 15:24:36 Step 27/28 : ENTRYPOINT sh -c 15:24:36 ---> Running in 7e741b55a24d 15:24:37 ---> 66f69af37169 15:24:37 Removing intermediate container 7e741b55a24d 15:24:37 Step 28/28 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sourcedeb.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic topological_utils --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic topological_utils --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/create_binarydeb_task_generator.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic topological_utils ubuntu bionic amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /tmp/keys/0.key /tmp/keys/1.key --binarydeb-dir /tmp/binarydeb --env-vars --dockerfile-dir /tmp/docker_build_binarydeb 15:24:37 ---> Running in bb780f03d552 15:24:37 ---> e7d2ad908907 15:24:37 Removing intermediate container bb780f03d552 15:24:37 Successfully built e7d2ad908907 15:24:37 Successfully tagged binarydeb_task_generation.melodic_ubuntu_bionic_amd64_topological_utils:latest 15:24:37 + echo # END SECTION 15:24:37 # END SECTION
15:24:37 + echo # BEGIN SECTION: Run Dockerfile - binarydeb task
2. Run Dockerfile - binarydeb task

Hide Details

15:24:37 # BEGIN SECTION: Run Dockerfile - binarydeb task 15:24:37 + [ -f /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/binarydeb ] 15:24:37 + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/binarydeb 15:24:37 + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/docker_build_binarydeb 15:24:37 + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/binarydeb 15:24:37 + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/docker_build_binarydeb 15:24:37 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/docker_generating_docker/docker.cid -e=TRAVIS= -e=ROS_BUILDFARM_PULL_REQUEST_BRANCH= -v /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/docker_build_binarydeb:/tmp/docker_build_binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_task_generation.melodic_ubuntu_bionic_amd64_topological_utils
2.1. get sourcedeb

Hide Details

15:24:38 # BEGIN SUBSECTION: get sourcedeb 15:24:45 Invoking '/usr/bin/python3 /tmp/ros_buildfarm/ros_buildfarm/wrapper/apt.py source --download-only --only-source ros-melodic-topological-utils=2.3.0-1bionic' 15:24:47 Invoking 'apt-get source --download-only --only-source ros-melodic-topological-utils=2.3.0-1bionic' 15:24:47 Reading package lists... 15:24:47 Need to get 47.5 kB of source archives. 15:24:47 Get:1 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-topological-utils 2.3.0-1bionic (dsc) [1,306 B] 15:24:47 Get:2 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-topological-utils 2.3.0-1bionic (tar) [39.7 kB] 15:24:47 Get:3 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-topological-utils 2.3.0-1bionic (diff) [6,436 B] 15:24:47 Fetched 47.5 kB in 0s (3,238 kB/s) 15:24:47 Download complete and in download only mode 15:24:47 Invoking 'dpkg-source -x ros-melodic-topological-utils_2.3.0-1bionic.dsc' 15:24:48 dpkg-source: warning: extracting unsigned source package (ros-melodic-topological-utils_2.3.0-1bionic.dsc) 15:24:48 dpkg-source: info: extracting ros-melodic-topological-utils in ros-melodic-topological-utils-2.3.0 15:24:48 dpkg-source: info: unpacking ros-melodic-topological-utils_2.3.0.orig.tar.gz 15:24:48 dpkg-source: info: unpacking ros-melodic-topological-utils_2.3.0-1bionic.debian.tar.xz 15:24:48 Package maintainer emails: jpulidofentanes@lincoln.ac.uk 15:24:48 # END SUBSECTION
2.2. append build timestamp

Hide Details

15:24:48 # BEGIN SUBSECTION: append build timestamp 15:24:48 Invoking 'debchange -v 2.3.0-1bionic.20210715.142448 -p -D bionic -u high -m Append timestamp when binarydeb was built.' in '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:24:48 # END SUBSECTION
15:24:52 Looking for the '.dsc' file of package 'ros-melodic-topological-utils' with version '2.3.0-1' 15:24:54 Using the following distribution repositories: 15:24:54 http://10.210.9.154/ubuntu/building (/tmp/keys/0.key) 15:24:54 http://packages.ros.org/ros/ubuntu (/tmp/keys/1.key) 15:24:54 Generating Dockerfile '/tmp/docker_build_binarydeb/Dockerfile': 15:24:54 # generated from release/binarydeb_task.Dockerfile.em 15:24:54 15:24:54 15:24:54 FROM ubuntu:bionic 15:24:54 15:24:54 VOLUME ["/var/cache/apt/archives"] 15:24:54 15:24:54 ENV DEBIAN_FRONTEND noninteractive 15:24:54 15:24:54 15:24:54 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 15:24:54 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 15:24:54 RUN locale-gen en_US.UTF-8 15:24:54 ENV LANG en_US.UTF-8 15:24:54 ENV TZ GMT+00 15:24:54 15:24:54 RUN useradd -u 1002 -l -m buildfarm 15:24:54 15:24:54 RUN mkdir /tmp/keys 15:24:54 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 15:24:54 RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 15:24:54 RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jc\nVFrQhE0L/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3tro\nu5oCR+SyHN9xPnUwDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4\nK/AY0jzT6OpHfXU6ytlFsI47ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rG\naIoAWlx2H0J7sAHmqS29N9jV9mo135d+d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+\nTwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS6nHrWH2WqQxRbiITl0irkQoz\npwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBNqoAQRbvWvBhPjO/p\nV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL8bwxX7UT\nhM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVV\nokdGpcUzvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQAB\ntCZPcGVuIFJvYm90aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoA\nPhYhBMHPbjHmut6IaLFytPQu1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUK\nCQgLAgQWAgMBAh4BAheAAAoJEPQu1vurF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQ\nnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeANKARNCaGLyNIWkuyDovPV0xZJ\nrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/sNGByJEhs37F05AnF\nvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHvZSxRonWh\nNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kj\nJ4e7YAZobC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6\nDiJVfXuWkk5PM2zsFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbR\nfp/4W7uCPFvwAatWEHJhlM3sQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQ\nqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePRhE+J9mejgWRZxkjAH/FlAubqXkDgterC\nh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/MpPWAHCqpQhe2DET/jRSaM53US\nAHNx8kw4MPUkxExgI7SdiQJUBBMBCAA+AhsDBQsJCAcCBhUKCQgLAgQWAgMBAh4B\nAheAFiEEwc9uMea63ohosXK09C7W+6sXxlQFAmCx2FEFCQtMxbsACgkQ9C7W+6sX\nxlRMzA//d/sSQ48gWNR1Gak0nZ1viIFFC7lvZIlEb4oh1u9AHMpQExXr9FSEQM+O\nFdkjfMN6/MF7C8AwqSqzZDVxaj1ZXtk/JOS9LJ7L9OOf4+jNx2/OS+sSMMx+0iTw\nTVbMsaru+c8tnWr9vpWrgffvdn4QNZoNoPBbvYJsIEtYBW2p9/zQLCUjbHx9gcqv\ndUFSfBxc0dHj6dEAF8BadpTiT6hOyEJC5yx3y+K01+xJesq4rLP3UhEdE+cmPHxS\n8ZTi1EZ+seTDXnTkRm+A/Ta9d5HJYFF8qIvW8bLi0JJEN1k7eazYnabTxU+/rkew\ndpZgyc76s0mYxmP130l0v/0ZF/kXpTSq6ggUvf0GFQS8HKe6qWuqKy2fI6HDxb8h\nDL/KY3MExwzPqtwyMzCGSCb8s1ehIPXU6sm7iS1DBGHC8ZVqucHyKHCOxPFkXKVo\nuYVJ9oD44CU6oItLU6QhUzONb5SXoDqqOIIRQ6yeV/gIaWHM0xk7HeWjDqLHMSoo\n5x8QKl4iPzRrZ8EOZaRwACOUe7pUGEBNQMb17bEovNXZn8Mtixvf6f1Bbso7TJkp\n+K5SjoBhugCKhAqfmOHeJG+MaHZSOmjbYb6hp7c9wJzsb7PXaPrEhjvT0VC4Dj10\nDZinMx1rT85fgs/npJMS94NGs74KdXpYT4XkVogrBvvY8visuLg=\n=p9Xy\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 15:24:54 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:24:54 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:24:54 15:24:54 RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) 15:24:54 15:24:54 RUN mkdir /tmp/wrapper_scripts 15:24:54 RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py 15:24:54 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 15:24:54 15:24:54 # automatic invalidation once every day 15:24:54 RUN echo "2021-07-15 (+0000)" 15:24:54 15:24:54 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 15:24:54 15:24:54 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 15:24:54 15:24:54 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 15:24:54 15:24:54 15:24:54 # for each dependency: echo version, apt update, apt install, apt clean 15:24:54 # to prevent exceeding the docker layer limit several lines have been folded 15:24:54 RUN echo "apt-src: 0.25.2" && echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src debhelper 15:24:54 RUN echo "ros-melodic-catkin: 0.7.29-1bionic.20201014.191449" && echo "ros-melodic-geometry-msgs: 1.12.8-1bionic.20210505.011050" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin ros-melodic-geometry-msgs 15:24:54 RUN echo "ros-melodic-message-generation: 0.4.1-1bionic.20210505.005154" && echo "ros-melodic-mongodb-store: 0.5.2-1bionic.20210505.053231" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-message-generation ros-melodic-mongodb-store 15:24:54 RUN echo "ros-melodic-rospy: 1.14.11-1bionic.20210505.015811" && echo "ros-melodic-strands-navigation-msgs: 2.0.0-1bionic.20200420.134853" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-rospy ros-melodic-strands-navigation-msgs 15:24:54 RUN echo "ros-melodic-topological-navigation: 2.3.0-1bionic.20210715.134803" && echo "ros-melodic-visualization-msgs: 1.12.8-1bionic.20210505.011924" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-topological-navigation ros-melodic-visualization-msgs 15:24:54 15:24:54 15:24:54 USER buildfarm 15:24:54 ENTRYPOINT ["sh", "-c"] 15:24:54 CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic topological_utils --sourcedeb-dir /tmp/binarydeb"] 15:24:54 Mount the following volumes when running the container: 15:24:54 -v /tmp/ros_buildfarm:/tmp/ros_buildfarm:ro 15:24:54 -v /tmp/binarydeb:/tmp/binarydeb 15:24:54 + echo # END SECTION 15:24:54 # END SECTION
15:24:54 [Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins8701856589439291538.sh 15:24:54 + sleep 1 15:24:54 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 12453 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid 15:24:55 + echo # BEGIN SECTION: Build Dockerfile - build binarydeb
3. Build Dockerfile - build binarydeb

Hide Details

15:24:55 # BEGIN SECTION: Build Dockerfile - build binarydeb 15:24:55 + cd /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/docker_build_binarydeb 15:24:55 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 15:24:55 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 15:24:55 Check docker base image for updates: docker pull ubuntu:bionic 15:24:57 bionic: Pulling from library/ubuntu 15:24:58 Digest: sha256:3b8692dc4474d4f6043fae285676699361792ce1828e22b1b57367b5c05457e3 15:24:58 Status: Image is up to date for ubuntu:bionic 15:24:58 + docker build --force-rm -t binarydeb_build.melodic_ubuntu_bionic_amd64_topological_utils . 15:24:58 Sending build context to Docker daemon 22.53kB 15:24:58 Step 1/31 : FROM ubuntu:bionic 15:24:58 ---> fbf60236a8e3 15:24:58 Step 2/31 : VOLUME /var/cache/apt/archives 15:24:58 ---> Using cache 15:24:58 ---> aec862515235 15:24:58 Step 3/31 : ENV DEBIAN_FRONTEND noninteractive 15:24:58 ---> Using cache 15:24:58 ---> c9e25f0238a3 15:24:58 Step 4/31 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 15:24:58 ---> Using cache 15:24:58 ---> 49bfd53933a1 15:24:58 Step 5/31 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 15:24:58 ---> Using cache 15:24:58 ---> 2b132e2267f0 15:24:58 Step 6/31 : RUN locale-gen en_US.UTF-8 15:24:58 ---> Using cache 15:24:58 ---> f423ce7d1fb5 15:24:58 Step 7/31 : ENV LANG en_US.UTF-8 15:24:58 ---> Using cache 15:24:58 ---> 810803aaea06 15:24:58 Step 8/31 : ENV TZ GMT+00 15:24:58 ---> Using cache 15:24:58 ---> 810e234eab7b 15:24:58 Step 9/31 : RUN useradd -u 1002 -l -m buildfarm 15:24:58 ---> Using cache 15:24:58 ---> 7ca182242ec8 15:24:58 Step 10/31 : RUN mkdir /tmp/keys 15:24:58 ---> Using cache 15:24:58 ---> 829d28971b90 15:24:58 Step 11/31 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 15:24:58 ---> Using cache 15:24:58 ---> e63546efab0e 15:24:58 Step 12/31 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 15:24:58 ---> Using cache 15:24:58 ---> 014527010d31 15:24:58 Step 13/31 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\n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\n=p9Xy\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 15:24:58 ---> Using cache 15:24:58 ---> 40750027db7d 15:24:58 Step 14/31 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:24:58 ---> Using cache 15:24:58 ---> e372b3076b72 15:24:58 Step 15/31 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:24:58 ---> Using cache 15:24:58 ---> 977e754f4ba6 15:24:58 Step 16/31 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) 15:24:58 ---> Using cache 15:24:58 ---> 373f5a5fd5b1 15:24:58 Step 17/31 : RUN mkdir /tmp/wrapper_scripts 15:24:58 ---> Using cache 15:24:58 ---> 6653bb73bd24 15:24:58 Step 18/31 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py 15:24:58 ---> Using cache 15:24:58 ---> 9ba042a304d1 15:24:58 Step 19/31 : 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 15:24:58 ---> Using cache 15:24:58 ---> 6ff91a85acaa 15:24:58 Step 20/31 : RUN echo "2021-07-15 (+0000)" 15:24:58 ---> Using cache 15:24:58 ---> 314436a7b35d 15:24:58 Step 21/31 : 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 15:24:58 ---> Using cache 15:24:58 ---> e5dad9d68def 15:24:58 Step 22/31 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 15:24:58 ---> Using cache 15:24:58 ---> 80a3da87bf32 15:24:58 Step 23/31 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 15:24:58 ---> Using cache 15:24:58 ---> a0866f76a5ab 15:24:58 Step 24/31 : RUN echo "apt-src: 0.25.2" && echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src debhelper 15:24:58 ---> Using cache 15:24:58 ---> 46e6e328e215 15:24:58 Step 25/31 : RUN echo "ros-melodic-catkin: 0.7.29-1bionic.20201014.191449" && echo "ros-melodic-geometry-msgs: 1.12.8-1bionic.20210505.011050" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin ros-melodic-geometry-msgs 15:24:58 ---> Using cache 15:24:58 ---> 01a57e32fc24 15:24:58 Step 26/31 : RUN echo "ros-melodic-message-generation: 0.4.1-1bionic.20210505.005154" && echo "ros-melodic-mongodb-store: 0.5.2-1bionic.20210505.053231" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-message-generation ros-melodic-mongodb-store 15:24:58 ---> Using cache 15:24:58 ---> f2c66c21a538 15:24:58 Step 27/31 : RUN echo "ros-melodic-rospy: 1.14.11-1bionic.20210505.015811" && echo "ros-melodic-strands-navigation-msgs: 2.0.0-1bionic.20200420.134853" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-rospy ros-melodic-strands-navigation-msgs 15:24:58 ---> Using cache 15:24:58 ---> 80822ddda261 15:24:58 Step 28/31 : RUN echo "ros-melodic-topological-navigation: 2.3.0-1bionic.20210715.134803" && echo "ros-melodic-visualization-msgs: 1.12.8-1bionic.20210505.011924" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-topological-navigation ros-melodic-visualization-msgs 15:24:58 ---> Using cache 15:24:58 ---> 7c823b012f1d 15:24:58 Step 29/31 : USER buildfarm 15:24:58 ---> Using cache 15:24:58 ---> 5fca8abf8e9d 15:24:58 Step 30/31 : ENTRYPOINT sh -c 15:24:58 ---> Using cache 15:24:58 ---> 35526e93d93b 15:24:58 Step 31/31 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic topological_utils --sourcedeb-dir /tmp/binarydeb 15:24:58 ---> Using cache 15:24:58 ---> b1b40f2db3ea 15:24:58 Successfully built b1b40f2db3ea 15:24:58 Successfully tagged binarydeb_build.melodic_ubuntu_bionic_amd64_topological_utils:latest 15:24:58 + echo # END SECTION 15:24:58 # END SECTION
15:24:58 + echo # BEGIN SECTION: Run Dockerfile - build binarydeb
4. Run Dockerfile - build binarydeb

Hide Details

15:24:58 # BEGIN SECTION: Run Dockerfile - build binarydeb 15:24:58 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.melodic_ubuntu_bionic_amd64_topological_utils
4.1. build binarydeb

Hide Details

15:24:58 # BEGIN SUBSECTION: build binarydeb 15:24:58 Package 'ros-melodic-topological-utils' version: 2.3.0-1bionic.20210715.142448 15:25:01 Invoking 'apt-src build ros-melodic-topological-utils' in '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:04 I: Building in /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 .. 15:25:04 dpkg-buildpackage: info: source package ros-melodic-topological-utils 15:25:04 dpkg-buildpackage: info: source version 2.3.0-1bionic.20210715.142448 15:25:04 dpkg-buildpackage: info: source distribution bionic 15:25:04 dpkg-buildpackage: info: source changed by Jaime Pulido Fentanes <jpulidofentanes@lincoln.ac.uk> 15:25:04 dpkg-source --before-build ros-melodic-topological-utils-2.3.0 15:25:04 dpkg-buildpackage: info: host architecture amd64 15:25:04 dpkg-source: info: using options from ros-melodic-topological-utils-2.3.0/debian/source/options: --auto-commit 15:25:05 fakeroot debian/rules clean 15:25:05 dh clean -v --buildsystem=cmake 15:25:05 dh_testdir -O-v -O--buildsystem=cmake 15:25:05 dh_auto_clean -O-v -O--buildsystem=cmake 15:25:05 dh_clean -O-v -O--buildsystem=cmake 15:25:05 rm -f debian/debhelper-build-stamp 15:25:05 rm -rf debian/.debhelper/ 15:25:05 rm -f -- debian/ros-melodic-topological-utils.substvars debian/files 15:25:05 rm -fr -- debian/ros-melodic-topological-utils/ debian/tmp/ 15:25:05 find . \( \( \ 15:25:05 \( -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 \ 15:25:05 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 15:25:05 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 15:25:05 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 15:25:05 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 15:25:05 \) -exec rm -f {} + \) -o \ 15:25:05 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 15:25:05 debian/rules build 15:25:05 dh build -v --buildsystem=cmake 15:25:06 dh_testdir -O-v -O--buildsystem=cmake 15:25:06 dh_update_autotools_config -O-v -O--buildsystem=cmake 15:25:06 debian/rules override_dh_auto_configure 15:25:06 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:06 # In case we're installing to a non-standard location, look for a setup.sh 15:25:06 # in the install tree that was dropped by catkin, and source it. It will 15:25:06 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 15:25:06 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 15:25:06 dh_auto_configure -- \ 15:25:06 -DCATKIN_BUILD_BINARY_PACKAGE="1" \ 15:25:06 -DCMAKE_INSTALL_PREFIX="/opt/ros/melodic" \ 15:25:06 -DCMAKE_PREFIX_PATH="/opt/ros/melodic" 15:25:06 install -d obj-x86_64-linux-gnu 15:25:06 cd obj-x86_64-linux-gnu && cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=None -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LOCALSTATEDIR=/var -DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON -DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON -DCATKIN_BUILD_BINARY_PACKAGE=1 -DCMAKE_INSTALL_PREFIX=/opt/ros/melodic -DCMAKE_PREFIX_PATH=/opt/ros/melodic 15:25:06 -- The C compiler identification is GNU 7.5.0 15:25:06 -- The CXX compiler identification is GNU 7.5.0 15:25:06 -- Check for working C compiler: /usr/bin/cc 15:25:06 -- Check for working C compiler: /usr/bin/cc -- works 15:25:06 -- Detecting C compiler ABI info 15:25:07 -- Detecting C compiler ABI info - done 15:25:07 -- Detecting C compile features 15:25:07 -- Detecting C compile features - done 15:25:07 -- Check for working CXX compiler: /usr/bin/c++ 15:25:08 -- Check for working CXX compiler: /usr/bin/c++ -- works 15:25:08 -- Detecting CXX compiler ABI info 15:25:08 -- Detecting CXX compiler ABI info - done 15:25:08 -- Detecting CXX compile features 15:25:09 -- Detecting CXX compile features - done 15:25:09 -- Using CATKIN_DEVEL_PREFIX: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel 15:25:09 -- Using CMAKE_PREFIX_PATH: /opt/ros/melodic 15:25:09 -- This workspace overlays: /opt/ros/melodic 15:25:09 -- Found PythonInterp: /usr/bin/python2 (found suitable version "2.7.17", minimum required is "2") 15:25:09 -- Using PYTHON_EXECUTABLE: /usr/bin/python2 15:25:09 -- Using Debian Python package layout 15:25:09 -- Using empy: /usr/bin/empy 15:25:09 -- Using CATKIN_ENABLE_TESTING: ON 15:25:09 -- Skip enable_testing() when building binary package 15:25:09 -- Using CATKIN_TEST_RESULTS_DIR: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/test_results 15:25:10 -- Found gtest sources under '/usr/src/googletest': gtests will be built 15:25:10 -- Found gmock sources under '/usr/src/googletest': gmock will be built 15:25:10 -- Found PythonInterp: /usr/bin/python2 (found version "2.7.17") 15:25:10 -- Looking for pthread.h 15:25:10 -- Looking for pthread.h - found 15:25:10 -- Looking for pthread_create 15:25:10 -- Looking for pthread_create - not found 15:25:10 -- Looking for pthread_create in pthreads 15:25:11 -- Looking for pthread_create in pthreads - not found 15:25:11 -- Looking for pthread_create in pthread 15:25:11 -- Looking for pthread_create in pthread - found 15:25:11 -- Found Threads: TRUE 15:25:11 -- Using Python nosetests: /usr/bin/nosetests-2.7 15:25:11 -- catkin 0.7.29 15:25:11 -- BUILD_SHARED_LIBS is on 15:25:12 -- Using these message generators: gencpp;geneus;genlisp;gennodejs;genpy 15:25:13 -- topological_utils: 0 messages, 1 services 15:25:14 -- Configuring done 15:25:14 -- Generating done 15:25:14 CMake Warning: 15:25:14 Manually-specified variables were not used by the project: 15:25:14 15:25:14 CMAKE_EXPORT_NO_PACKAGE_REGISTRY 15:25:14 CMAKE_INSTALL_LOCALSTATEDIR 15:25:14 CMAKE_INSTALL_SYSCONFDIR 15:25:14 15:25:14 15:25:14 -- Build files have been written to: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu 15:25:14 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:14 debian/rules override_dh_auto_build 15:25:14 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:14 # In case we're installing to a non-standard location, look for a setup.sh 15:25:14 # in the install tree that was dropped by catkin, and source it. It will 15:25:14 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 15:25:14 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 15:25:14 dh_auto_build 15:25:14 cd obj-x86_64-linux-gnu && make -j1 15:25:14 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-topological-utils-2.3.0 -B/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 15:25:14 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 15:25:14 make -f CMakeFiles/Makefile2 all 15:25:14 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 make -f CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend 15:25:14 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= 15:25:14 Scanning dependencies of target std_msgs_generate_messages_nodejs 15:25:14 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 make -f CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/std_msgs_generate_messages_nodejs.dir/build 15:25:14 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_nodejs.dir/build'. 15:25:14 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 [ 0%] Built target std_msgs_generate_messages_nodejs 15:25:14 make -f CMakeFiles/_topological_utils_generate_messages_check_deps_NodeMetadata.dir/build.make CMakeFiles/_topological_utils_generate_messages_check_deps_NodeMetadata.dir/depend 15:25:14 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/_topological_utils_generate_messages_check_deps_NodeMetadata.dir/DependInfo.cmake --color= 15:25:14 Scanning dependencies of target _topological_utils_generate_messages_check_deps_NodeMetadata 15:25:14 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 make -f CMakeFiles/_topological_utils_generate_messages_check_deps_NodeMetadata.dir/build.make CMakeFiles/_topological_utils_generate_messages_check_deps_NodeMetadata.dir/build 15:25:14 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py topological_utils /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/srv/NodeMetadata.srv 15:25:14 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 [ 0%] Built target _topological_utils_generate_messages_check_deps_NodeMetadata 15:25:14 make -f CMakeFiles/topological_utils_generate_messages_nodejs.dir/build.make CMakeFiles/topological_utils_generate_messages_nodejs.dir/depend 15:25:14 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages_nodejs.dir/DependInfo.cmake --color= 15:25:14 Scanning dependencies of target topological_utils_generate_messages_nodejs 15:25:14 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 make -f CMakeFiles/topological_utils_generate_messages_nodejs.dir/build.make CMakeFiles/topological_utils_generate_messages_nodejs.dir/build 15:25:14 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 [ 14%] Generating Javascript code from topological_utils/NodeMetadata.srv 15:25:14 catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gennodejs/cmake/../../../lib/gennodejs/gen_nodejs.py /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/srv/NodeMetadata.srv -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -p topological_utils -o /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/share/gennodejs/ros/topological_utils/srv 15:25:14 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 [ 14%] Built target topological_utils_generate_messages_nodejs 15:25:14 make -f CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make CMakeFiles/std_msgs_generate_messages_lisp.dir/depend 15:25:14 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= 15:25:14 Scanning dependencies of target std_msgs_generate_messages_lisp 15:25:14 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 make -f CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make CMakeFiles/std_msgs_generate_messages_lisp.dir/build 15:25:14 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_lisp.dir/build'. 15:25:14 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 [ 14%] Built target std_msgs_generate_messages_lisp 15:25:14 make -f CMakeFiles/topological_utils_generate_messages_lisp.dir/build.make CMakeFiles/topological_utils_generate_messages_lisp.dir/depend 15:25:14 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages_lisp.dir/DependInfo.cmake --color= 15:25:14 Scanning dependencies of target topological_utils_generate_messages_lisp 15:25:14 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:14 make -f CMakeFiles/topological_utils_generate_messages_lisp.dir/build.make CMakeFiles/topological_utils_generate_messages_lisp.dir/build 15:25:14 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:15 [ 28%] Generating Lisp code from topological_utils/NodeMetadata.srv 15:25:15 catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genlisp/cmake/../../../lib/genlisp/gen_lisp.py /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/srv/NodeMetadata.srv -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -p topological_utils -o /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/share/common-lisp/ros/topological_utils/srv 15:25:15 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:15 [ 28%] Built target topological_utils_generate_messages_lisp 15:25:15 make -f CMakeFiles/std_msgs_generate_messages_eus.dir/build.make CMakeFiles/std_msgs_generate_messages_eus.dir/depend 15:25:15 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:15 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake --color= 15:25:15 Scanning dependencies of target std_msgs_generate_messages_eus 15:25:15 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:15 make -f CMakeFiles/std_msgs_generate_messages_eus.dir/build.make CMakeFiles/std_msgs_generate_messages_eus.dir/build 15:25:15 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:15 make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_eus.dir/build'. 15:25:15 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:15 [ 28%] Built target std_msgs_generate_messages_eus 15:25:15 make -f CMakeFiles/topological_utils_generate_messages_eus.dir/build.make CMakeFiles/topological_utils_generate_messages_eus.dir/depend 15:25:15 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:15 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages_eus.dir/DependInfo.cmake --color= 15:25:15 Scanning dependencies of target topological_utils_generate_messages_eus 15:25:15 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:15 make -f CMakeFiles/topological_utils_generate_messages_eus.dir/build.make CMakeFiles/topological_utils_generate_messages_eus.dir/build 15:25:15 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:15 [ 42%] Generating EusLisp code from topological_utils/NodeMetadata.srv 15:25:15 catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/srv/NodeMetadata.srv -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -p topological_utils -o /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/topological_utils/srv 15:25:15 [ 57%] Generating EusLisp manifest code for topological_utils 15:25:15 catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/geneus/cmake/../../../lib/geneus/gen_eus.py -m -o /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/share/roseus/ros/topological_utils topological_utils std_msgs 15:25:17 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:17 [ 57%] Built target topological_utils_generate_messages_eus 15:25:17 make -f CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make CMakeFiles/std_msgs_generate_messages_cpp.dir/depend 15:25:17 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:17 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= 15:25:17 Scanning dependencies of target std_msgs_generate_messages_cpp 15:25:17 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:17 make -f CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make CMakeFiles/std_msgs_generate_messages_cpp.dir/build 15:25:17 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:17 make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_cpp.dir/build'. 15:25:17 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:17 [ 57%] Built target std_msgs_generate_messages_cpp 15:25:17 make -f CMakeFiles/topological_utils_generate_messages_cpp.dir/build.make CMakeFiles/topological_utils_generate_messages_cpp.dir/depend 15:25:17 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:17 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages_cpp.dir/DependInfo.cmake --color= 15:25:17 Scanning dependencies of target topological_utils_generate_messages_cpp 15:25:17 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:17 make -f CMakeFiles/topological_utils_generate_messages_cpp.dir/build.make CMakeFiles/topological_utils_generate_messages_cpp.dir/build 15:25:17 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:17 [ 71%] Generating C++ code from topological_utils/NodeMetadata.srv 15:25:17 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 && /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/gencpp/cmake/../../../lib/gencpp/gen_cpp.py /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/srv/NodeMetadata.srv -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -p topological_utils -o /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/include/topological_utils -e /opt/ros/melodic/share/gencpp/cmake/.. 15:25:18 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 [ 71%] Built target topological_utils_generate_messages_cpp 15:25:18 make -f CMakeFiles/std_msgs_generate_messages_py.dir/build.make CMakeFiles/std_msgs_generate_messages_py.dir/depend 15:25:18 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake --color= 15:25:18 Scanning dependencies of target std_msgs_generate_messages_py 15:25:18 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 make -f CMakeFiles/std_msgs_generate_messages_py.dir/build.make CMakeFiles/std_msgs_generate_messages_py.dir/build 15:25:18 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_py.dir/build'. 15:25:18 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 [ 71%] Built target std_msgs_generate_messages_py 15:25:18 make -f CMakeFiles/topological_utils_generate_messages_py.dir/build.make CMakeFiles/topological_utils_generate_messages_py.dir/depend 15:25:18 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages_py.dir/DependInfo.cmake --color= 15:25:18 Scanning dependencies of target topological_utils_generate_messages_py 15:25:18 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 make -f CMakeFiles/topological_utils_generate_messages_py.dir/build.make CMakeFiles/topological_utils_generate_messages_py.dir/build 15:25:18 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 [ 85%] Generating Python code from SRV topological_utils/NodeMetadata 15:25:18 catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/gensrv_py.py /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/srv/NodeMetadata.srv -Istd_msgs:/opt/ros/melodic/share/std_msgs/cmake/../msg -p topological_utils -o /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/topological_utils/srv 15:25:18 [100%] Generating Python srv __init__.py for topological_utils 15:25:18 catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genpy/cmake/../../../lib/genpy/genmsg_py.py -o /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/topological_utils/srv --initpy 15:25:18 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 [100%] Built target topological_utils_generate_messages_py 15:25:18 make -f CMakeFiles/topological_utils_generate_messages.dir/build.make CMakeFiles/topological_utils_generate_messages.dir/depend 15:25:18 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages.dir/DependInfo.cmake --color= 15:25:18 Scanning dependencies of target topological_utils_generate_messages 15:25:18 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 make -f CMakeFiles/topological_utils_generate_messages.dir/build.make CMakeFiles/topological_utils_generate_messages.dir/build 15:25:18 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 make[4]: Nothing to be done for 'CMakeFiles/topological_utils_generate_messages.dir/build'. 15:25:18 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 [100%] Built target topological_utils_generate_messages 15:25:18 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles 0 15:25:18 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:18 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:18 debian/rules override_dh_auto_test 15:25:18 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:18 # In case we're installing to a non-standard location, look for a setup.sh 15:25:18 # in the install tree that was dropped by catkin, and source it. It will 15:25:19 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 15:25:19 echo -- Running tests. Even if one of them fails the build is not canceled. 15:25:19 -- Running tests. Even if one of them fails the build is not canceled. 15:25:19 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 15:25:19 dh_auto_test || true 15:25:19 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:19 fakeroot debian/rules binary 15:25:19 dh binary -v --buildsystem=cmake 15:25:19 dh_testroot -O-v -O--buildsystem=cmake 15:25:19 dh_prep -O-v -O--buildsystem=cmake 15:25:19 rm -f -- debian/ros-melodic-topological-utils.substvars 15:25:19 rm -fr -- debian/.debhelper/generated/ros-melodic-topological-utils/ debian/ros-melodic-topological-utils/ debian/tmp/ 15:25:19 dh_installdirs -O-v -O--buildsystem=cmake 15:25:19 install -d debian/ros-melodic-topological-utils 15:25:19 debian/rules override_dh_auto_install 15:25:19 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:19 # In case we're installing to a non-standard location, look for a setup.sh 15:25:19 # in the install tree that was dropped by catkin, and source it. It will 15:25:20 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 15:25:20 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 15:25:20 dh_auto_install 15:25:20 cd obj-x86_64-linux-gnu && make -j1 install DESTDIR=/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils AM_UPDATE_INFO_DIR=no 15:25:20 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-topological-utils-2.3.0 -B/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 15:25:20 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 15:25:20 make -f CMakeFiles/Makefile2 all 15:25:20 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make -f CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/std_msgs_generate_messages_nodejs.dir/depend 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_nodejs.dir/DependInfo.cmake --color= 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make -f CMakeFiles/std_msgs_generate_messages_nodejs.dir/build.make CMakeFiles/std_msgs_generate_messages_nodejs.dir/build 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_nodejs.dir/build'. 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 [ 0%] Built target std_msgs_generate_messages_nodejs 15:25:20 make -f CMakeFiles/_topological_utils_generate_messages_check_deps_NodeMetadata.dir/build.make CMakeFiles/_topological_utils_generate_messages_check_deps_NodeMetadata.dir/depend 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/_topological_utils_generate_messages_check_deps_NodeMetadata.dir/DependInfo.cmake --color= 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make -f CMakeFiles/_topological_utils_generate_messages_check_deps_NodeMetadata.dir/build.make CMakeFiles/_topological_utils_generate_messages_check_deps_NodeMetadata.dir/build 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 catkin_generated/env_cached.sh /usr/bin/python2 /opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py topological_utils /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/srv/NodeMetadata.srv 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 [ 0%] Built target _topological_utils_generate_messages_check_deps_NodeMetadata 15:25:20 make -f CMakeFiles/topological_utils_generate_messages_nodejs.dir/build.make CMakeFiles/topological_utils_generate_messages_nodejs.dir/depend 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages_nodejs.dir/DependInfo.cmake --color= 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make -f CMakeFiles/topological_utils_generate_messages_nodejs.dir/build.make CMakeFiles/topological_utils_generate_messages_nodejs.dir/build 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make[4]: Nothing to be done for 'CMakeFiles/topological_utils_generate_messages_nodejs.dir/build'. 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 [ 14%] Built target topological_utils_generate_messages_nodejs 15:25:20 make -f CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make CMakeFiles/std_msgs_generate_messages_lisp.dir/depend 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_lisp.dir/DependInfo.cmake --color= 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make -f CMakeFiles/std_msgs_generate_messages_lisp.dir/build.make CMakeFiles/std_msgs_generate_messages_lisp.dir/build 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_lisp.dir/build'. 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 [ 14%] Built target std_msgs_generate_messages_lisp 15:25:20 make -f CMakeFiles/topological_utils_generate_messages_lisp.dir/build.make CMakeFiles/topological_utils_generate_messages_lisp.dir/depend 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages_lisp.dir/DependInfo.cmake --color= 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make -f CMakeFiles/topological_utils_generate_messages_lisp.dir/build.make CMakeFiles/topological_utils_generate_messages_lisp.dir/build 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make[4]: Nothing to be done for 'CMakeFiles/topological_utils_generate_messages_lisp.dir/build'. 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 [ 28%] Built target topological_utils_generate_messages_lisp 15:25:20 make -f CMakeFiles/std_msgs_generate_messages_eus.dir/build.make CMakeFiles/std_msgs_generate_messages_eus.dir/depend 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_eus.dir/DependInfo.cmake --color= 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make -f CMakeFiles/std_msgs_generate_messages_eus.dir/build.make CMakeFiles/std_msgs_generate_messages_eus.dir/build 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_eus.dir/build'. 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 [ 28%] Built target std_msgs_generate_messages_eus 15:25:20 make -f CMakeFiles/topological_utils_generate_messages_eus.dir/build.make CMakeFiles/topological_utils_generate_messages_eus.dir/depend 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages_eus.dir/DependInfo.cmake --color= 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make -f CMakeFiles/topological_utils_generate_messages_eus.dir/build.make CMakeFiles/topological_utils_generate_messages_eus.dir/build 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make[4]: Nothing to be done for 'CMakeFiles/topological_utils_generate_messages_eus.dir/build'. 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 [ 57%] Built target topological_utils_generate_messages_eus 15:25:20 make -f CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make CMakeFiles/std_msgs_generate_messages_cpp.dir/depend 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_cpp.dir/DependInfo.cmake --color= 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make -f CMakeFiles/std_msgs_generate_messages_cpp.dir/build.make CMakeFiles/std_msgs_generate_messages_cpp.dir/build 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_cpp.dir/build'. 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 [ 57%] Built target std_msgs_generate_messages_cpp 15:25:20 make -f CMakeFiles/topological_utils_generate_messages_cpp.dir/build.make CMakeFiles/topological_utils_generate_messages_cpp.dir/depend 15:25:20 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages_cpp.dir/DependInfo.cmake --color= 15:25:20 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:20 make -f CMakeFiles/topological_utils_generate_messages_cpp.dir/build.make CMakeFiles/topological_utils_generate_messages_cpp.dir/build 15:25:21 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 make[4]: Nothing to be done for 'CMakeFiles/topological_utils_generate_messages_cpp.dir/build'. 15:25:21 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 [ 71%] Built target topological_utils_generate_messages_cpp 15:25:21 make -f CMakeFiles/std_msgs_generate_messages_py.dir/build.make CMakeFiles/std_msgs_generate_messages_py.dir/depend 15:25:21 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/std_msgs_generate_messages_py.dir/DependInfo.cmake --color= 15:25:21 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 make -f CMakeFiles/std_msgs_generate_messages_py.dir/build.make CMakeFiles/std_msgs_generate_messages_py.dir/build 15:25:21 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 make[4]: Nothing to be done for 'CMakeFiles/std_msgs_generate_messages_py.dir/build'. 15:25:21 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 [ 71%] Built target std_msgs_generate_messages_py 15:25:21 make -f CMakeFiles/topological_utils_generate_messages_py.dir/build.make CMakeFiles/topological_utils_generate_messages_py.dir/depend 15:25:21 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages_py.dir/DependInfo.cmake --color= 15:25:21 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 make -f CMakeFiles/topological_utils_generate_messages_py.dir/build.make CMakeFiles/topological_utils_generate_messages_py.dir/build 15:25:21 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 make[4]: Nothing to be done for 'CMakeFiles/topological_utils_generate_messages_py.dir/build'. 15:25:21 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 [100%] Built target topological_utils_generate_messages_py 15:25:21 make -f CMakeFiles/topological_utils_generate_messages.dir/build.make CMakeFiles/topological_utils_generate_messages.dir/depend 15:25:21 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles/topological_utils_generate_messages.dir/DependInfo.cmake --color= 15:25:21 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 make -f CMakeFiles/topological_utils_generate_messages.dir/build.make CMakeFiles/topological_utils_generate_messages.dir/build 15:25:21 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 make[4]: Nothing to be done for 'CMakeFiles/topological_utils_generate_messages.dir/build'. 15:25:21 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 [100%] Built target topological_utils_generate_messages 15:25:21 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/CMakeFiles 0 15:25:21 make -f CMakeFiles/Makefile2 preinstall 15:25:21 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 make[3]: Nothing to be done for 'preinstall'. 15:25:21 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 Install the project... 15:25:21 /usr/bin/cmake -P cmake_install.cmake 15:25:21 -- Install configuration: "None" 15:25:21 + cd /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 15:25:21 + mkdir -p /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages 15:25:21 + /usr/bin/env PYTHONPATH=/opt/ros/melodic/lib/python2.7/dist-packages:/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/lib/python2.7/dist-packages:/opt/ros/melodic/lib/python2.7/dist-packages:/tmp/ros_buildfarm: CATKIN_BINARY_DIR=/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu /usr/bin/python2 /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/setup.py build --build-base /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu install --root=/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils --install-layout=deb --prefix=/opt/ros/melodic --install-scripts=/opt/ros/melodic/bin 15:25:21 running build 15:25:21 running build_py 15:25:21 creating /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7 15:25:21 creating /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/topological_utils 15:25:21 copying src/topological_utils/nodes.py -> /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/topological_utils 15:25:21 copying src/topological_utils/__init__.py -> /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/topological_utils 15:25:21 copying src/topological_utils/queries.py -> /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/topological_utils 15:25:21 running install 15:25:21 running install_lib 15:25:21 creating /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils 15:25:21 copying /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/topological_utils/nodes.py -> /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils 15:25:21 copying /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/topological_utils/__init__.py -> /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils 15:25:21 copying /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/topological_utils/queries.py -> /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils 15:25:21 byte-compiling /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils/nodes.py to nodes.pyc 15:25:21 byte-compiling /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils/__init__.py to __init__.pyc 15:25:21 byte-compiling /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils/queries.py to queries.pyc 15:25:21 running install_egg_info 15:25:21 Writing /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils-2.3.0.egg-info 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/srv/NodeMetadata.srv 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/cmake/topological_utils-msg-paths.cmake 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/include/topological_utils 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/include/topological_utils/NodeMetadata.h 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/include/topological_utils/NodeMetadataRequest.h 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/include/topological_utils/NodeMetadataResponse.h 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/roseus/ros/topological_utils 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/roseus/ros/topological_utils/srv 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/roseus/ros/topological_utils/srv/NodeMetadata.l 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/roseus/ros/topological_utils/manifest.l 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/common-lisp/ros/topological_utils 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/common-lisp/ros/topological_utils/srv 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/common-lisp/ros/topological_utils/srv/_package.lisp 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/common-lisp/ros/topological_utils/srv/NodeMetadata.lisp 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/common-lisp/ros/topological_utils/srv/topological_utils-srv.asd 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/common-lisp/ros/topological_utils/srv/_package_NodeMetadata.lisp 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/gennodejs/ros/topological_utils 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/gennodejs/ros/topological_utils/srv 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/gennodejs/ros/topological_utils/srv/NodeMetadata.js 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/gennodejs/ros/topological_utils/srv/_index.js 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/gennodejs/ros/topological_utils/_index.js 15:25:21 Listing /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/topological_utils ... 15:25:21 Compiling /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/topological_utils/__init__.py ... 15:25:21 Listing /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/topological_utils/srv ... 15:25:21 Compiling /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/topological_utils/srv/_NodeMetadata.py ... 15:25:21 Compiling /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu/devel/lib/python2.7/dist-packages/topological_utils/srv/__init__.py ... 15:25:21 -- Up-to-date: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils/srv 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils/srv/_NodeMetadata.pyc 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils/srv/_NodeMetadata.py 15:25:21 -- Up-to-date: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils 15:25:21 -- Up-to-date: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils/srv 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils/srv/__init__.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/python2.7/dist-packages/topological_utils/srv/__init__.pyc 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/pkgconfig/topological_utils.pc 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/cmake/topological_utils-msg-extras.cmake 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/cmake/topological_utilsConfig.cmake 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/cmake/topological_utilsConfig-version.cmake 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/package.xml 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/add_content.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/add_edge.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/add_node.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/add_node_tags.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/check_map 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/crop_map.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/dummy_topological_navigation.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/draw_predicted_map.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/edge_length_analysis.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/evaluate_predictions.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/insert_empty_map.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/insert_map.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/joy_add_node.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/joy_add_waypoint.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/list_maps 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/load_yaml_map.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/load_json_map.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/map_export.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/map_to_json.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/map_to_yaml.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/migrate.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/node_rm.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/node_metadata.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/plot_topo_map.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/plot_yaml.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/print_nav_stats.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/rm_map_from_db.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/remove_node_tags.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/rename_node 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/tmap_from_waypoints.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/tmap_to_yaml.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/topological_map_update.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/visualise_map.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/lib/topological_utils/waypoints_to_yaml_tmap.py 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/launch 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/launch/create_topological_map.launch 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/launch/dummy_topological_navigation.launch 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/launch/mapping.launch 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/launch/topological_prediction_test.launch 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/launch/empty_topological_map.launch 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/support 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/support/map_edition.rviz 15:25:21 -- Installing: /tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils/opt/ros/melodic/share/topological_utils/support/empty.tmap 15:25:21 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu' 15:25:21 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:21 dh_install -O-v -O--buildsystem=cmake 15:25:21 install -d debian/.debhelper/generated/ros-melodic-topological-utils 15:25:21 dh_installdocs -O-v -O--buildsystem=cmake 15:25:21 install -d debian/ros-melodic-topological-utils/usr/share/doc/ros-melodic-topological-utils 15:25:21 dh_installchangelogs -O-v -O--buildsystem=cmake 15:25:22 install -p -m0644 debian/changelog debian/ros-melodic-topological-utils/usr/share/doc/ros-melodic-topological-utils/changelog.Debian 15:25:22 dh_installexamples -O-v -O--buildsystem=cmake 15:25:22 dh_installman -O-v -O--buildsystem=cmake 15:25:22 dh_installcatalogs -O-v -O--buildsystem=cmake 15:25:22 dh_installcron -O-v -O--buildsystem=cmake 15:25:22 dh_installdebconf -O-v -O--buildsystem=cmake 15:25:22 install -d debian/ros-melodic-topological-utils/DEBIAN 15:25:22 dh_installemacsen -O-v -O--buildsystem=cmake 15:25:22 dh_installifupdown -O-v -O--buildsystem=cmake 15:25:22 dh_installinfo -O-v -O--buildsystem=cmake 15:25:22 dh_installinit -O-v -O--buildsystem=cmake 15:25:22 dh_installmenu -O-v -O--buildsystem=cmake 15:25:22 dh_installmime -O-v -O--buildsystem=cmake 15:25:22 dh_installmodules -O-v -O--buildsystem=cmake 15:25:22 dh_installlogcheck -O-v -O--buildsystem=cmake 15:25:23 dh_installlogrotate -O-v -O--buildsystem=cmake 15:25:23 dh_installpam -O-v -O--buildsystem=cmake 15:25:23 dh_installppp -O-v -O--buildsystem=cmake 15:25:23 dh_installudev -O-v -O--buildsystem=cmake 15:25:23 dh_installgsettings -O-v -O--buildsystem=cmake 15:25:23 dh_bugfiles -O-v -O--buildsystem=cmake 15:25:23 dh_ucf -O-v -O--buildsystem=cmake 15:25:23 dh_lintian -O-v -O--buildsystem=cmake 15:25:23 dh_gconf -O-v -O--buildsystem=cmake 15:25:23 dh_icons -O-v -O--buildsystem=cmake 15:25:23 dh_perl -O-v -O--buildsystem=cmake 15:25:23 dh_usrlocal -O-v -O--buildsystem=cmake 15:25:23 dh_link -O-v -O--buildsystem=cmake 15:25:23 dh_installwm -O-v -O--buildsystem=cmake 15:25:23 dh_installxfonts -O-v -O--buildsystem=cmake 15:25:23 dh_strip_nondeterminism -O-v -O--buildsystem=cmake 15:25:24 dh_compress -O-v -O--buildsystem=cmake 15:25:24 cd debian/ros-melodic-topological-utils 15:25:24 chmod a-x usr/share/doc/ros-melodic-topological-utils/changelog.Debian 15:25:24 gzip -9nf usr/share/doc/ros-melodic-topological-utils/changelog.Debian 15:25:24 cd '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:24 dh_fixperms -O-v -O--buildsystem=cmake 15:25:24 find debian/ros-melodic-topological-utils -true -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 15:25:24 find debian/ros-melodic-topological-utils ! -type l -a -true -a -true -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s 15:25:24 find debian/ros-melodic-topological-utils/usr/share/doc -type f -a -true -a ! -regex 'debian/ros-melodic-topological-utils/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 15:25:24 find debian/ros-melodic-topological-utils/usr/share/doc -type d -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0755 15:25:24 find debian/ros-melodic-topological-utils -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 15:25:24 dh_missing -O-v -O--buildsystem=cmake 15:25:24 dh_strip -O-v -O--buildsystem=cmake 15:25:24 dh_makeshlibs -O-v -O--buildsystem=cmake 15:25:24 rm -f debian/ros-melodic-topological-utils/DEBIAN/shlibs 15:25:24 debian/rules override_dh_shlibdeps 15:25:24 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:24 # In case we're installing to a non-standard location, look for a setup.sh 15:25:24 # in the install tree that was dropped by catkin, and source it. It will 15:25:24 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 15:25:24 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 15:25:24 dh_shlibdeps -l/tmp/binarydeb/ros-melodic-topological-utils-2.3.0/debian/ros-melodic-topological-utils//opt/ros/melodic/lib/ 15:25:25 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-topological-utils-2.3.0' 15:25:25 dh_installdeb -O-v -O--buildsystem=cmake 15:25:25 dh_gencontrol -O-v -O--buildsystem=cmake 15:25:25 echo misc:Depends= >> debian/ros-melodic-topological-utils.substvars 15:25:25 echo misc:Pre-Depends= >> debian/ros-melodic-topological-utils.substvars 15:25:25 dpkg-gencontrol -pros-melodic-topological-utils -ldebian/changelog -Tdebian/ros-melodic-topological-utils.substvars -Pdebian/ros-melodic-topological-utils -UMulti-Arch 15:25:25 dpkg-gencontrol: warning: Depends field of package ros-melodic-topological-utils: unknown substitution variable ${shlibs:Depends} 15:25:25 chmod 0644 -- debian/ros-melodic-topological-utils/DEBIAN/control 15:25:25 chown 0:0 -- debian/ros-melodic-topological-utils/DEBIAN/control 15:25:25 dh_md5sums -O-v -O--buildsystem=cmake 15:25:25 (cd debian/ros-melodic-topological-utils >/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 15:25:25 chmod 0644 -- debian/ros-melodic-topological-utils/DEBIAN/md5sums 15:25:25 chown 0:0 -- debian/ros-melodic-topological-utils/DEBIAN/md5sums 15:25:25 dh_builddeb -O-v -O--buildsystem=cmake 15:25:25 dpkg-deb --build debian/ros-melodic-topological-utils .. 15:25:25 dpkg-deb: building package 'ros-melodic-topological-utils' in '../ros-melodic-topological-utils_2.3.0-1bionic.20210715.142448_amd64.deb'. 15:25:26 dpkg-genbuildinfo --build=binary 15:25:27 dpkg-genchanges --build=binary >../ros-melodic-topological-utils_2.3.0-1bionic.20210715.142448_amd64.changes 15:25:27 dpkg-genchanges: info: binary-only upload (no source code included) 15:25:27 dpkg-source --after-build ros-melodic-topological-utils-2.3.0 15:25:27 dpkg-source: info: using options from ros-melodic-topological-utils-2.3.0/debian/source/options: --auto-commit 15:25:27 dpkg-buildpackage: info: binary-only upload (no source included) 15:25:27 I: Successfully built in /tmp/binarydeb/ros-melodic-topological-utils-2.3.0 15:25:27 # END SUBSECTION
15:25:28 + echo # END SECTION 15:25:28 # END SECTION
15:25:28 [Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins2411061055668921821.sh 15:25:28 + [ false = false ] 15:25:28 + echo # BEGIN SECTION: Clean up to save disk space on agents
5. Clean up to save disk space on agents

Hide Details

15:25:28 # BEGIN SECTION: Clean up to save disk space on agents 15:25:28 + chmod -R u+w /home/jenkins-slave/workspace/Mbin_uB64__topological_utils__ubuntu_bionic_amd64__binary/binarydeb 15:25:28 + rm -fr binarydeb/ros-melodic-topological-utils-2.3.0/CHANGELOG.rst binarydeb/ros-melodic-topological-utils-2.3.0/CMakeLists.txt binarydeb/ros-melodic-topological-utils-2.3.0/LICENSE binarydeb/ros-melodic-topological-utils-2.3.0/debian binarydeb/ros-melodic-topological-utils-2.3.0/launch binarydeb/ros-melodic-topological-utils-2.3.0/obj-x86_64-linux-gnu binarydeb/ros-melodic-topological-utils-2.3.0/package.xml binarydeb/ros-melodic-topological-utils-2.3.0/scripts binarydeb/ros-melodic-topological-utils-2.3.0/setup.py binarydeb/ros-melodic-topological-utils-2.3.0/src binarydeb/ros-melodic-topological-utils-2.3.0/srv binarydeb/ros-melodic-topological-utils-2.3.0/support 15:25:28 + echo # END SECTION 15:25:28 # END SECTION
15:25:28 SSH: Connecting from host [lcas-buildfarm-slave-1] 15:25:28 SSH: Connecting with configuration [repo] ... 15:25:29 SSH: Disconnecting configuration [repo] ... 15:25:29 SSH: Transferred 2 file(s) 15:25:29 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 15:25:29 Waiting for the completion of Mrel_import-package 15:25:29 Mrel_import-package #973 started. 15:25:39 Mrel_import-package #973 completed. Result was SUCCESS 15:25:39 $ ssh-agent -k 15:25:39 unset SSH_AUTH_SOCK; 15:25:39 unset SSH_AGENT_PID; 15:25:39 echo Agent pid 10572 killed; 15:25:39 [ssh-agent] Stopped. 15:25:39 [description-setter] Description set: 2.3.0-1bionic.20210715.142448 15:25:39 Triggering a new build of Mrel_sync-packages-to-testing_bionic_amd64 15:25:39 Triggering a new build of Mbin_uB64__strands_navigation__ubuntu_bionic_amd64__binary 15:25:39 Triggering a new build of Mbin_uB64__task_executor__ubuntu_bionic_amd64__binary 15:25:39 Finished: SUCCESS