SuccessConsole Output

19:03:10 Started by upstream project "Msrc_uB__mqtt_bridge__ubuntu_bionic__source" build number 2
19:03:10 originally caused by:
19:03:10  Started by user Marc Hanheide
19:03:10 Running as SYSTEM
19:03:10 Building remotely on build client 3a (slave buildslave indigo_devel_default buildagent) in workspace /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary
19:03:10 [ssh-agent] Looking for ssh-agent implementation...
19:03:10 [ssh-agent]   Exec ssh-agent (binary ssh-agent on a remote machine)
19:03:10 $ ssh-agent
19:03:10 SSH_AUTH_SOCK=/tmp/ssh-x3KKLHp0gTF4/agent.5115
19:03:10 SSH_AGENT_PID=5117
19:03:10 [ssh-agent] Started.
19:03:10 Running ssh-add (command line suppressed)
19:03:10 Identity added: /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary@tmp/private_key_8847868098948929776.key (/home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary@tmp/private_key_8847868098948929776.key)
19:03:10 [ssh-agent] Using credentials jenkins-slave
19:03:10 
1. Check upstream projects

Hide Details

19:03:10 # BEGIN SECTION: Check upstream projects 19:03:10 Verify that no recursive upstream project is broken: 19:03:10 19:03:10 - 'Msrc_uB__mqtt_bridge__ubuntu_bionic__source' build '2' has result 'SUCCESS' 19:03:10 All recursive upstream projects are (un)stable 19:03:10 # END SECTION
19:03:10
2. Check free disk space

Hide Details

