Console Output
20:29:32 Started by upstream project "Krel_trigger-jobs" build number 81248 20:29:32 originally caused by: 20:29:32 Started by upstream project "Krel_reconfigure-jobs" build number 2302 20:29:32 originally caused by: 20:29:32 Started by user SYSTEM 20:29:33 Building remotely on build client 1 (slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source 20:29:33 [ssh-agent] Looking for ssh-agent implementation... 20:29:33 [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) 20:29:33 $ ssh-agent 20:29:33 SSH_AUTH_SOCK=/tmp/ssh-9hgrcArbrt73/agent.22709 20:29:33 SSH_AGENT_PID=22711 20:29:33 [ssh-agent] Started. 20:29:33 $ ssh-add /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source@tmp/private_key_5139623720045634561.key 20:29:33 Identity added: /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source@tmp/private_key_5139623720045634561.key (/home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source@tmp/private_key_5139623720045634561.key) 20:29:33 [ssh-agent] Using credentials jenkins-slave20:29:33 [Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson716151388595547223.sh 20:29:33 + echo # BEGIN SECTION: docker version1. Check free disk spaceHide Details
20:29:33 # BEGIN SECTION: Check free disk space 20:29:33 Usable disk space = 17693495296 bytes 20:29:33 Free space threshold = 5368709120 bytes 20:29:33 # END SECTION20:29:33 + echo # BEGIN SECTION: docker info2. docker versionHide Details
20:29:33 # BEGIN SECTION: docker version 20:29:33 + docker version 20:29:33 Client: 20:29:33 Version: 1.9.1 20:29:33 API version: 1.21 20:29:33 Go version: go1.4.2 20:29:33 Git commit: a34a1d5 20:29:33 Built: Fri Nov 20 13:12:04 UTC 2015 20:29:33 OS/Arch: linux/amd64 20:29:33 20:29:33 Server: 20:29:33 Version: 1.9.1 20:29:33 API version: 1.21 20:29:33 Go version: go1.4.2 20:29:33 Git commit: a34a1d5 20:29:33 Built: Fri Nov 20 13:12:04 UTC 2015 20:29:33 OS/Arch: linux/amd64 20:29:33 + echo # END SECTION 20:29:33 # END SECTION20:29:34 [Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson4261171861139594943.sh 20:29:34 + echo # BEGIN SECTION: Check docker status3. docker infoHide Details
20:29:33 # BEGIN SECTION: docker info 20:29:33 + docker info 20:29:34 Containers: 352 20:29:34 Images: 2987 20:29:34 Server Version: 1.9.1 20:29:34 Storage Driver: aufs 20:29:34 Root Dir: /var/lib/docker/aufs 20:29:34 Backing Filesystem: extfs 20:29:34 Dirs: 4331 20:29:34 Dirperm1 Supported: false 20:29:34 Execution Driver: native-0.2 20:29:34 Logging Driver: json-file 20:29:34 Kernel Version: 3.13.0-29-generic 20:29:34 Operating System: Ubuntu 14.04 LTS 20:29:34 CPUs: 2 20:29:34 Total Memory: 3.861 GiB 20:29:34 Name: lcas-buildfarm-slave-2 20:29:34 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE 20:29:34 WARNING: No swap limit support 20:29:34 + echo # END SECTION 20:29:34 # END SECTION20:29:36 [Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson8128540255768898051.sh 20:29:36 + echo # BEGIN SECTION: Embed wrapper scripts4. Check docker statusHide Details
20:29:34 # BEGIN SECTION: Check docker status 20:29:34 + echo Testing trivial docker invocation... 20:29:34 Testing trivial docker invocation... 20:29:34 + docker run --rm ubuntu:xenial true 20:29:35 + echo 'docker run' returned 0 20:29:35 'docker run' returned 0 20:29:35 docker seems operational, continuing 20:29:35 [Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson705237103966878889.sh 20:29:35 + echo # END SECTION 20:29:35 # END SECTION20:29:36 [Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson55140271900990089.sh 20:29:36 + echo # BEGIN SECTION: Clone ros_buildfarm5. Embed wrapper scriptsHide Details
20:29:36 # BEGIN SECTION: Embed wrapper scripts 20:29:36 + rm -fr wrapper_scripts 20:29:36 + mkdir wrapper_scripts 20:29:36 + 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()) 20:29:36 + echo # END SECTION 20:29:36 # END SECTION20:29:38 [Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson5796976100321882341.sh 20:29:38 + echo # BEGIN SECTION: Write PGP repository keys6. Clone ros_buildfarmHide Details
20:29:36 # BEGIN SECTION: Clone ros_buildfarm 20:29:36 + rm -fr ros_buildfarm 20:29:36 + python3 -u wrapper_scripts/git.py clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm 20:29:36 Invoking 'git clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 20:29:36 Cloning into 'ros_buildfarm'... 20:29:38 + git -C ros_buildfarm --no-pager log -n 1 20:29:38 commit aca918fa40d6391d4894b39d8d3477d2e6e0a390 20:29:38 Author: Marc Hanheide <marc@hanheide.de> 20:29:38 Date: Thu Aug 2 12:13:42 2018 +0100 20:29:38 20:29:38 added cleanup 20:29:38 + rm -fr ros_buildfarm/.git 20:29:38 + rm -fr ros_buildfarm/doc 20:29:38 + echo # END SECTION 20:29:38 # END SECTION20:29:38 [Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson8479754770993811130.sh 20:29:38 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/docker_sourcedeb 20:29:38 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/docker_sourcedeb 20:29:38 + sleep 1 20:29:38 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/ros_buildfarm/scripts/subprocess_reaper.py 23066 --cid-file /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/docker_sourcedeb/docker.cid 20:29:39 + echo # BEGIN SECTION: Generate Dockerfile - sourcedeb task7. Write PGP repository keysHide Details
20:29:38 # BEGIN SECTION: Write PGP repository keys 20:29:38 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/keys 20:29:38 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/keys/* 20:29:38 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 20:29:38 Version: GnuPG v1.4.11 (GNU/Linux) 20:29:38 20:29:38 mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn 20:29:38 MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf 20:29:38 xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw 20:29:38 kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv 20:29:38 /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh 20:29:38 EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg 20:29:38 KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD 20:29:38 BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX 20:29:38 yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 20:29:38 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy 20:29:38 JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T 20:29:38 Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ 20:29:38 Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ 20:29:38 cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM 20:29:38 hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 20:29:38 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm 20:29:38 Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 20:29:38 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb 20:29:38 oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC 20:29:38 AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U 20:29:38 NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 20:29:38 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU 20:29:38 M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N 20:29:38 l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ 20:29:38 Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== 20:29:38 =nFcN 20:29:38 -----END PGP PUBLIC KEY BLOCK----- 20:29:38 20:29:38 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 20:29:38 Version: SKS 1.1.6 20:29:38 Comment: Hostname: keyserver.ubuntu.com 20:29:38 20:29:38 mQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L 20:29:38 /HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw 20:29:38 DuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47 20:29:38 ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+ 20:29:38 d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS 20:29:38 6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN 20:29:38 qoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL 20:29:38 8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/ 20:29:38 /SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz 20:29:38 vz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90 20:29:38 aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu 20:29:38 1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur 20:29:38 F8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN 20:29:38 KARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s 20:29:38 NGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv 20:29:38 ZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO 20:29:38 K+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo 20:29:38 bC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs 20:29:38 Fn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s 20:29:38 QNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR 20:29:38 hE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp 20:29:38 PWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd 20:29:38 =4Ofr 20:29:38 -----END PGP PUBLIC KEY BLOCK----- 20:29:38 20:29:38 + echo # END SECTION 20:29:38 # END SECTION20:29:39 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb8. Generate Dockerfile - sourcedeb taskHide Details
20:29:39 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 20:29:39 + export TZ=GMT+00 20:29:39 + export PYTHONPATH=/home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/ros_buildfarm: 20:29:39 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/ros_buildfarm/scripts/release/run_sourcedeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic thorvald_gazebo_plugins ubuntu xenial --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/keys/0.key /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/keys/1.key --source-dir /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/sourcedeb/source --dockerfile-dir /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/docker_sourcedeb 20:29:39 Using the following distribution repositories: 20:29:39 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/keys/0.key) 20:29:39 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/keys/1.key) 20:29:39 Generating Dockerfile '/home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/docker_sourcedeb/Dockerfile': 20:29:39 # generated from release/sourcedeb_task.Dockerfile.em 20:29:39 20:29:39 FROM ubuntu:xenial 20:29:39 20:29:39 VOLUME ["/var/cache/apt/archives"] 20:29:39 20:29:39 ENV DEBIAN_FRONTEND noninteractive 20:29:39 20:29:39 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 20:29:39 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 20:29:39 RUN locale-gen en_US.UTF-8 20:29:39 ENV LANG en_US.UTF-8 20:29:39 ENV TZ GMT+00 20:29:39 20:29:39 RUN useradd -u 1002 -m buildfarm 20:29:39 20:29:39 20:29:39 RUN mkdir /tmp/keys 20:29:39 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 20:29:39 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 20:29:39 RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:29:39 RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:29:39 20:29:39 RUN mkdir /tmp/wrapper_scripts 20:29:39 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 '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 ]\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('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\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 20:29:39 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 20:29:39 20:29:39 # automatic invalidation once every day 20:29:39 RUN echo "2019-10-07 (+0000)" 20:29:39 20:29:39 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 20:29:39 20:29:39 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 20:29:39 20:29:39 COPY .git-credentials /home/buildfarm/.git-credentials 20:29:39 RUN chmod 600 /home/buildfarm/.git-credentials 20:29:39 RUN chown buildfarm /home/buildfarm/.git-credentials 20:29:39 20:29:39 USER buildfarm 20:29:39 RUN git config --global credential.helper 'store' 20:29:39 RUN git config --global http.sslVerify false 20:29:39 20:29:39 ENTRYPOINT ["sh", "-c"] 20:29:39 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 kinetic thorvald_gazebo_plugins ubuntu xenial 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 xenial --source-dir /tmp/sourcedeb/source"] 20:29:39 + echo # END SECTION 20:29:39 # END SECTION20:30:28 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb9. Build Dockerfile - generate sourcedebHide Details
20:29:39 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 20:29:39 + cd /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/docker_sourcedeb 20:29:39 + cp -L **** /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/docker_sourcedeb/.git-credentials 20:29:39 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 20:29:39 Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial 20:29:39 Check docker base image for updates: docker pull ubuntu:xenial 20:29:41 xenial: Pulling from library/ubuntu 20:29:41 Digest: sha256:3391caa63e4cb3b0310bcf426079c9b69f28871e987bde3c4a0c91af99a2ce37 20:29:41 Status: Image is up to date for ubuntu:xenial 20:29:41 + docker build --force-rm -t sourcedeb.kinetic_ubuntu_xenial_thorvald_gazebo_plugins . 20:29:41 Sending build context to Docker daemon 18.43 kB Sending build context to Docker daemon 18.43 kB 20:29:41 Step 1 : FROM ubuntu:xenial 20:29:41 ---> ee2e0ceec801 20:29:41 Step 2 : VOLUME /var/cache/apt/archives 20:29:43 ---> Using cache 20:29:43 ---> 4e34b0d6d3ca 20:29:43 Step 3 : ENV DEBIAN_FRONTEND noninteractive 20:29:44 ---> Using cache 20:29:44 ---> 4854e3086e8f 20:29:44 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 < 3 ]]; then sleep 5; else false; fi; done 20:29:46 ---> Using cache 20:29:46 ---> 9dcf0b4e2154 20:29:46 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 20:29:48 ---> Using cache 20:29:48 ---> fc3ae1437f24 20:29:48 Step 6 : RUN locale-gen en_US.UTF-8 20:29:50 ---> Using cache 20:29:50 ---> 83a52128b3d2 20:29:50 Step 7 : ENV LANG en_US.UTF-8 20:29:51 ---> Using cache 20:29:51 ---> b11c076ddc1b 20:29:51 Step 8 : ENV TZ GMT+00 20:29:53 ---> Using cache 20:29:53 ---> d2fa4c9ece42 20:29:53 Step 9 : RUN useradd -u 1002 -m buildfarm 20:29:55 ---> Using cache 20:29:55 ---> cdab65a53005 20:29:55 Step 10 : RUN mkdir /tmp/keys 20:29:56 ---> Using cache 20:29:56 ---> fcc7bbb54eac 20:29:56 Step 11 : 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 20:29:58 ---> Using cache 20:29:58 ---> af16c9f3e309 20:29:58 Step 12 : 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 20:30:00 ---> Using cache 20:30:00 ---> b37aed588768 20:30:00 Step 13 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:30:01 ---> Using cache 20:30:01 ---> 6f34a9aff58a 20:30:01 Step 14 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:30:03 ---> Using cache 20:30:03 ---> 5b4978322c66 20:30:03 Step 15 : RUN mkdir /tmp/wrapper_scripts 20:30:05 ---> Using cache 20:30:05 ---> fb6cb7dbbdb7 20:30:05 Step 16 : 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 '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 ]\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('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\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 20:30:06 ---> Using cache 20:30:06 ---> 2844f281dcc2 20:30:06 Step 17 : 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 20:30:09 ---> Using cache 20:30:09 ---> 671c56c338f6 20:30:09 Step 18 : RUN echo "2019-10-07 (+0000)" 20:30:11 ---> Using cache 20:30:11 ---> 362efa33b38f 20:30:11 Step 19 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 20:30:12 ---> Using cache 20:30:12 ---> f768fa82d463 20:30:12 Step 20 : 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 20:30:14 ---> Using cache 20:30:14 ---> 46a3c1397894 20:30:14 Step 21 : COPY .git-credentials /home/buildfarm/.git-credentials 20:30:16 ---> Using cache 20:30:16 ---> c78080d56de0 20:30:16 Step 22 : RUN chmod 600 /home/buildfarm/.git-credentials 20:30:18 ---> Using cache 20:30:18 ---> a4645d56d175 20:30:18 Step 23 : RUN chown buildfarm /home/buildfarm/.git-credentials 20:30:19 ---> Using cache 20:30:19 ---> 6c2a859a73db 20:30:19 Step 24 : USER buildfarm 20:30:21 ---> Using cache 20:30:21 ---> 30d24928b2ff 20:30:21 Step 25 : RUN git config --global credential.helper 'store' 20:30:23 ---> Using cache 20:30:23 ---> 91974b0e6378 20:30:23 Step 26 : RUN git config --global http.sslVerify false 20:30:25 ---> Using cache 20:30:25 ---> 3999cafdbb61 20:30:25 Step 27 : ENTRYPOINT sh -c 20:30:26 ---> Using cache 20:30:26 ---> 2bd9e78e83e2 20:30:26 Step 28 : 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 kinetic thorvald_gazebo_plugins ubuntu xenial 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 xenial --source-dir /tmp/sourcedeb/source 20:30:28 ---> Running in 1ba6b6a4d58a 20:30:28 ---> ef3f6f0abaa0 20:30:28 Removing intermediate container 1ba6b6a4d58a 20:30:28 Successfully built ef3f6f0abaa0 20:30:28 + echo # END SECTION 20:30:28 # END SECTION20:30:53 [Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson5435334709610650670.sh 20:30:53 + [ false = false ] 20:30:53 + echo # BEGIN SECTION: Clean up to save disk space on slaves10. Run Dockerfile - generate sourcedebHide Details
20:30:28 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 20:30:28 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/sourcedeb 20:30:28 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/sourcedeb/source 20:30:28 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Ksrc_uX__thorvald_gazebo_plugins__ubuntu_xenial__source/sourcedeb:/tmp/sourcedeb sourcedeb.kinetic_ubuntu_xenial_thorvald_gazebo_plugins10.1. get sourcesHide Details
20:30:29 # BEGIN SUBSECTION: get sources 20:30:40 Invoking 'git clone --branch debian/ros-kinetic-thorvald-gazebo-plugins_1.2.0-1_xenial --depth 1 --no-single-branch https://github.com/LCAS/thorvald-releases.git /tmp/sourcedeb/source' 20:30:40 Cloning into '/tmp/sourcedeb/source'... 20:30:44 Note: checking out 'e352041fdc77c39d24b370c6ef0b5a88bbba898d'. 20:30:44 20:30:44 You are in 'detached HEAD' state. You can look around, make experimental 20:30:44 changes and commit them, and you can discard any commits you make in this 20:30:44 state without impacting any branches by performing another checkout. 20:30:44 20:30:44 If you want to create a new branch to retain commits you create, you may 20:30:44 do so (now or later) by using -b with the checkout command again. Example: 20:30:44 20:30:44 git checkout -b <new-branch-name> 20:30:44 20:30:44 No tarball found at 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-kinetic-thorvald-gazebo-plugins/ros-kinetic-thorvald-gazebo-plugins_1.2.0.orig.tar.gz' 20:30:45 No tarball found at 'http://packages.ros.org/ros/ubuntu/pool/main/r/ros-kinetic-thorvald-gazebo-plugins/ros-kinetic-thorvald-gazebo-plugins_1.2.0.orig.tar.gz' 20:30:45 Package 'thorvald_gazebo_plugins' version: 1.2.0-1xenial 20:30:45 Package maintainer emails: lgrimstad@sagarobotics.com 20:30:45 # END SUBSECTION20:30:53 + echo # END SECTION 20:30:53 # END SECTION10.2. build sourcedebHide Details
20:30:45 # BEGIN SUBSECTION: build sourcedeb 20:30:45 Invoking 'gbp buildpackage --git-ignore-new --git-ignore-branch -S -us -uc --lintian-opts --suppress-tags newer-standards-version' in '/tmp/sourcedeb/source' 20:30:46 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 20:30:48 gbp:info: ros-kinetic-thorvald-gazebo-plugins_1.2.0.orig.tar.gz does not exist, creating from 'release/kinetic/thorvald_gazebo_plugins/1.2.0-1' 20:30:49 dpkg-buildpackage -rfakeroot -d -us -uc -i -I -S 20:30:49 dpkg-buildpackage: source package ros-kinetic-thorvald-gazebo-plugins 20:30:49 dpkg-buildpackage: source version 1.2.0-1xenial 20:30:49 dpkg-buildpackage: source distribution xenial 20:30:49 dpkg-buildpackage: source changed by Lars Grimstad <lgrimstad@sagarobotics.com> 20:30:49 dpkg-source -i -I --before-build source 20:30:49 dpkg-source: info: using options from source/debian/source/options: --auto-commit 20:30:49 fakeroot debian/rules clean 20:30:49 dh clean -v --buildsystem=cmake 20:30:50 dh_testdir -O-v -O--buildsystem=cmake 20:30:50 dh_auto_clean -O-v -O--buildsystem=cmake 20:30:50 dh_clean -O-v -O--buildsystem=cmake 20:30:50 rm -f debian/debhelper-build-stamp 20:30:50 rm -f debian/ros-kinetic-thorvald-gazebo-plugins.substvars 20:30:50 rm -f debian/ros-kinetic-thorvald-gazebo-plugins.*.debhelper 20:30:50 rm -rf debian/ros-kinetic-thorvald-gazebo-plugins/ 20:30:50 rm -rf debian/.debhelper/ 20:30:50 rm -f debian/*.debhelper.log 20:30:50 rm -f debian/files 20:30:50 find . \( \( \ 20:30:50 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS \) -prune -o -type f -a \ 20:30:50 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 20:30:50 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 20:30:50 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 20:30:50 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 20:30:50 \) -exec rm -f {} + \) -o \ 20:30:50 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 20:30:50 rm -f *-stamp 20:30:50 dpkg-source -i -I -b source 20:30:50 dpkg-source: info: using options from source/debian/source/options: --auto-commit 20:30:50 dpkg-source: info: using source format '3.0 (quilt)' 20:30:50 dpkg-source: info: building ros-kinetic-thorvald-gazebo-plugins using existing ./ros-kinetic-thorvald-gazebo-plugins_1.2.0.orig.tar.gz 20:30:50 dpkg-source: info: building ros-kinetic-thorvald-gazebo-plugins in ros-kinetic-thorvald-gazebo-plugins_1.2.0-1xenial.debian.tar.xz 20:30:50 dpkg-source: info: building ros-kinetic-thorvald-gazebo-plugins in ros-kinetic-thorvald-gazebo-plugins_1.2.0-1xenial.dsc 20:30:50 dpkg-genchanges -S >../ros-kinetic-thorvald-gazebo-plugins_1.2.0-1xenial_source.changes 20:30:50 dpkg-genchanges: warning: debian/changelog(l18): found trailer where expected start of change data 20:30:50 LINE: -- Lars Grimstad <lgrimstad@sagarobotics.com> Fri, 13 Sep 2019 00:00:00 -0000 20:30:50 dpkg-genchanges: including full source code in upload 20:30:50 dpkg-source -i -I --after-build source 20:30:51 dpkg-source: info: using options from source/debian/source/options: --auto-commit 20:30:51 dpkg-buildpackage: full upload (original source is included) 20:30:51 Now running lintian... 20:30:52 W: ros-kinetic-thorvald-gazebo-plugins source: pear-package-without-pkg-php-tools-builddep 20:30:52 W: ros-kinetic-thorvald-gazebo-plugins source: no-debian-copyright 20:30:52 W: ros-kinetic-thorvald-gazebo-plugins source: ancient-standards-version 3.9.2 (current is 3.9.7) 20:30:52 Finished running lintian. 20:30:52 # END SUBSECTION20:30:53 SSH: Connecting from host [lcas-buildfarm-slave-2] 20:30:53 SSH: Connecting with configuration [repo] ... 20:30:54 SSH: Disconnecting configuration [repo] ... 20:30:54 SSH: Transferred 4 file(s) 20:30:54 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 20:30:54 Waiting for the completion of Krel_import-package 20:30:57 Krel_import-package #5010 completed. Result was SUCCESS11. Clean up to save disk space on slavesHide Details
20:30:53 # BEGIN SECTION: Clean up to save disk space on slaves 20:30:53 + rm -fr sourcedeb/source 20:30:53 + echo # END SECTION 20:30:53 # END SECTION20:30:57 $ ssh-agent -k 20:30:57 unset SSH_AUTH_SOCK; 20:30:57 unset SSH_AGENT_PID; 20:30:57 echo Agent pid 22711 killed; 20:30:57 [ssh-agent] Stopped. 20:30:57 [description-setter] Description set: 1.2.0-1xenial 20:30:57 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered 20:30:57 Triggering a new build of Kbin_uX64__thorvald_gazebo_plugins__ubuntu_xenial_amd64__binary 20:30:57 Finished: SUCCESS12. Check if triggered build failedHide Details
20:30:57 # BEGIN SECTION: Check if triggered build failed 20:30:57 Pattern not found in build log, continuing... 20:30:57 # END SECTION