15:45:38 Started by upstream project "Mrel_trigger-jobs" build number 1346 15:45:38 originally caused by: 15:45:38 Started by timer 15:45:38 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 15:45:38 [ssh-agent] Looking for ssh-agent implementation... 15:45:38 [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) 15:45:38 $ ssh-agent 15:45:38 SSH_AUTH_SOCK=/tmp/ssh-EccupvAVFQnI/agent.27355 15:45:38 SSH_AGENT_PID=27357 15:45:38 [ssh-agent] Started. 15:45:38 $ ssh-add /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source@tmp/private_key_4754611489462241039.key 15:45:38 Identity added: /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source@tmp/private_key_4754611489462241039.key (/home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source@tmp/private_key_4754611489462241039.key) 15:45:38 [ssh-agent] Using credentials jenkins-slave
1. Check free disk space

Hide Details

15:45:38 # BEGIN SECTION: Check free disk space 15:45:38 Usable disk space = 55370399744 bytes 15:45:38 Free space threshold = 5368709120 bytes 15:45:38 # END SECTION
15:45:38 [Msrc_uB__whycon_ros__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson4798462719327951800.sh 15:45:38 + echo # BEGIN SECTION: docker version
2. docker version

Hide Details

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

Hide Details

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

Hide Details

15:45:39 # BEGIN SECTION: Check docker status 15:45:39 + echo Testing trivial docker invocation... 15:45:39 Testing trivial docker invocation... 15:45:39 + docker run --rm ubuntu:bionic true 15:45:40 + echo 'docker run' returned 0 15:45:40 'docker run' returned 0 15:45:40 docker seems operational, continuing 15:45:40 [Msrc_uB__whycon_ros__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson4592538573156974609.sh 15:45:40 + echo # END SECTION 15:45:40 # END SECTION
15:45:40 [Msrc_uB__whycon_ros__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson4106210393810513377.sh 15:45:40 + echo # BEGIN SECTION: Embed wrapper scripts
5. Embed wrapper scripts

Hide Details

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

Hide Details

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

Hide Details

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

Hide Details

15:45:43 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 15:45:43 + export TZ=GMT+00 15:45:43 + export PYTHONPATH=/home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/ros_buildfarm: 15:45:43 + 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 15:45:43 Using the following distribution repositories: 15:45:43 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/keys/0.key) 15:45:43 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/keys/1.key) 15:45:43 Generating Dockerfile '/home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/docker_sourcedeb/Dockerfile': 15:45:43 # generated from release/sourcedeb_task.Dockerfile.em 15:45:43 15:45:43 FROM ubuntu:bionic 15:45:43 15:45:43 VOLUME ["/var/cache/apt/archives"] 15:45:43 15:45:43 ENV DEBIAN_FRONTEND noninteractive 15:45:43 15:45:43 15:45:43 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 15:45:43 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 15:45:43 RUN locale-gen en_US.UTF-8 15:45:43 ENV LANG en_US.UTF-8 15:45:43 ENV TZ GMT+00 15:45:43 15:45:43 RUN useradd -u 1002 -l -m buildfarm 15:45:43 15:45:43 RUN mkdir /tmp/keys 15:45:43 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 15:45:43 RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 15:45:43 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 15:45:43 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:45:43 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:45:43 15:45:43 RUN mkdir /tmp/wrapper_scripts 15:45:43 RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py 15:45:43 RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py 15:45:43 15:45:43 # automatic invalidation once every day 15:45:43 RUN echo "2019-11-21 (+0000)" 15:45:43 15:45:43 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 15:45:43 15:45:43 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 15:45:43 15:45:43 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 15:45:43 15:45:43 COPY .git-credentials /home/buildfarm/.git-credentials 15:45:43 RUN chmod 600 /home/buildfarm/.git-credentials 15:45:43 RUN chown buildfarm /home/buildfarm/.git-credentials 15:45:43 15:45:43 USER buildfarm 15:45:43 RUN git config --global credential.helper 'store' 15:45:43 RUN git config --global http.sslVerify false 15:45:43 15:45:43 ENTRYPOINT ["sh", "-c"] 15:45:43 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"] 15:45:43 + echo # END SECTION 15:45:43 # END SECTION
15:45:43 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb
9. Build Dockerfile - generate sourcedeb

Hide Details

