FailedConsole Output

16:00:56 Started by upstream project "Mrel_trigger-jobs" build number 1347
16:00:56 originally caused by:
16:00:56  Started by timer
16:00:56 Building remotely on build client 1 (buildagent slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source
16:00:56 [ssh-agent] Looking for ssh-agent implementation...
16:00:56 [ssh-agent]   Exec ssh-agent (binary ssh-agent on a remote machine)
16:00:56 $ ssh-agent
16:00:56 SSH_AUTH_SOCK=/tmp/ssh-vyJo7FwqF5OS/agent.27728
16:00:56 SSH_AGENT_PID=27729
16:00:56 [ssh-agent] Started.
16:00:56 $ ssh-add /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source@tmp/private_key_7879025748432856991.key
16:00:56 Identity added: /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source@tmp/private_key_7879025748432856991.key (/home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source@tmp/private_key_7879025748432856991.key)
16:00:56 [ssh-agent] Using credentials jenkins-slave
1. Check free disk space

Hide Details

16:00:57 # BEGIN SECTION: Check free disk space 16:00:57 Usable disk space = 55370391552 bytes 16:00:57 Free space threshold = 5368709120 bytes 16:00:57 # END SECTION
16:00:57 [Msrc_uB__whycon_ros__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson1843707522300913568.sh 16:00:57 + echo # BEGIN SECTION: docker version
2. docker version

Hide Details

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

Hide Details

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

Hide Details

16:00:57 # BEGIN SECTION: Check docker status 16:00:57 + echo Testing trivial docker invocation... 16:00:57 Testing trivial docker invocation... 16:00:57 + docker run --rm ubuntu:bionic true 16:00:59 + echo 'docker run' returned 0 16:00:59 'docker run' returned 0 16:00:59 docker seems operational, continuing 16:00:59 [Msrc_uB__whycon_ros__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson6448000662726150327.sh 16:00:59 + echo # END SECTION 16:00:59 # END SECTION
16:00:59 [Msrc_uB__whycon_ros__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson233061289830886126.sh 16:00:59 + echo # BEGIN SECTION: Embed wrapper scripts
5. Embed wrapper scripts

Hide Details

16:00:59 # BEGIN SECTION: Embed wrapper scripts 16:00:59 + rm -fr wrapper_scripts 16:00:59 + mkdir wrapper_scripts 16:00:59 + 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()) 16:00:59 + echo # END SECTION 16:00:59 # END SECTION
16:00:59 [Msrc_uB__whycon_ros__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson2333555933588426396.sh 16:00:59 + echo # BEGIN SECTION: Clone ros_buildfarm
6. Clone ros_buildfarm

Hide Details

16:00:59 # BEGIN SECTION: Clone ros_buildfarm 16:00:59 + rm -fr ros_buildfarm 16:00:59 + python3 -u wrapper_scripts/git.py clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm 16:00:59 Invoking 'git clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 16:00:59 Cloning into 'ros_buildfarm'... 16:01:01 + git -C ros_buildfarm --no-pager log -n 1 16:01:01 commit 1dd549025f8ffed420cf38aca8b3234ad940b860 16:01:01 Author: Marc Hanheide <marc@hanheide.net> 16:01:01 Date: Tue Nov 12 15:42:35 2019 +0000 16:01:01 16:01:01 added auth token to main sync job 16:01:01 + rm -fr ros_buildfarm/.git 16:01:01 + rm -fr ros_buildfarm/doc 16:01:01 + echo # END SECTION 16:01:01 # END SECTION
16:01:01 [Msrc_uB__whycon_ros__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson796783311552609554.sh 16:01:01 + echo # BEGIN SECTION: Write PGP repository keys
7. Write PGP repository keys

Hide Details

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

Hide Details

16:01:02 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 16:01:02 + export TZ=GMT+00 16:01:02 + export PYTHONPATH=/home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/ros_buildfarm: 16:01:02 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/ros_buildfarm/scripts/release/run_sourcedeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic whycon_ros ubuntu bionic --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/keys/0.key /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/keys/1.key --source-dir /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/sourcedeb/source --dockerfile-dir /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/docker_sourcedeb 16:01:02 Using the following distribution repositories: 16:01:02 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/keys/0.key) 16:01:02 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/keys/1.key) 16:01:02 Generating Dockerfile '/home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/docker_sourcedeb/Dockerfile': 16:01:02 # generated from release/sourcedeb_task.Dockerfile.em 16:01:02 16:01:02 FROM ubuntu:bionic 16:01:02 16:01:02 VOLUME ["/var/cache/apt/archives"] 16:01:02 16:01:02 ENV DEBIAN_FRONTEND noninteractive 16:01:02 16:01:02 16:01:02 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 16:01:02 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 16:01:02 RUN locale-gen en_US.UTF-8 16:01:02 ENV LANG en_US.UTF-8 16:01:02 ENV TZ GMT+00 16:01:02 16:01:02 RUN useradd -u 1002 -l -m buildfarm 16:01:02 16:01:02 RUN mkdir /tmp/keys 16:01:02 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 16:01:02 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 16:01:02 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 16:01:02 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 16:01:02 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 16:01:02 16:01:02 RUN mkdir /tmp/wrapper_scripts 16:01:02 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 16:01:02 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 16:01:02 16:01:02 # automatic invalidation once every day 16:01:02 RUN echo "2019-11-21 (+0000)" 16:01:02 16:01:02 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 16:01:02 16:01:02 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 16:01:02 16:01:02 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y debhelper dpkg dpkg-dev git git-buildpackage python3-catkin-pkg-modules python3-rosdistro-modules python3-yaml 16:01:02 16:01:02 COPY .git-credentials /home/buildfarm/.git-credentials 16:01:02 RUN chmod 600 /home/buildfarm/.git-credentials 16:01:02 RUN chown buildfarm /home/buildfarm/.git-credentials 16:01:02 16:01:02 USER buildfarm 16:01:02 RUN git config --global credential.helper 'store' 16:01:02 RUN git config --global http.sslVerify false 16:01:02 16:01:02 ENTRYPOINT ["sh", "-c"] 16:01:02 CMD ["PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sources.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic whycon_ros ubuntu bionic http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --source-dir /tmp/sourcedeb/source && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/build_sourcedeb.py ubuntu bionic --source-dir /tmp/sourcedeb/source"] 16:01:02 + echo # END SECTION 16:01:02 # END SECTION
16:01:02 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb
9. Build Dockerfile - generate sourcedeb

Hide Details

16:01:02 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 16:01:02 + cd /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/docker_sourcedeb 16:01:02 + cp -L **** /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/docker_sourcedeb/.git-credentials 16:01:02 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 16:01:02 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 16:01:02 Check docker base image for updates: docker pull ubuntu:bionic 16:01:04 bionic: Pulling from library/ubuntu 16:01:04 Digest: sha256:1d1c09d1d5e42265dd6e7d35dcc73373f0e1b76da661463f24487ac3dbeb673f 16:01:04 Status: Image is up to date for ubuntu:bionic 16:01:04 + docker build --force-rm -t sourcedeb.melodic_ubuntu_bionic_whycon_ros . 16:01:04 Sending build context to Docker daemon 18.43 kB Sending build context to Docker daemon 18.43 kB 16:01:04 Step 1 : FROM ubuntu:bionic 16:01:04 ---> 6120d8e09b3f 16:01:04 Step 2 : VOLUME /var/cache/apt/archives 16:01:04 ---> Using cache 16:01:04 ---> b29f905cce33 16:01:04 Step 3 : ENV DEBIAN_FRONTEND noninteractive 16:01:05 ---> Using cache 16:01:05 ---> cd2d1e1fc9d8 16:01:05 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 16:01:05 ---> Using cache 16:01:05 ---> 2cf434bfa57b 16:01:05 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 16:01:05 ---> Using cache 16:01:05 ---> 38a47bd55e34 16:01:05 Step 6 : RUN locale-gen en_US.UTF-8 16:01:06 ---> Using cache 16:01:06 ---> a498930da307 16:01:06 Step 7 : ENV LANG en_US.UTF-8 16:01:06 ---> Using cache 16:01:06 ---> 1118ba2e1e0c 16:01:06 Step 8 : ENV TZ GMT+00 16:01:07 ---> Using cache 16:01:07 ---> 474f1ddcf34d 16:01:07 Step 9 : RUN useradd -u 1002 -l -m buildfarm 16:01:07 ---> Using cache 16:01:07 ---> 75ab071ab49c 16:01:07 Step 10 : RUN mkdir /tmp/keys 16:01:07 ---> Using cache 16:01:07 ---> 639e36792fe5 16:01:07 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 16:01:08 ---> Using cache 16:01:08 ---> 2d1b1ddcfc6e 16:01:08 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 16:01:08 ---> Using cache 16:01:08 ---> 804c353569ef 16:01:08 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 16:01:09 ---> Using cache 16:01:09 ---> fac92929fa2b 16:01:09 Step 14 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 16:01:09 ---> Using cache 16:01:09 ---> 7202cfa3034e 16:01:09 Step 15 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 16:01:09 ---> Using cache 16:01:09 ---> e23035c489df 16:01:09 Step 16 : RUN mkdir /tmp/wrapper_scripts 16:01:10 ---> Using cache 16:01:10 ---> be106cf51bce 16:01:10 Step 17 : 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 16:01:10 ---> Using cache 16:01:10 ---> abe287445756 16:01:10 Step 18 : 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 16:01:11 ---> Using cache 16:01:11 ---> 1e6e80075fd2 16:01:11 Step 19 : RUN echo "2019-11-21 (+0000)" 16:01:11 ---> Using cache 16:01:11 ---> cc2f3a2e023b 16:01:11 Step 20 : 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 16:01:12 ---> Using cache 16:01:12 ---> 2ae0a5da06e0 16:01:12 Step 21 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 16:01:12 ---> Using cache 16:01:12 ---> 7b98da24bdc9 16:01:12 Step 22 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y debhelper dpkg dpkg-dev git git-buildpackage python3-catkin-pkg-modules python3-rosdistro-modules python3-yaml 16:01:12 ---> Using cache 16:01:12 ---> 6718234174a7 16:01:12 Step 23 : COPY .git-credentials /home/buildfarm/.git-credentials 16:01:13 ---> Using cache 16:01:13 ---> a9cbbe12bbd5 16:01:13 Step 24 : RUN chmod 600 /home/buildfarm/.git-credentials 16:01:13 ---> Using cache 16:01:13 ---> a00a16a66332 16:01:13 Step 25 : RUN chown buildfarm /home/buildfarm/.git-credentials 16:01:14 ---> Using cache 16:01:14 ---> c0df19661f3d 16:01:14 Step 26 : USER buildfarm 16:01:14 ---> Using cache 16:01:14 ---> e8ce7e428bb6 16:01:14 Step 27 : RUN git config --global credential.helper 'store' 16:01:14 ---> Using cache 16:01:14 ---> fe9d7ebec5a2 16:01:14 Step 28 : RUN git config --global http.sslVerify false 16:01:15 ---> Using cache 16:01:15 ---> 81fa7a6e6366 16:01:15 Step 29 : ENTRYPOINT sh -c 16:01:15 ---> Using cache 16:01:15 ---> d8c949d8a342 16:01:15 Step 30 : CMD PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/get_sources.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic whycon_ros ubuntu bionic http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --source-dir /tmp/sourcedeb/source && PYTHONPATH=/tmp/ros_buildfarm:$PYTHONPATH python3 -u /tmp/ros_buildfarm/scripts/release/build_sourcedeb.py ubuntu bionic --source-dir /tmp/sourcedeb/source 16:01:16 ---> Using cache 16:01:16 ---> d1386e52cb6a 16:01:16 Successfully built d1386e52cb6a 16:01:16 + echo # END SECTION 16:01:16 # END SECTION
16:01:16 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb
10. Run Dockerfile - generate sourcedeb

Hide Details

16:01:16 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 16:01:16 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/sourcedeb 16:01:16 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/sourcedeb/source 16:01:16 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/sourcedeb:/tmp/sourcedeb sourcedeb.melodic_ubuntu_bionic_whycon_ros
10.1. get sources

Hide Details

16:01:16 # BEGIN SUBSECTION: get sources 16:01:20 Invoking 'git clone --branch debian/ros-melodic-whycon-ros_0.2.4-1_bionic --depth 1 --no-single-branch https://github.com/strands-project-releases/whycon.git /tmp/sourcedeb/source' 16:01:20 Cloning into '/tmp/sourcedeb/source'... 16:01:23 Note: checking out '5a032f6f509a7183ff6da4184c50833d3b5eb675'. 16:01:23 16:01:23 You are in 'detached HEAD' state. You can look around, make experimental 16:01:23 changes and commit them, and you can discard any commits you make in this 16:01:23 state without impacting any branches by performing another checkout. 16:01:23 16:01:23 If you want to create a new branch to retain commits you create, you may 16:01:23 do so (now or later) by using -b with the checkout command again. Example: 16:01:23 16:01:23 git checkout -b <new-branch-name> 16:01:23 16:01:23 # END SUBSECTION
16:01:23 Traceback (most recent call last): 16:01:23 File "/tmp/ros_buildfarm/scripts/release/get_sources.py", line 50, in <module> 16:01:23 sys.exit(main()) 16:01:23 File "/tmp/ros_buildfarm/scripts/release/get_sources.py", line 46, in main 16:01:23 args.os_name, args.os_code_name, args.source_dir, args.debian_repository_urls) 16:01:23 File "/tmp/ros_buildfarm/ros_buildfarm/sourcedeb_job.py", line 62, in get_sources 16:01:23 (source_version, pkg_version)) 16:01:23 RuntimeError: The cloned package version from the GBP (1.2.4-1bionic) does not match the expected package version from the distribution file (0.2.4-1) 16:01:24 Build step 'Execute shell' marked build as failure 16:01:24 $ ssh-agent -k 16:01:24 unset SSH_AUTH_SOCK; 16:01:24 unset SSH_AGENT_PID; 16:01:24 echo Agent pid 27729 killed; 16:01:24 [ssh-agent] Stopped. 16:01:24 [description-setter] Could not determine description. 16:01:24 Sending e-mails to: lcas-build-farm@googlegroups.com 16:01:24 Build step 'When Failed To Build, Disable Job' marked build as failure 16:01:24 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered 16:01:24 Finished: FAILURE