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