15:45:43 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 15:45:43 + cd /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/docker_sourcedeb 15:45:43 + cp -L **** /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/docker_sourcedeb/.git-credentials 15:45:43 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 15:45:43 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 15:45:43 Check docker base image for updates: docker pull ubuntu:bionic 15:45:44 bionic: Pulling from library/ubuntu 15:45:44 Digest: sha256:1d1c09d1d5e42265dd6e7d35dcc73373f0e1b76da661463f24487ac3dbeb673f 15:45:44 Status: Image is up to date for ubuntu:bionic 15:45:44 + docker build --force-rm -t sourcedeb.melodic_ubuntu_bionic_whycon_ros . 15:45:44 Sending build context to Docker daemon 18.43 kB Sending build context to Docker daemon 18.43 kB 15:45:44 Step 1 : FROM ubuntu:bionic 15:45:44 ---> 6120d8e09b3f 15:45:44 Step 2 : VOLUME /var/cache/apt/archives 15:45:45 ---> Using cache 15:45:45 ---> b29f905cce33 15:45:45 Step 3 : ENV DEBIAN_FRONTEND noninteractive 15:45:45 ---> Using cache 15:45:45 ---> cd2d1e1fc9d8 15:45:45 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 15:45:46 ---> Using cache 15:45:46 ---> 2cf434bfa57b 15:45:46 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 15:45:46 ---> Using cache 15:45:46 ---> 38a47bd55e34 15:45:46 Step 6 : RUN locale-gen en_US.UTF-8 15:45:47 ---> Using cache 15:45:47 ---> a498930da307 15:45:47 Step 7 : ENV LANG en_US.UTF-8 15:45:47 ---> Using cache 15:45:47 ---> 1118ba2e1e0c 15:45:47 Step 8 : ENV TZ GMT+00 15:45:47 ---> Using cache 15:45:47 ---> 474f1ddcf34d 15:45:47 Step 9 : RUN useradd -u 1002 -l -m buildfarm 15:45:48 ---> Using cache 15:45:48 ---> 75ab071ab49c 15:45:48 Step 10 : RUN mkdir /tmp/keys 15:45:48 ---> Using cache 15:45:48 ---> 639e36792fe5 15:45:48 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 15:45:49 ---> Using cache 15:45:49 ---> 2d1b1ddcfc6e 15:45:49 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 15:45:49 ---> Using cache 15:45:49 ---> 804c353569ef 15:45:49 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 15:45:49 ---> Using cache 15:45:49 ---> fac92929fa2b 15:45:49 Step 14 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:45:50 ---> Using cache 15:45:50 ---> 7202cfa3034e 15:45:50 Step 15 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 15:45:50 ---> Using cache 15:45:50 ---> e23035c489df 15:45:50 Step 16 : RUN mkdir /tmp/wrapper_scripts 15:45:51 ---> Using cache 15:45:51 ---> be106cf51bce 15:45:51 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 15:45:51 ---> Using cache 15:45:51 ---> abe287445756 15:45:51 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 15:45:51 ---> Using cache 15:45:51 ---> 1e6e80075fd2 15:45:51 Step 19 : RUN echo "2019-11-21 (+0000)" 15:45:52 ---> Using cache 15:45:52 ---> cc2f3a2e023b 15:45:52 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 15:45:52 ---> Using cache 15:45:52 ---> 2ae0a5da06e0 15:45:52 Step 21 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 15:45:53 ---> Using cache 15:45:53 ---> 7b98da24bdc9 15:45:53 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 15:45:53 ---> Using cache 15:45:53 ---> 6718234174a7 15:45:53 Step 23 : COPY .git-credentials /home/buildfarm/.git-credentials 15:45:53 ---> Using cache 15:45:53 ---> a9cbbe12bbd5 15:45:53 Step 24 : RUN chmod 600 /home/buildfarm/.git-credentials 15:45:54 ---> Using cache 15:45:54 ---> a00a16a66332 15:45:54 Step 25 : RUN chown buildfarm /home/buildfarm/.git-credentials 15:45:54 ---> Using cache 15:45:54 ---> c0df19661f3d 15:45:54 Step 26 : USER buildfarm 15:45:55 ---> Using cache 15:45:55 ---> e8ce7e428bb6 15:45:55 Step 27 : RUN git config --global credential.helper 'store' 15:45:55 ---> Using cache 15:45:55 ---> fe9d7ebec5a2 15:45:55 Step 28 : RUN git config --global http.sslVerify false 15:45:55 ---> Using cache 15:45:55 ---> 81fa7a6e6366 15:45:55 Step 29 : ENTRYPOINT sh -c 15:45:56 ---> Using cache 15:45:56 ---> d8c949d8a342 15:45:56 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 15:45:56 ---> Using cache 15:45:56 ---> d1386e52cb6a 15:45:56 Successfully built d1386e52cb6a 15:45:56 + echo # END SECTION 15:45:56 # END SECTION
15:45:56 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb
10. Run Dockerfile - generate sourcedeb

Hide Details

15:45:56 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 15:45:56 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/sourcedeb 15:45:56 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__whycon_ros__ubuntu_bionic__source/sourcedeb/source 15:45:56 + 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

15:45:57 # BEGIN SUBSECTION: get sources 15:46:02 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' 15:46:02 Cloning into '/tmp/sourcedeb/source'... 15:46:05 Note: checking out '5a032f6f509a7183ff6da4184c50833d3b5eb675'. 15:46:05 15:46:05 You are in 'detached HEAD' state. You can look around, make experimental 15:46:05 changes and commit them, and you can discard any commits you make in this 15:46:05 state without impacting any branches by performing another checkout. 15:46:05 15:46:05 If you want to create a new branch to retain commits you create, you may 15:46:05 do so (now or later) by using -b with the checkout command again. Example: 15:46:05 15:46:05 git checkout -b <new-branch-name> 15:46:05 15:46:05 # END SUBSECTION
15:46:05 Traceback (most recent call last): 15:46:05 File "/tmp/ros_buildfarm/scripts/release/get_sources.py", line 50, in <module> 15:46:05 sys.exit(main()) 15:46:05 File "/tmp/ros_buildfarm/scripts/release/get_sources.py", line 46, in main 15:46:05 args.os_name, args.os_code_name, args.source_dir, args.debian_repository_urls) 15:46:05 File "/tmp/ros_buildfarm/ros_buildfarm/sourcedeb_job.py", line 62, in get_sources 15:46:05 (source_version, pkg_version)) 15:46:05 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) 15:46:05 Build step 'Execute shell' marked build as failure 15:46:05 $ ssh-agent -k 15:46:05 unset SSH_AUTH_SOCK; 15:46:05 unset SSH_AGENT_PID; 15:46:05 echo Agent pid 27357 killed; 15:46:05 [ssh-agent] Stopped. 15:46:05 [description-setter] Could not determine description. 15:46:05 Sending e-mails to: lcas-build-farm@googlegroups.com 15:46:05 Build step 'When Failed To Build, Disable Job' marked build as failure 15:46:05 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered 15:46:05 Finished: FAILURE