19:03:10 # BEGIN SECTION: Check free disk space 19:03:10 Usable disk space = 55595851776 bytes 19:03:10 Free space threshold = 5368709120 bytes 19:03:10 # END SECTION
19:03:10 [Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins1112953359421555837.sh 19:03:10 + echo # BEGIN SECTION: docker version
3. docker version

Hide Details

19:03:10 # BEGIN SECTION: docker version 19:03:10 + docker version 19:03:10 Client: 19:03:10 Version: 1.9.1 19:03:10 API version: 1.21 19:03:10 Go version: go1.4.2 19:03:10 Git commit: a34a1d5 19:03:10 Built: Fri Nov 20 13:12:04 UTC 2015 19:03:10 OS/Arch: linux/amd64 19:03:10 19:03:10 Server: 19:03:10 Version: 1.9.1 19:03:10 API version: 1.21 19:03:10 Go version: go1.4.2 19:03:10 Git commit: a34a1d5 19:03:10 Built: Fri Nov 20 13:12:04 UTC 2015 19:03:10 OS/Arch: linux/amd64 19:03:10 + echo # END SECTION 19:03:10 # END SECTION
19:03:10 + echo # BEGIN SECTION: docker info
4. docker info

Hide Details

19:03:10 # BEGIN SECTION: docker info 19:03:10 + docker info 19:03:10 Containers: 131 19:03:10 Images: 1607 19:03:10 Server Version: 1.9.1 19:03:10 Storage Driver: aufs 19:03:10 Root Dir: /var/lib/docker/aufs 19:03:10 Backing Filesystem: extfs 19:03:10 Dirs: 2014 19:03:10 Dirperm1 Supported: false 19:03:10 Execution Driver: native-0.2 19:03:10 Logging Driver: json-file 19:03:10 Kernel Version: 3.13.0-29-generic 19:03:10 Operating System: Ubuntu 14.04 LTS 19:03:10 CPUs: 2 19:03:10 Total Memory: 3.861 GiB 19:03:10 Name: lcas-buildfarm-slave-3 19:03:10 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE 19:03:10 WARNING: No swap limit support 19:03:10 + echo # END SECTION 19:03:10 # END SECTION
19:03:10 [Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins8881452028578094268.sh 19:03:10 + echo # BEGIN SECTION: Check docker status
5. Check docker status

Hide Details

19:03:10 # BEGIN SECTION: Check docker status 19:03:10 + echo Testing trivial docker invocation... 19:03:10 Testing trivial docker invocation... 19:03:10 + docker run --rm ubuntu:bionic true 19:03:11 + echo 'docker run' returned 0 19:03:11 'docker run' returned 0 19:03:11 docker seems operational, continuing 19:03:11 [Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins7464865788783654430.sh 19:03:11 + echo # END SECTION 19:03:11 # END SECTION
19:03:11 [Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins6709062825103388063.sh 19:03:11 + echo # BEGIN SECTION: Embed wrapper scripts
6. Embed wrapper scripts

Hide Details

19:03:11 # BEGIN SECTION: Embed wrapper scripts 19:03:11 + rm -fr wrapper_scripts 19:03:11 + mkdir wrapper_scripts 19:03:11 + printf #!/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()) 19:03:11 + echo # END SECTION 19:03:11 # END SECTION
19:03:11 [Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins266085623477663381.sh 19:03:11 + echo # BEGIN SECTION: Clone ros_buildfarm
7. Clone ros_buildfarm

Hide Details

19:03:11 # BEGIN SECTION: Clone ros_buildfarm 19:03:11 + rm -fr ros_buildfarm 19:03:11 + python3 -u wrapper_scripts/git.py clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm 19:03:11 Invoking 'git clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 19:03:11 Cloning into 'ros_buildfarm'... 19:03:14 + git -C ros_buildfarm --no-pager log -n 1 19:03:14 commit 5847ba20c70a194f12d32fd0ad5364bed338f8e2 19:03:14 Author: Marc Hanheide <marc@hanheide.net> 19:03:14 Date: Fri Jun 5 12:50:43 2020 +0100 19:03:14 19:03:14 added openssl 19:03:14 + rm -fr ros_buildfarm/.git 19:03:14 + rm -fr ros_buildfarm/doc 19:03:14 + echo # END SECTION 19:03:14 # END SECTION
19:03:14 [Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins3494273061254604821.sh 19:03:14 + echo # BEGIN SECTION: Write PGP repository keys
8. Write PGP repository keys

Hide Details

19:03:14 # BEGIN SECTION: Write PGP repository keys 19:03:14 + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/keys 19:03:14 + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/keys/0.key /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/keys/1.key 19:03:14 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 19:03:14 Version: GnuPG v1.4.11 (GNU/Linux) 19:03:14 19:03:14 mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn 19:03:14 MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf 19:03:14 xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw 19:03:14 kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv 19:03:14 /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh 19:03:14 EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg 19:03:14 KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD 19:03:14 BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX 19:03:14 yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 19:03:14 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy 19:03:14 JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T 19:03:14 Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ 19:03:14 Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ 19:03:14 cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM 19:03:14 hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 19:03:14 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm 19:03:14 Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 19:03:14 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb 19:03:14 oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC 19:03:14 AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U 19:03:14 NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 19:03:14 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU 19:03:14 M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N 19:03:14 l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ 19:03:14 Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== 19:03:14 =nFcN 19:03:14 -----END PGP PUBLIC KEY BLOCK----- 19:03:14 19:03:14 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 19:03:14 Version: SKS 1.1.6 19:03:14 Comment: Hostname: keyserver.ubuntu.com 19:03:14 19:03:14 mQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L 19:03:14 /HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw 19:03:14 DuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47 19:03:14 ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+ 19:03:14 d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS 19:03:14 6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN 19:03:14 qoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL 19:03:14 8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/ 19:03:14 /SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz 19:03:14 vz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90 19:03:14 aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu 19:03:14 1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur 19:03:14 F8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN 19:03:14 KARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s 19:03:14 NGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv 19:03:14 ZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO 19:03:14 K+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo 19:03:14 bC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs 19:03:14 Fn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s 19:03:14 QNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR 19:03:14 hE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp 19:03:14 PWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd 19:03:14 =4Ofr 19:03:14 -----END PGP PUBLIC KEY BLOCK----- 19:03:14 19:03:14 + echo # END SECTION 19:03:14 # END SECTION
19:03:14 [Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins8825139384688751741.sh 19:03:14 + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_generating_docker 19:03:14 + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_generating_docker 19:03:14 + sleep 1 19:03:14 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 5230 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_generating_docker/docker.cid 19:03:15 + echo # BEGIN SECTION: Generate Dockerfile - binarydeb task
9. Generate Dockerfile - binarydeb task

Hide Details

19:03:15 # BEGIN SECTION: Generate Dockerfile - binarydeb task 19:03:15 + export TZ=GMT+00 19:03:15 + export PYTHONPATH=/home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/ros_buildfarm: 19:03:15 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/release/run_binarydeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic mqtt_bridge ubuntu bionic amd64 --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/keys/0.key /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/keys/1.key --target-repository http://10.210.9.154/ubuntu/building --binarydeb-dir /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/binarydeb --dockerfile-dir /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_generating_docker --env-vars --append-timestamp 19:03:15 Using the following distribution repositories: 19:03:15 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/keys/0.key) 19:03:15 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/keys/1.key) 19:03:15 Generating Dockerfile '/home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_generating_docker/Dockerfile': 19:03:15 # generated from release/binarydeb_create_task.Dockerfile.em 19:03:15 19:03:15 FROM ubuntu:bionic 19:03:15 19:03:15 VOLUME ["/var/cache/apt/archives"] 19:03:15 19:03:15 ENV DEBIAN_FRONTEND noninteractive 19:03:15 19:03:15 19:03:15 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 19:03:15 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 19:03:15 RUN locale-gen en_US.UTF-8 19:03:15 ENV LANG en_US.UTF-8 19:03:15 ENV TZ GMT+00 19:03:15 19:03:15 19:03:15 RUN useradd -u 1002 -l -m buildfarm 19:03:15 19:03:15 RUN mkdir /tmp/keys 19:03:15 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 19:03:15 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 19:03:15 RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 19:03:15 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:03:15 RUN echo deb-src http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:03:15 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:03:15 19:03:15 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)) 19:03:15 19:03:15 RUN mkdir /tmp/wrapper_scripts 19:03:15 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 19:03:15 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 19:03:15 19:03:15 # automatic invalidation once every day 19:03:15 RUN echo "2021-01-29 (+0000)" 19:03:15 19:03:15 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 19:03:15 19:03:15 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 19:03:15 19:03:15 # always invalidate to actually have the latest apt repo state 19:03:15 RUN echo "2021-01-29 19:03:15 +0000" 19:03:15 RUN python3 -u /tmp/wrapper_scripts/apt.py update 19:03:15 19:03:15 USER buildfarm 19:03:15 ENTRYPOINT ["sh", "-c"] 19:03:15 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 mqtt_bridge --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic mqtt_bridge --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 mqtt_bridge 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"] 19:03:15 + echo # END SECTION 19:03:15 # END SECTION
19:03:15 + echo # BEGIN SECTION: Build Dockerfile - binarydeb task
10. Build Dockerfile - binarydeb task

Hide Details

19:03:15 # BEGIN SECTION: Build Dockerfile - binarydeb task 19:03:15 + cd /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_generating_docker 19:03:15 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 19:03:15 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 19:03:15 Check docker base image for updates: docker pull ubuntu:bionic 19:03:16 bionic: Pulling from library/ubuntu 19:03:16 Digest: sha256:37f8f08b889896172533625fac8fa2c442e075b5e66ff91bf01332fe76bfc3d4 19:03:16 Status: Image is up to date for ubuntu:bionic 19:03:16 + docker build --force-rm -t binarydeb_task_generation.melodic_ubuntu_bionic_amd64_mqtt_bridge . 19:03:16 Sending build context to Docker daemon 20.99 kB Sending build context to Docker daemon 20.99 kB 19:03:16 Step 1 : FROM ubuntu:bionic 19:03:16 ---> 8d7db987919d 19:03:16 Step 2 : VOLUME /var/cache/apt/archives 19:03:17 ---> Using cache 19:03:17 ---> 7142699436c4 19:03:17 Step 3 : ENV DEBIAN_FRONTEND noninteractive 19:03:17 ---> Using cache 19:03:17 ---> 15ca864bdc10 19:03:17 Step 4 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 19:03:17 ---> Using cache 19:03:17 ---> 74d1e4b04e52 19:03:17 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 19:03:18 ---> Using cache 19:03:18 ---> 5c6af94dde9b 19:03:18 Step 6 : RUN locale-gen en_US.UTF-8 19:03:18 ---> Using cache 19:03:18 ---> 7c8f1f214ed0 19:03:18 Step 7 : ENV LANG en_US.UTF-8 19:03:19 ---> Using cache 19:03:19 ---> 5009b559b63e 19:03:19 Step 8 : ENV TZ GMT+00 19:03:19 ---> Using cache 19:03:19 ---> a4082596e984 19:03:19 Step 9 : RUN useradd -u 1002 -l -m buildfarm 19:03:19 ---> Using cache 19:03:19 ---> 10a971836ceb 19:03:19 Step 10 : RUN mkdir /tmp/keys 19:03:20 ---> Using cache 19:03:20 ---> 2cadc7e71436 19:03:20 Step 11 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 19:03:20 ---> Using cache 19:03:20 ---> 15bd1918bed9 19:03:20 Step 12 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 19:03:21 ---> Using cache 19:03:21 ---> 80c5bda0b573 19:03:21 Step 13 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 19:03:21 ---> Using cache 19:03:21 ---> b223c8791f43 19:03:21 Step 14 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:03:21 ---> Using cache 19:03:21 ---> 108c42dffe3b 19:03:21 Step 15 : RUN echo deb-src http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:03:22 ---> Using cache 19:03:22 ---> 0f24eedc68b8 19:03:22 Step 16 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:03:22 ---> Using cache 19:03:22 ---> 9b2334d99e3a 19:03:22 Step 17 : 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)) 19:03:22 ---> Using cache 19:03:22 ---> ad1d25d7b707 19:03:22 Step 18 : RUN mkdir /tmp/wrapper_scripts 19:03:23 ---> Using cache 19:03:23 ---> 9ff3c3723ff2 19:03:23 Step 19 : 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 19:03:23 ---> Using cache 19:03:23 ---> 71191e52a7d3 19:03:23 Step 20 : 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 19:03:24 ---> Using cache 19:03:24 ---> 001e8b3c33a6 19:03:24 Step 21 : RUN echo "2021-01-29 (+0000)" 19:03:24 ---> Using cache 19:03:24 ---> ff6db35ab66e 19:03:24 Step 22 : 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 19:03:24 ---> Using cache 19:03:24 ---> 837015da8e7b 19:03:24 Step 23 : 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 19:03:25 ---> Using cache 19:03:25 ---> 38e16dac2b62 19:03:25 Step 24 : RUN echo "2021-01-29 19:03:15 +0000" 19:03:25 ---> Running in cdf9558bd2a4 19:03:26 2021-01-29 19:03:15 +0000 19:03:26 ---> db7d65914dd3 19:03:26 Removing intermediate container cdf9558bd2a4 19:03:26 Step 25 : RUN python3 -u /tmp/wrapper_scripts/apt.py update 19:03:26 ---> Running in 535268b7be2d 19:03:26 Invoking 'apt-get update' 19:03:27 Get:1 http://10.210.9.154/ubuntu/building bionic InRelease [2,826 B] 19:03:27 Hit:2 http://archive.ubuntu.com/ubuntu bionic InRelease 19:03:27 Get:3 http://archive.ubuntu.com/ubuntu bionic-updates InRelease [88.7 kB] 19:03:27 Get:4 http://archive.ubuntu.com/ubuntu bionic-backports InRelease [74.6 kB] 19:03:27 Get:5 http://archive.ubuntu.com/ubuntu bionic-security InRelease [88.7 kB] 19:03:27 Hit:6 http://packages.ros.org/ros/ubuntu bionic InRelease 19:03:27 Get:7 http://10.210.9.154/ubuntu/building bionic/main Sources [161 kB] 19:03:27 Hit:8 http://security.ubuntu.com/ubuntu bionic-security InRelease 19:03:27 Get:9 http://10.210.9.154/ubuntu/building bionic/main amd64 Packages [193 kB] 19:03:27 Get:10 http://archive.ubuntu.com/ubuntu bionic-updates/main amd64 Packages [2,348 kB] 19:03:27 Get:11 http://archive.ubuntu.com/ubuntu bionic-updates/universe amd64 Packages [2,156 kB] 19:03:28 Fetched 5,113 kB in 1s (4,004 kB/s) 19:03:30 Reading package lists... 19:03:30 ---> c46e34cd3df3 19:03:30 Removing intermediate container 535268b7be2d 19:03:30 Step 26 : USER buildfarm 19:03:30 ---> Running in 973e6a358379 19:03:30 ---> 13b5e803c635 19:03:30 Removing intermediate container 973e6a358379 19:03:30 Step 27 : ENTRYPOINT sh -c 19:03:31 ---> Running in 6ae0ff7b2123 19:03:31 ---> aca784ace4c2 19:03:31 Removing intermediate container 6ae0ff7b2123 19:03:31 Step 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 mqtt_bridge --sourcedeb-dir /tmp/binarydeb && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/append_build_timestamp.py melodic mqtt_bridge --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 mqtt_bridge 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 19:03:31 ---> Running in 824c9419da58 19:03:31 ---> 60e3c9c32828 19:03:31 Removing intermediate container 824c9419da58 19:03:31 Successfully built 60e3c9c32828 19:03:31 + echo # END SECTION 19:03:31 # END SECTION
19:03:31 + echo # BEGIN SECTION: Run Dockerfile - binarydeb task
11. Run Dockerfile - binarydeb task

Hide Details

19:03:31 # BEGIN SECTION: Run Dockerfile - binarydeb task 19:03:31 + [ -f /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/binarydeb ] 19:03:31 + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/binarydeb 19:03:31 + rm -fr /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_build_binarydeb 19:03:31 + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/binarydeb 19:03:31 + mkdir -p /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_build_binarydeb 19:03:31 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_generating_docker/docker.cid -e=TRAVIS= -e=ROS_BUILDFARM_PULL_REQUEST_BRANCH= -v /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__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_mqtt_bridge
11.1. get sourcedeb

Hide Details

19:03:32 # BEGIN SUBSECTION: get sourcedeb 19:03:38 Invoking '/usr/bin/python3 /tmp/ros_buildfarm/ros_buildfarm/wrapper/apt.py source --download-only --only-source ros-melodic-mqtt-bridge=1.0.1-1bionic' 19:03:40 Invoking 'apt-get source --download-only --only-source ros-melodic-mqtt-bridge=1.0.1-1bionic' 19:03:40 Reading package lists... 19:03:40 Need to get 14.8 kB of source archives. 19:03:40 Get:1 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-mqtt-bridge 1.0.1-1bionic (dsc) [1,035 B] 19:03:40 Get:2 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-mqtt-bridge 1.0.1-1bionic (tar) [11.4 kB] 19:03:40 Get:3 http://10.210.9.154/ubuntu/building bionic/main ros-melodic-mqtt-bridge 1.0.1-1bionic (diff) [2,352 B] 19:03:40 Fetched 14.8 kB in 0s (1,186 kB/s) 19:03:40 Download complete and in download only mode 19:03:40 Invoking 'dpkg-source -x ros-melodic-mqtt-bridge_1.0.1-1bionic.dsc' 19:03:40 dpkg-source: warning: extracting unsigned source package (ros-melodic-mqtt-bridge_1.0.1-1bionic.dsc) 19:03:40 dpkg-source: info: extracting ros-melodic-mqtt-bridge in ros-melodic-mqtt-bridge-1.0.1 19:03:40 dpkg-source: info: unpacking ros-melodic-mqtt-bridge_1.0.1.orig.tar.gz 19:03:40 dpkg-source: info: unpacking ros-melodic-mqtt-bridge_1.0.1-1bionic.debian.tar.xz 19:03:40 Package maintainer emails: marc@hanheide.net 19:03:40 # END SUBSECTION
11.2. append build timestamp

Hide Details

19:03:40 # BEGIN SUBSECTION: append build timestamp 19:03:40 Invoking 'debchange -v 1.0.1-1bionic.20210129.190340 -p -D bionic -u high -m Append timestamp when binarydeb was built.' in '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:03:41 # END SUBSECTION
19:03:44 Looking for the '.dsc' file of package 'ros-melodic-mqtt-bridge' with version '1.0.1-1' 19:03:46 Using the following distribution repositories: 19:03:46 http://10.210.9.154/ubuntu/building (/tmp/keys/0.key) 19:03:46 http://packages.ros.org/ros/ubuntu (/tmp/keys/1.key) 19:03:46 Generating Dockerfile '/tmp/docker_build_binarydeb/Dockerfile': 19:03:46 # generated from release/binarydeb_task.Dockerfile.em 19:03:46 19:03:46 19:03:46 FROM ubuntu:bionic 19:03:46 19:03:46 VOLUME ["/var/cache/apt/archives"] 19:03:46 19:03:46 ENV DEBIAN_FRONTEND noninteractive 19:03:46 19:03:46 19:03:46 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 19:03:46 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 19:03:46 RUN locale-gen en_US.UTF-8 19:03:46 ENV LANG en_US.UTF-8 19:03:46 ENV TZ GMT+00 19:03:46 19:03:46 RUN useradd -u 1002 -l -m buildfarm 19:03:46 19:03:46 RUN mkdir /tmp/keys 19:03:46 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 19:03:46 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 19:03:46 RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 19:03:46 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:03:46 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:03:46 19:03:46 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)) 19:03:46 19:03:46 RUN mkdir /tmp/wrapper_scripts 19:03:46 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 19:03:46 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 19:03:46 19:03:46 # automatic invalidation once every day 19:03:46 RUN echo "2021-01-29 (+0000)" 19:03:46 19:03:46 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 19:03:46 19:03:46 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 19:03:46 19:03:46 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 19:03:46 19:03:46 19:03:46 # for each dependency: echo version, apt update, apt install, apt clean 19:03:46 RUN echo "apt-src: 0.25.2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src 19:03:46 RUN echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper 19:03:46 RUN echo "python-pip: 9.0.1-2.3~ubuntu1.18.04.4" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-pip 19:03:46 RUN echo "python-setuptools: 39.0.1-2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-setuptools 19:03:46 RUN echo "ros-melodic-catkin: 0.7.29-1bionic.20201014.191449" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin 19:03:46 19:03:46 19:03:46 USER buildfarm 19:03:46 ENTRYPOINT ["sh", "-c"] 19:03:46 CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic mqtt_bridge --sourcedeb-dir /tmp/binarydeb"] 19:03:46 Mount the following volumes when running the container: 19:03:46 -v /tmp/ros_buildfarm:/tmp/ros_buildfarm:ro 19:03:46 -v /tmp/binarydeb:/tmp/binarydeb 19:03:46 + echo # END SECTION 19:03:46 # END SECTION
19:03:46 [Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins122285666685940293.sh 19:03:46 + sleep 1 19:03:46 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/subprocess_reaper.py 5941 --cid-file /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid 19:03:47 + echo # BEGIN SECTION: Build Dockerfile - build binarydeb
12. Build Dockerfile - build binarydeb

Hide Details

19:03:47 # BEGIN SECTION: Build Dockerfile - build binarydeb 19:03:47 + cd /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_build_binarydeb 19:03:47 + python3 -u /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 19:03:47 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 19:03:47 Check docker base image for updates: docker pull ubuntu:bionic 19:03:48 bionic: Pulling from library/ubuntu 19:03:48 Digest: sha256:37f8f08b889896172533625fac8fa2c442e075b5e66ff91bf01332fe76bfc3d4 19:03:48 Status: Image is up to date for ubuntu:bionic 19:03:48 + docker build --force-rm -t binarydeb_build.melodic_ubuntu_bionic_amd64_mqtt_bridge . 19:03:48 Sending build context to Docker daemon 20.99 kB Sending build context to Docker daemon 20.99 kB 19:03:48 Step 1 : FROM ubuntu:bionic 19:03:48 ---> 8d7db987919d 19:03:48 Step 2 : VOLUME /var/cache/apt/archives 19:03:49 ---> Using cache 19:03:49 ---> 7142699436c4 19:03:49 Step 3 : ENV DEBIAN_FRONTEND noninteractive 19:03:49 ---> Using cache 19:03:49 ---> 15ca864bdc10 19:03:49 Step 4 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 19:03:50 ---> Using cache 19:03:50 ---> 74d1e4b04e52 19:03:50 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 19:03:50 ---> Using cache 19:03:50 ---> 5c6af94dde9b 19:03:50 Step 6 : RUN locale-gen en_US.UTF-8 19:03:50 ---> Using cache 19:03:50 ---> 7c8f1f214ed0 19:03:50 Step 7 : ENV LANG en_US.UTF-8 19:03:51 ---> Using cache 19:03:51 ---> 5009b559b63e 19:03:51 Step 8 : ENV TZ GMT+00 19:03:51 ---> Using cache 19:03:51 ---> a4082596e984 19:03:51 Step 9 : RUN useradd -u 1002 -l -m buildfarm 19:03:52 ---> Using cache 19:03:52 ---> 10a971836ceb 19:03:52 Step 10 : RUN mkdir /tmp/keys 19:03:52 ---> Using cache 19:03:52 ---> 2cadc7e71436 19:03:52 Step 11 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 19:03:52 ---> Using cache 19:03:52 ---> 15bd1918bed9 19:03:52 Step 12 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 19:03:53 ---> Using cache 19:03:53 ---> 80c5bda0b573 19:03:53 Step 13 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 19:03:53 ---> Using cache 19:03:53 ---> b223c8791f43 19:03:53 Step 14 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:03:53 ---> Using cache 19:03:53 ---> 108c42dffe3b 19:03:53 Step 15 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:03:54 ---> Using cache 19:03:54 ---> 4e30ea6ad428 19:03:54 Step 16 : RUN grep -q -F -e "deb http://old-releases.ubuntu.com" /etc/apt/sources.list && ((grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://old-releases\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z]+)*" /etc/apt/sources.list || echo "deb-src http://old-releases.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) || ((grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-updates ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-updates multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list) && (grep -q -E -x -e "deb-src http://archive\.ubuntu\.com/ubuntu/? bionic-security ([-a-z]+ )*multiverse( [-a-z])*" /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu/ bionic-security multiverse" >> /etc/apt/sources.list)) 19:03:54 ---> Using cache 19:03:54 ---> 89ea762e6931 19:03:54 Step 17 : RUN mkdir /tmp/wrapper_scripts 19:03:54 ---> Using cache 19:03:54 ---> d61659998765 19:03:54 Step 18 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py 19:03:55 ---> Using cache 19:03:55 ---> 6f9d7330c948 19:03:55 Step 19 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py 19:03:55 ---> Using cache 19:03:55 ---> 02a229ec0c7d 19:03:55 Step 20 : RUN echo "2021-01-29 (+0000)" 19:03:55 ---> Using cache 19:03:55 ---> fb15aedbf410 19:03:55 Step 21 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 19:03:56 ---> Using cache 19:03:56 ---> 8975cd040f71 19:03:56 Step 22 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 19:03:56 ---> Using cache 19:03:56 ---> b728ca1d9e20 19:03:56 Step 23 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y ccache gcc build-essential 19:03:56 ---> Using cache 19:03:56 ---> 2305364e9ae6 19:03:56 Step 24 : RUN echo "apt-src: 0.25.2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes apt-src 19:03:56 ---> Using cache 19:03:56 ---> 7890f1b9c33e 19:03:56 Step 25 : RUN echo "debhelper: 12.1.1ubuntu1~ubuntu18.04.1" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes debhelper 19:03:57 ---> Using cache 19:03:57 ---> ef1bd3ea98be 19:03:57 Step 26 : RUN echo "python-pip: 9.0.1-2.3~ubuntu1.18.04.4" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-pip 19:03:57 ---> Using cache 19:03:57 ---> 67038919a1b3 19:03:57 Step 27 : RUN echo "python-setuptools: 39.0.1-2" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes python-setuptools 19:03:57 ---> Using cache 19:03:57 ---> dd7db4aa15da 19:03:57 Step 28 : RUN echo "ros-melodic-catkin: 0.7.29-1bionic.20201014.191449" && python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y -o Debug::pkgProblemResolver=yes ros-melodic-catkin 19:03:58 ---> Using cache 19:03:58 ---> 8f1eb4e212a5 19:03:58 Step 29 : USER buildfarm 19:03:58 ---> Using cache 19:03:58 ---> 1eccbbbaec8c 19:03:58 Step 30 : ENTRYPOINT sh -c 19:03:58 ---> Using cache 19:03:58 ---> ab69701bb08c 19:03:58 Step 31 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH PATH=/usr/lib/ccache:$PATH python3 -u /tmp/ros_buildfarm/scripts/release/build_binarydeb.py melodic mqtt_bridge --sourcedeb-dir /tmp/binarydeb 19:03:59 ---> Using cache 19:03:59 ---> 707fbc29a8e2 19:03:59 Successfully built 707fbc29a8e2 19:03:59 + echo # END SECTION 19:03:59 # END SECTION
19:03:59 + echo # BEGIN SECTION: Run Dockerfile - build binarydeb
13. Run Dockerfile - build binarydeb

Hide Details

19:03:59 # BEGIN SECTION: Run Dockerfile - build binarydeb 19:03:59 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/docker_build_binarydeb/docker.cid -e=HOME= -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/binarydeb:/tmp/binarydeb -v /home/jenkins-slave/.ccache:/home/buildfarm/.ccache binarydeb_build.melodic_ubuntu_bionic_amd64_mqtt_bridge
13.1. build binarydeb

Hide Details

19:03:59 # BEGIN SUBSECTION: build binarydeb 19:03:59 Package 'ros-melodic-mqtt-bridge' version: 1.0.1-1bionic.20210129.190340 19:04:02 Invoking 'apt-src build ros-melodic-mqtt-bridge' in '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:04 I: Building in /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1 .. 19:04:04 dpkg-buildpackage: info: source package ros-melodic-mqtt-bridge 19:04:04 dpkg-buildpackage: info: source version 1.0.1-1bionic.20210129.190340 19:04:04 dpkg-buildpackage: info: source distribution bionic 19:04:04 dpkg-buildpackage: info: source changed by Marc Hanheide <marc@hanheide.net> 19:04:04 dpkg-source --before-build ros-melodic-mqtt-bridge-1.0.1 19:04:04 dpkg-buildpackage: info: host architecture amd64 19:04:04 dpkg-source: info: using options from ros-melodic-mqtt-bridge-1.0.1/debian/source/options: --auto-commit 19:04:04 fakeroot debian/rules clean 19:04:05 dh clean -v --buildsystem=cmake 19:04:05 dh_testdir -O-v -O--buildsystem=cmake 19:04:05 dh_auto_clean -O-v -O--buildsystem=cmake 19:04:05 dh_clean -O-v -O--buildsystem=cmake 19:04:05 rm -f debian/debhelper-build-stamp 19:04:05 rm -rf debian/.debhelper/ 19:04:05 rm -f -- debian/ros-melodic-mqtt-bridge.substvars debian/files 19:04:05 rm -fr -- debian/ros-melodic-mqtt-bridge/ debian/tmp/ 19:04:05 find . \( \( \ 19:04: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 \ 19:04:05 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 19:04:05 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 19:04:05 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 19:04:05 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 19:04:05 \) -exec rm -f {} + \) -o \ 19:04:05 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 19:04:05 debian/rules build 19:04:05 dh build -v --buildsystem=cmake 19:04:05 dh_testdir -O-v -O--buildsystem=cmake 19:04:05 dh_update_autotools_config -O-v -O--buildsystem=cmake 19:04:05 debian/rules override_dh_auto_configure 19:04:05 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:05 # In case we're installing to a non-standard location, look for a setup.sh 19:04:05 # in the install tree that was dropped by catkin, and source it. It will 19:04:05 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 19:04:05 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 19:04:05 dh_auto_configure -- \ 19:04:05 -DCATKIN_BUILD_BINARY_PACKAGE="1" \ 19:04:05 -DCMAKE_INSTALL_PREFIX="/opt/ros/melodic" \ 19:04:05 -DCMAKE_PREFIX_PATH="/opt/ros/melodic" 19:04:05 install -d obj-x86_64-linux-gnu 19:04:05 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 19:04:05 -- The C compiler identification is GNU 7.5.0 19:04:06 -- The CXX compiler identification is GNU 7.5.0 19:04:06 -- Check for working C compiler: /usr/bin/cc 19:04:06 -- Check for working C compiler: /usr/bin/cc -- works 19:04:06 -- Detecting C compiler ABI info 19:04:06 -- Detecting C compiler ABI info - done 19:04:06 -- Detecting C compile features 19:04:06 -- Detecting C compile features - done 19:04:06 -- Check for working CXX compiler: /usr/bin/c++ 19:04:07 -- Check for working CXX compiler: /usr/bin/c++ -- works 19:04:07 -- Detecting CXX compiler ABI info 19:04:07 -- Detecting CXX compiler ABI info - done 19:04:07 -- Detecting CXX compile features 19:04:08 -- Detecting CXX compile features - done 19:04:08 -- Using CATKIN_DEVEL_PREFIX: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/devel 19:04:08 -- Using CMAKE_PREFIX_PATH: /opt/ros/melodic 19:04:08 -- This workspace overlays: /opt/ros/melodic 19:04:08 -- Found PythonInterp: /usr/bin/python (found version "2.7.17") 19:04:08 -- Using PYTHON_EXECUTABLE: /usr/bin/python 19:04:08 -- Using Debian Python package layout 19:04:08 -- Using empy: /usr/bin/empy 19:04:08 -- Using CATKIN_ENABLE_TESTING: ON 19:04:08 -- Skip enable_testing() when building binary package 19:04:08 -- Using CATKIN_TEST_RESULTS_DIR: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/test_results 19:04:08 -- Found gtest sources under '/usr/src/googletest': gtests will be built 19:04:08 -- Found gmock sources under '/usr/src/googletest': gmock will be built 19:04:08 -- Looking for pthread.h 19:04:08 -- Looking for pthread.h - found 19:04:08 -- Looking for pthread_create 19:04:08 -- Looking for pthread_create - not found 19:04:08 -- Looking for pthread_create in pthreads 19:04:08 -- Looking for pthread_create in pthreads - not found 19:04:08 -- Looking for pthread_create in pthread 19:04:08 -- Looking for pthread_create in pthread - found 19:04:08 -- Found Threads: TRUE 19:04:08 -- Using Python nosetests: /usr/bin/nosetests-2.7 19:04:08 -- catkin 0.7.29 19:04:08 -- BUILD_SHARED_LIBS is on 19:04:09 -- Configuring done 19:04:09 -- Generating done 19:04:09 CMake Warning: 19:04:09 Manually-specified variables were not used by the project: 19:04:09 19:04:09 CMAKE_EXPORT_NO_PACKAGE_REGISTRY 19:04:09 CMAKE_INSTALL_LOCALSTATEDIR 19:04:09 CMAKE_INSTALL_SYSCONFDIR 19:04:09 19:04:09 19:04:09 -- Build files have been written to: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu 19:04:09 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:09 debian/rules override_dh_auto_build 19:04:09 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:09 # In case we're installing to a non-standard location, look for a setup.sh 19:04:09 # in the install tree that was dropped by catkin, and source it. It will 19:04:09 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 19:04:09 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 19:04:09 dh_auto_build 19:04:09 cd obj-x86_64-linux-gnu && make -j1 19:04:09 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:09 /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1 -B/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 19:04:09 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 19:04:09 make -f CMakeFiles/Makefile2 all 19:04:09 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:09 make -f CMakeFiles/install_depends.dir/build.make CMakeFiles/install_depends.dir/depend 19:04:09 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:09 cd /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1 /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1 /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/CMakeFiles/install_depends.dir/DependInfo.cmake --color= 19:04:09 Scanning dependencies of target install_depends 19:04:10 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:10 make -f CMakeFiles/install_depends.dir/build.make CMakeFiles/install_depends.dir/build 19:04:10 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:10 pip install --user -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt 19:04:10 Collecting inject<4.0,>=3.3.1 (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt (line 1)) 19:04:11 Downloading https://files.pythonhosted.org/packages/3b/f0/23703cbb81f878308ec23426fd9a94a98e4302fefcb021c625343e2512ce/Inject-3.5.4.tar.gz 19:04:11 Collecting msgpack-python>=0.4.8 (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt (line 2)) 19:04:11 Downloading https://files.pythonhosted.org/packages/8a/20/6eca772d1a5830336f84aca1d8198e5a3f4715cd1c7fc36d3cc7f7185091/msgpack-python-0.5.6.tar.gz (138kB) 19:04:11 Collecting paho-mqtt>=1.2 (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt (line 3)) 19:04:12 Downloading https://files.pythonhosted.org/packages/32/d3/6dcb8fd14746fcde6a556f932b5de8bea8fedcb85b3a092e0e986372c0e7/paho-mqtt-1.5.1.tar.gz (101kB) 19:04:12 Collecting pymongo (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt (line 4)) 19:04:13 Downloading https://files.pythonhosted.org/packages/c0/85/69e05399d208b33fefec8e5bc03ea90e38361f3c0e4ca2d094a45b045e09/pymongo-3.11.2-cp27-cp27mu-manylinux1_x86_64.whl (488kB) 19:04:13 Collecting typing (from inject<4.0,>=3.3.1->-r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt (line 1)) 19:04:13 Downloading https://files.pythonhosted.org/packages/3b/c0/e44213fcb799eac02881e2485724ba5b0914600bc9df6ed922e364fdc059/typing-3.7.4.3-py2-none-any.whl 19:04:13 Building wheels for collected packages: inject, msgpack-python, paho-mqtt 19:04:13 Running setup.py bdist_wheel for inject: started 19:04:14 Running setup.py bdist_wheel for inject: finished with status 'done' 19:04:14 Stored in directory: /home/buildfarm/.cache/pip/wheels/25/83/fa/1717afd369ac10b1be969ae78bd394d972af33f54308a2653a 19:04:14 Running setup.py bdist_wheel for msgpack-python: started 19:04:20 Running setup.py bdist_wheel for msgpack-python: finished with status 'done' 19:04:20 Stored in directory: /home/buildfarm/.cache/pip/wheels/d5/de/86/7fa56fda12511be47ea0808f3502bc879df4e63ab168ec0406 19:04:20 Running setup.py bdist_wheel for paho-mqtt: started 19:04:21 Running setup.py bdist_wheel for paho-mqtt: finished with status 'done' 19:04:21 Stored in directory: /home/buildfarm/.cache/pip/wheels/75/e2/f5/78942b19b4d135605e58dfe85fba52253b14d636aabf76904b 19:04:21 Successfully built inject msgpack-python paho-mqtt 19:04:21 Installing collected packages: typing, inject, msgpack-python, paho-mqtt, pymongo 19:04:21 Successfully installed inject-3.5.4 msgpack-python-0.5.6 paho-mqtt-1.5.1 pymongo-3.11.2 typing-3.7.4.3 19:04:21 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:21 Built target install_depends 19:04:21 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:21 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/CMakeFiles 0 19:04:21 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:21 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:21 debian/rules override_dh_auto_test 19:04:21 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:21 # In case we're installing to a non-standard location, look for a setup.sh 19:04:21 # in the install tree that was dropped by catkin, and source it. It will 19:04:21 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 19:04:21 echo -- Running tests. Even if one of them fails the build is not canceled. 19:04:21 -- Running tests. Even if one of them fails the build is not canceled. 19:04:21 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 19:04:21 dh_auto_test || true 19:04:21 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:21 fakeroot debian/rules binary 19:04:22 dh binary -v --buildsystem=cmake 19:04:22 dh_testroot -O-v -O--buildsystem=cmake 19:04:22 dh_prep -O-v -O--buildsystem=cmake 19:04:22 rm -f -- debian/ros-melodic-mqtt-bridge.substvars 19:04:22 rm -fr -- debian/.debhelper/generated/ros-melodic-mqtt-bridge/ debian/ros-melodic-mqtt-bridge/ debian/tmp/ 19:04:22 dh_installdirs -O-v -O--buildsystem=cmake 19:04:22 install -d debian/ros-melodic-mqtt-bridge 19:04:22 debian/rules override_dh_auto_install 19:04:22 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:22 # In case we're installing to a non-standard location, look for a setup.sh 19:04:22 # in the install tree that was dropped by catkin, and source it. It will 19:04:22 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 19:04:22 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 19:04:22 dh_auto_install 19:04:22 cd obj-x86_64-linux-gnu && make -j1 install DESTDIR=/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge AM_UPDATE_INFO_DIR=no 19:04:22 make[2]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:22 /usr/bin/cmake -H/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1 -B/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu --check-build-system CMakeFiles/Makefile.cmake 0 19:04:22 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/CMakeFiles /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/CMakeFiles/progress.marks 19:04:22 make -f CMakeFiles/Makefile2 all 19:04:22 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:22 make -f CMakeFiles/install_depends.dir/build.make CMakeFiles/install_depends.dir/depend 19:04:22 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:22 cd /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1 /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1 /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/CMakeFiles/install_depends.dir/DependInfo.cmake --color= 19:04:22 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:22 make -f CMakeFiles/install_depends.dir/build.make CMakeFiles/install_depends.dir/build 19:04:22 make[4]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:22 pip install --user -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt 19:04:23 Requirement already satisfied: inject<4.0,>=3.3.1 in /home/buildfarm/.local/lib/python2.7/site-packages (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt (line 1)) 19:04:23 Requirement already satisfied: msgpack-python>=0.4.8 in /home/buildfarm/.local/lib/python2.7/site-packages (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt (line 2)) 19:04:23 Requirement already satisfied: paho-mqtt>=1.2 in /home/buildfarm/.local/lib/python2.7/site-packages (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt (line 3)) 19:04:23 Requirement already satisfied: pymongo in /home/buildfarm/.local/lib/python2.7/site-packages (from -r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt (line 4)) 19:04:23 Requirement already satisfied: typing; python_version < "3.5" in /home/buildfarm/.local/lib/python2.7/site-packages (from inject<4.0,>=3.3.1->-r /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt (line 1)) 19:04:23 make[4]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:23 Built target install_depends 19:04:23 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:23 /usr/bin/cmake -E cmake_progress_start /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/CMakeFiles 0 19:04:23 make -f CMakeFiles/Makefile2 preinstall 19:04:23 make[3]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:23 make[3]: Nothing to be done for 'preinstall'. 19:04:23 make[3]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:23 Install the project... 19:04:23 /usr/bin/cmake -P cmake_install.cmake 19:04:23 -- Install configuration: "None" 19:04:23 + cd /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1 19:04:23 + mkdir -p /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages 19:04:23 + /usr/bin/env PYTHONPATH=/opt/ros/melodic/lib/python2.7/dist-packages:/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib/python2.7/dist-packages:/opt/ros/melodic/lib/python2.7/dist-packages:/tmp/ros_buildfarm: CATKIN_BINARY_DIR=/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu /usr/bin/python /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/setup.py egg_info --egg-base /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu build --build-base /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu install --root=/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge --install-layout=deb --prefix=/opt/ros/melodic --install-scripts=/opt/ros/melodic/bin 19:04:24 running egg_info 19:04:24 creating /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/mqtt_bridge.egg-info 19:04:24 writing requirements to /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/requires.txt 19:04:24 writing /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/PKG-INFO 19:04:24 writing top-level names to /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/top_level.txt 19:04:24 writing dependency_links to /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/dependency_links.txt 19:04:24 writing manifest file '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/SOURCES.txt' 19:04:24 reading manifest file '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/SOURCES.txt' 19:04:24 writing manifest file '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/mqtt_bridge.egg-info/SOURCES.txt' 19:04:24 running build 19:04:24 running build_py 19:04:24 creating /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7 19:04:24 creating /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 19:04:24 copying src/mqtt_bridge/app.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 19:04:24 copying src/mqtt_bridge/util.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 19:04:24 copying src/mqtt_bridge/__init__.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 19:04:24 copying src/mqtt_bridge/bridge.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 19:04:24 copying src/mqtt_bridge/mqtt_client.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge 19:04:24 running install 19:04:24 running install_lib 19:04:24 creating /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 19:04:24 copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge/app.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 19:04:24 copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge/util.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 19:04:24 copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge/__init__.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 19:04:24 copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge/bridge.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 19:04:24 copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/lib.linux-x86_64-2.7/mqtt_bridge/mqtt_client.py -> /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge 19:04:24 byte-compiling /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge/app.py to app.pyc 19:04:24 byte-compiling /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge/util.py to util.pyc 19:04:24 byte-compiling /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge/__init__.py to __init__.pyc 19:04:24 byte-compiling /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge/bridge.py to bridge.pyc 19:04:24 byte-compiling /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge/mqtt_client.py to mqtt_client.pyc 19:04:24 running install_egg_info 19:04:24 Copying /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu/mqtt_bridge.egg-info to /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/python2.7/dist-packages/mqtt_bridge-1.0.1.egg-info 19:04:24 Skipping SOURCES.txt 19:04:24 running install_scripts 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/pkgconfig/mqtt_bridge.pc 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/cmake/mqtt_bridgeConfig.cmake 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/cmake/mqtt_bridgeConfig-version.cmake 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/package.xml 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/mqtt_bridge/mqtt_bridge_node.py 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/lib/mqtt_bridge/mosquitto_server.sh 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/launch 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/launch/demo.launch 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/launch/action_server.launch 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/launch/dynamic_server.launch 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/launch/demo.test 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/config 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/config/tls_params.yaml 19:04:24 -- Installing: /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge/opt/ros/melodic/share/mqtt_bridge/config/demo_params.yaml 19:04:24 make[2]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu' 19:04:24 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:24 dh_install -O-v -O--buildsystem=cmake 19:04:24 install -d debian/.debhelper/generated/ros-melodic-mqtt-bridge 19:04:24 dh_installdocs -O-v -O--buildsystem=cmake 19:04:24 install -d debian/ros-melodic-mqtt-bridge/usr/share/doc/ros-melodic-mqtt-bridge 19:04:24 dh_installchangelogs -O-v -O--buildsystem=cmake 19:04:24 install -p -m0644 debian/changelog debian/ros-melodic-mqtt-bridge/usr/share/doc/ros-melodic-mqtt-bridge/changelog.Debian 19:04:24 dh_installexamples -O-v -O--buildsystem=cmake 19:04:24 dh_installman -O-v -O--buildsystem=cmake 19:04:24 dh_installcatalogs -O-v -O--buildsystem=cmake 19:04:24 dh_installcron -O-v -O--buildsystem=cmake 19:04:24 dh_installdebconf -O-v -O--buildsystem=cmake 19:04:24 install -d debian/ros-melodic-mqtt-bridge/DEBIAN 19:04:24 dh_installemacsen -O-v -O--buildsystem=cmake 19:04:25 dh_installifupdown -O-v -O--buildsystem=cmake 19:04:25 dh_installinfo -O-v -O--buildsystem=cmake 19:04:25 dh_installinit -O-v -O--buildsystem=cmake 19:04:25 dh_installmenu -O-v -O--buildsystem=cmake 19:04:25 dh_installmime -O-v -O--buildsystem=cmake 19:04:25 dh_installmodules -O-v -O--buildsystem=cmake 19:04:25 dh_installlogcheck -O-v -O--buildsystem=cmake 19:04:25 dh_installlogrotate -O-v -O--buildsystem=cmake 19:04:25 dh_installpam -O-v -O--buildsystem=cmake 19:04:25 dh_installppp -O-v -O--buildsystem=cmake 19:04:25 dh_installudev -O-v -O--buildsystem=cmake 19:04:25 dh_installgsettings -O-v -O--buildsystem=cmake 19:04:25 dh_bugfiles -O-v -O--buildsystem=cmake 19:04:25 dh_ucf -O-v -O--buildsystem=cmake 19:04:25 dh_lintian -O-v -O--buildsystem=cmake 19:04:25 dh_gconf -O-v -O--buildsystem=cmake 19:04:25 dh_icons -O-v -O--buildsystem=cmake 19:04:26 dh_perl -O-v -O--buildsystem=cmake 19:04:26 dh_usrlocal -O-v -O--buildsystem=cmake 19:04:26 dh_link -O-v -O--buildsystem=cmake 19:04:26 dh_installwm -O-v -O--buildsystem=cmake 19:04:26 dh_installxfonts -O-v -O--buildsystem=cmake 19:04:26 dh_strip_nondeterminism -O-v -O--buildsystem=cmake 19:04:26 dh_compress -O-v -O--buildsystem=cmake 19:04:26 cd debian/ros-melodic-mqtt-bridge 19:04:26 chmod a-x usr/share/doc/ros-melodic-mqtt-bridge/changelog.Debian 19:04:26 gzip -9nf usr/share/doc/ros-melodic-mqtt-bridge/changelog.Debian 19:04:26 cd '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:26 dh_fixperms -O-v -O--buildsystem=cmake 19:04:26 find debian/ros-melodic-mqtt-bridge -true -print0 2>/dev/null | xargs -0r chown --no-dereference 0:0 19:04:26 find debian/ros-melodic-mqtt-bridge ! -type l -a -true -a -true -print0 2>/dev/null | xargs -0r chmod go=rX,u+rw,a-s 19:04:26 find debian/ros-melodic-mqtt-bridge/usr/share/doc -type f -a -true -a ! -regex 'debian/ros-melodic-mqtt-bridge/usr/share/doc/[^/]*/examples/.*' -print0 2>/dev/null | xargs -0r chmod 0644 19:04:26 find debian/ros-melodic-mqtt-bridge/usr/share/doc -type d -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0755 19:04:26 find debian/ros-melodic-mqtt-bridge -type f \( -name '*.so.*' -o -name '*.so' -o -name '*.la' -o -name '*.a' -o -name '*.js' -o -name '*.css' -o -name '*.scss' -o -name '*.sass' -o -name '*.jpeg' -o -name '*.jpg' -o -name '*.png' -o -name '*.gif' -o -name '*.cmxs' \) -a -true -a -true -print0 2>/dev/null | xargs -0r chmod 0644 19:04:26 dh_missing -O-v -O--buildsystem=cmake 19:04:26 dh_strip -O-v -O--buildsystem=cmake 19:04:26 dh_makeshlibs -O-v -O--buildsystem=cmake 19:04:26 rm -f debian/ros-melodic-mqtt-bridge/DEBIAN/shlibs 19:04:26 debian/rules override_dh_shlibdeps 19:04:26 make[1]: Entering directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:26 # In case we're installing to a non-standard location, look for a setup.sh 19:04:26 # in the install tree that was dropped by catkin, and source it. It will 19:04:27 # set things like CMAKE_PREFIX_PATH, PKG_CONFIG_PATH, and PYTHONPATH. 19:04:27 if [ -f "/opt/ros/melodic/setup.sh" ]; then . "/opt/ros/melodic/setup.sh"; fi && \ 19:04:27 dh_shlibdeps -l/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian/ros-melodic-mqtt-bridge//opt/ros/melodic/lib/ 19:04:27 make[1]: Leaving directory '/tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1' 19:04:27 dh_installdeb -O-v -O--buildsystem=cmake 19:04:27 dh_gencontrol -O-v -O--buildsystem=cmake 19:04:27 echo misc:Depends= >> debian/ros-melodic-mqtt-bridge.substvars 19:04:27 echo misc:Pre-Depends= >> debian/ros-melodic-mqtt-bridge.substvars 19:04:27 dpkg-gencontrol -pros-melodic-mqtt-bridge -ldebian/changelog -Tdebian/ros-melodic-mqtt-bridge.substvars -Pdebian/ros-melodic-mqtt-bridge -UMulti-Arch 19:04:27 dpkg-gencontrol: warning: Depends field of package ros-melodic-mqtt-bridge: unknown substitution variable ${shlibs:Depends} 19:04:27 chmod 0644 -- debian/ros-melodic-mqtt-bridge/DEBIAN/control 19:04:27 chown 0:0 -- debian/ros-melodic-mqtt-bridge/DEBIAN/control 19:04:27 dh_md5sums -O-v -O--buildsystem=cmake 19:04:27 (cd debian/ros-melodic-mqtt-bridge >/dev/null ; find . -type f ! -regex './DEBIAN/.*' -printf '%P\0' | LC_ALL=C sort -z | xargs -r0 md5sum | perl -pe 'if (s@^\\@@) { s/\\\\/\\/g; }' > DEBIAN/md5sums) >/dev/null 19:04:27 chmod 0644 -- debian/ros-melodic-mqtt-bridge/DEBIAN/md5sums 19:04:27 chown 0:0 -- debian/ros-melodic-mqtt-bridge/DEBIAN/md5sums 19:04:27 dh_builddeb -O-v -O--buildsystem=cmake 19:04:27 dpkg-deb --build debian/ros-melodic-mqtt-bridge .. 19:04:27 dpkg-deb: building package 'ros-melodic-mqtt-bridge' in '../ros-melodic-mqtt-bridge_1.0.1-1bionic.20210129.190340_amd64.deb'. 19:04:27 dpkg-genbuildinfo --build=binary 19:04:28 dpkg-genchanges --build=binary >../ros-melodic-mqtt-bridge_1.0.1-1bionic.20210129.190340_amd64.changes 19:04:28 dpkg-genchanges: info: binary-only upload (no source code included) 19:04:28 dpkg-source --after-build ros-melodic-mqtt-bridge-1.0.1 19:04:28 dpkg-source: info: using options from ros-melodic-mqtt-bridge-1.0.1/debian/source/options: --auto-commit 19:04:28 dpkg-buildpackage: info: binary-only upload (no source included) 19:04:28 I: Successfully built in /tmp/binarydeb/ros-melodic-mqtt-bridge-1.0.1 19:04:28 # END SUBSECTION
19:04:28 + echo # END SECTION 19:04:28 # END SECTION
19:04:28 [Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary] $ /bin/sh -xe /tmp/jenkins7257453409075890457.sh 19:04:28 + [ false = false ] 19:04:28 + echo # BEGIN SECTION: Clean up to save disk space on agents
14. Clean up to save disk space on agents

Hide Details

19:04:28 # BEGIN SECTION: Clean up to save disk space on agents 19:04:28 + chmod -R u+w /home/jenkins-slave/workspace/Mbin_uB64__mqtt_bridge__ubuntu_bionic_amd64__binary/binarydeb 19:04:28 + rm -fr binarydeb/ros-melodic-mqtt-bridge-1.0.1/CHANGELOG.rst binarydeb/ros-melodic-mqtt-bridge-1.0.1/CMakeLists.txt binarydeb/ros-melodic-mqtt-bridge-1.0.1/LICENSE.txt binarydeb/ros-melodic-mqtt-bridge-1.0.1/Makefile binarydeb/ros-melodic-mqtt-bridge-1.0.1/README.md binarydeb/ros-melodic-mqtt-bridge-1.0.1/config binarydeb/ros-melodic-mqtt-bridge-1.0.1/debian binarydeb/ros-melodic-mqtt-bridge-1.0.1/dev-requirements.txt binarydeb/ros-melodic-mqtt-bridge-1.0.1/launch binarydeb/ros-melodic-mqtt-bridge-1.0.1/obj-x86_64-linux-gnu binarydeb/ros-melodic-mqtt-bridge-1.0.1/package.xml binarydeb/ros-melodic-mqtt-bridge-1.0.1/requirements.txt binarydeb/ros-melodic-mqtt-bridge-1.0.1/scripts binarydeb/ros-melodic-mqtt-bridge-1.0.1/setup.py binarydeb/ros-melodic-mqtt-bridge-1.0.1/src binarydeb/ros-melodic-mqtt-bridge-1.0.1/test 19:04:28 + echo # END SECTION 19:04:28 # END SECTION
19:04:28 SSH: Connecting from host [lcas-buildfarm-slave-3] 19:04:28 SSH: Connecting with configuration [repo] ... 19:04:29 SSH: Disconnecting configuration [repo] ... 19:04:29 SSH: Transferred 2 file(s) 19:04:29 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 19:04:29 Waiting for the completion of Mrel_import-package 19:04:29 Mrel_import-package #826 started. 19:04:39 Mrel_import-package #826 completed. Result was SUCCESS 19:04:39 $ ssh-agent -k 19:04:39 unset SSH_AUTH_SOCK; 19:04:39 unset SSH_AGENT_PID; 19:04:39 echo Agent pid 5117 killed; 19:04:39 [ssh-agent] Stopped. 19:04:39 [description-setter] Description set: 1.0.1-1bionic.20210129.190340 19:04:39 Triggering a new build of Mrel_sync-packages-to-testing_bionic_amd64 19:04:39 Finished: SUCCESS