Console Output
10:21:36 Started by upstream project "Krel_trigger-jobs" build number 37626 10:21:36 originally caused by: 10:21:36 Started by upstream project "Krel_reconfigure-jobs" build number 1472 10:21:36 originally caused by: 10:21:36 Started by user SYSTEM 10:21:36 Building remotely on build client 1 (slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source 10:21:36 [ssh-agent] Looking for ssh-agent implementation... 10:21:37 [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) 10:21:37 $ ssh-agent 10:21:37 SSH_AUTH_SOCK=/tmp/ssh-L8Rs43bqYlOD/agent.2788 10:21:37 SSH_AGENT_PID=2790 10:21:37 [ssh-agent] Started. 10:21:37 $ ssh-add /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source@tmp/private_key_7083766910712247373.key 10:21:37 Identity added: /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source@tmp/private_key_7083766910712247373.key (/home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source@tmp/private_key_7083766910712247373.key) 10:21:37 [ssh-agent] Using credentials jenkins-slave10:21:37 [Ksrc_uX__depth_sensors__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson6686481470801427894.sh 10:21:37 + echo # BEGIN SECTION: docker version1. Check free disk spaceHide Details
10:21:37 # BEGIN SECTION: Check free disk space 10:21:37 Usable disk space = 54882586624 bytes 10:21:37 Free space threshold = 5368709120 bytes 10:21:37 # END SECTION10:21:37 + echo # BEGIN SECTION: docker info2. docker versionHide Details
10:21:37 # BEGIN SECTION: docker version 10:21:37 + docker version 10:21:37 Client: 10:21:37 Version: 1.9.1 10:21:37 API version: 1.21 10:21:37 Go version: go1.4.2 10:21:37 Git commit: a34a1d5 10:21:37 Built: Fri Nov 20 13:12:04 UTC 2015 10:21:37 OS/Arch: linux/amd64 10:21:37 10:21:37 Server: 10:21:37 Version: 1.9.1 10:21:37 API version: 1.21 10:21:37 Go version: go1.4.2 10:21:37 Git commit: a34a1d5 10:21:37 Built: Fri Nov 20 13:12:04 UTC 2015 10:21:37 OS/Arch: linux/amd64 10:21:37 + echo # END SECTION 10:21:37 # END SECTION10:21:51 [Ksrc_uX__depth_sensors__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson1862928031967178501.sh 10:21:51 + echo # BEGIN SECTION: Check docker status3. docker infoHide Details
10:21:37 # BEGIN SECTION: docker info 10:21:37 + docker info 10:21:51 Containers: 231 10:21:51 Images: 2015 10:21:51 Server Version: 1.9.1 10:21:51 Storage Driver: aufs 10:21:51 Root Dir: /var/lib/docker/aufs 10:21:51 Backing Filesystem: extfs 10:21:51 Dirs: 2770 10:21:51 Dirperm1 Supported: false 10:21:51 Execution Driver: native-0.2 10:21:51 Logging Driver: json-file 10:21:51 Kernel Version: 3.13.0-29-generic 10:21:51 Operating System: Ubuntu 14.04 LTS 10:21:51 CPUs: 2 10:21:51 Total Memory: 3.861 GiB 10:21:51 Name: lcas-buildfarm-slave-2 10:21:51 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE 10:21:51 WARNING: No swap limit support 10:21:51 + echo # END SECTION 10:21:51 # END SECTION10:21:52 [Ksrc_uX__depth_sensors__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson507048941573333184.sh 10:21:52 + echo # BEGIN SECTION: Embed wrapper scripts4. Check docker statusHide Details
10:21:51 # BEGIN SECTION: Check docker status 10:21:51 + echo Testing trivial docker invocation... 10:21:51 Testing trivial docker invocation... 10:21:51 + docker run --rm ubuntu:xenial true 10:21:52 + echo 'docker run' returned 0 10:21:52 'docker run' returned 0 10:21:52 docker seems operational, continuing 10:21:52 [Ksrc_uX__depth_sensors__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson8834362114432739407.sh 10:21:52 + echo # END SECTION 10:21:52 # END SECTION10:21:52 [Ksrc_uX__depth_sensors__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson1229088716518536395.sh 10:21:52 + echo # BEGIN SECTION: Clone ros_buildfarm5. Embed wrapper scriptsHide Details
10:21:52 # BEGIN SECTION: Embed wrapper scripts 10:21:52 + rm -fr wrapper_scripts 10:21:52 + mkdir wrapper_scripts 10:21:52 + 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()) 10:21:52 + echo # END SECTION 10:21:52 # END SECTION10:21:55 [Ksrc_uX__depth_sensors__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson1322972948190191670.sh 10:21:55 + echo # BEGIN SECTION: Write PGP repository keys6. Clone ros_buildfarmHide Details
10:21:52 # BEGIN SECTION: Clone ros_buildfarm 10:21:52 + rm -fr ros_buildfarm 10:21:52 + python3 -u wrapper_scripts/git.py clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm 10:21:52 Invoking 'git clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 10:21:52 Cloning into 'ros_buildfarm'... 10:21:55 + git -C ros_buildfarm --no-pager log -n 1 10:21:55 commit ab95b278101e21e7fce81180384f7861667352b1 10:21:55 Author: Marc Hanheide <marc@hanheide.net> 10:21:55 Date: Thu Apr 19 18:30:41 2018 +0100 10:21:55 10:21:55 added gcc and build-essential 10:21:55 + rm -fr ros_buildfarm/.git 10:21:55 + rm -fr ros_buildfarm/doc 10:21:55 + echo # END SECTION 10:21:55 # END SECTION10:21:55 [Ksrc_uX__depth_sensors__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson3703024925360138695.sh 10:21:55 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/docker_sourcedeb 10:21:55 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/docker_sourcedeb 10:21:55 + sleep 1 10:21:55 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/ros_buildfarm/scripts/subprocess_reaper.py 2989 --cid-file /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/docker_sourcedeb/docker.cid 10:21:56 + echo # BEGIN SECTION: Generate Dockerfile - sourcedeb task7. Write PGP repository keysHide Details
10:21:55 # BEGIN SECTION: Write PGP repository keys 10:21:55 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/keys 10:21:55 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/keys/* 10:21:55 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 10:21:55 Version: GnuPG v1.4.11 (GNU/Linux) 10:21:55 10:21:55 mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn 10:21:55 MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf 10:21:55 xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw 10:21:55 kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv 10:21:55 /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh 10:21:55 EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg 10:21:55 KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD 10:21:55 BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX 10:21:55 yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 10:21:55 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy 10:21:55 JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T 10:21:55 Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ 10:21:55 Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ 10:21:55 cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM 10:21:55 hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 10:21:55 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm 10:21:55 Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 10:21:55 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb 10:21:55 oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC 10:21:55 AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U 10:21:55 NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 10:21:55 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU 10:21:55 M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N 10:21:55 l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ 10:21:55 Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== 10:21:55 =nFcN 10:21:55 -----END PGP PUBLIC KEY BLOCK----- 10:21:55 10:21:55 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 10:21:55 Version: GnuPG v1 10:21:55 10:21:55 mQGiBEsy5KkRBADJbDSISoamRM5AA20bfAeBuhhaI+VaiCVcxw90sq9AI5lIc42F 10:21:55 WzM2acm8yplqWiehAqOLKd+iIrqNGZ+VavZEPTx7o06UZUMRoPBiTFaCwrQ5avKz 10:21:55 lt7ij8PRMVWNrJ7A2lDYXfFQVV1o3Xo06qVnv0KLLUmiur0LBu4H/oTH3wCgt+/I 10:21:55 D3LUKaMJsc77KwFBTjHB0EsD/26Z2Ud12f3urSNyN6VMWnP3rz6xsmtY4Qsmkbnr 10:21:55 JuduxCQBZv6bX1Cr2ulXkv0fFOr+s5OyUv7zyCPbxiJFh3Br7fJGb0b5/M208KPe 10:21:55 giITY9hMh/aUbKjXCPoOXPxSL6SWOWV8taR6903EFyLBN0qno/kXIBKnVqBZobgn 10:21:55 jIEPA/0fTnxtZtE7EpirGQMF2caJfv7/LCgXmRs9xAhgbE0/caoa1tnc79uaHmLZ 10:21:55 FtbGFoAO31YNYM/IUHtmabbGdvZ4oYUwDhjBevVvC7aI+XhuNGK5mU8qCLLSEUOl 10:21:55 CUr6BJq/0iFmjwjmwk9idZEYhqSNy2OoYJbq45rbHfbdKLEVrbQeUk9TIEJ1aWxk 10:21:55 ZXIgPHJvc2J1aWxkQHJvcy5vcmc+iGAEExECACAFAksy5KkCGwMGCwkIBwMCBBUC 10:21:55 CAMEFgIDAQIeAQIXgAAKCRBVI7rusB+hFmk7AJ0XsLp05KA8l3YzAumZfjSN04MZ 10:21:55 jQCfQHfp4aQUXdOCUtetVo0QZUX3IuO5Ag0ESzLkrhAIAOCuSC83VXYWf8gOMSzd 10:21:55 xwpsH/uLV9Wze2LGnajsJLjEOhcsz2BHfxqNXhYaE9aQaodPCpbUAkPq8tLbpXy0 10:21:55 SWRCx0F5RcplXx5vIWbP6TlfPbRpK70w7IWd6vsNrjwEHjlhOLcNcj42sp5pgx4b 10:21:55 dceK06k5Ml2hYovPnD9o2TYgjOqg5FHZ2g1J0103n/66bN/hZnpLaZJYQiPWCyq6 10:21:55 K0565i1k2Y7hgWB/OXqwaqCehqmLTvpyQGzE1UJvKLuYU+T+4hBnSPbT3KIi5fCz 10:21:55 lIwvxijOMcfbkLhzYQXcU0Rd1VItcd5nmPL4z97jBxzuhkgxXpGR4WGKhvsA2Z9Y 10:21:55 UtsAAwYH/3Bf44bTpD9bVADUdab3e7zm8iHfh9K/a83mIgDB7mHV6WuemQVTf/1d 10:21:55 eu4mI5WtpbOCoucybGfjGIIAcSxwIx6VfC7HSp4J51bOpHhbdDffUEk6QVsZjwoF 10:21:55 yn3W9W3ZVeTI+ch/Qoo5a98SnmdjN8eXI/qCuiXOHc6rXDXc2R0iox/1EAS8xGVd 10:21:55 cYZe7IWBO2CjCknyhLrWxZHoy+i1GCZ9KvPF/Ef2dmLhCydT73ZlumsY8N5vm76Q 10:21:55 ul1G7f8LNbnMgXQafRkPffrAXSVhGY3Z2IiBwFNgxcKTq479l7yedYRGeU1A+SYI 10:21:55 YmRFWHXt3rTkMlQSpxCsB0fAYfrwEqqISQQYEQIACQUCSzLkrgIbDAAKCRBVI7ru 10:21:55 sB+hFpryAJ9qNz3h3ijt9TkAV0CHufsPT6Cl4gCglfg7tJn2lsSF3HTpoDDO1Fgg 10:21:55 x9o= 10:21:55 =AGYp 10:21:55 -----END PGP PUBLIC KEY BLOCK----- 10:21:55 10:21:55 + echo # END SECTION 10:21:55 # END SECTION10:21:56 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb8. Generate Dockerfile - sourcedeb taskHide Details
10:21:56 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 10:21:56 + export TZ=GMT+00 10:21:56 + export PYTHONPATH=/home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/ros_buildfarm: 10:21:56 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/ros_buildfarm/scripts/release/run_sourcedeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic depth_sensors 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__depth_sensors__ubuntu_xenial__source/keys/0.key /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/keys/1.key --source-dir /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/sourcedeb/source --dockerfile-dir /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/docker_sourcedeb 10:21:56 Using the following distribution repositories: 10:21:56 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/keys/0.key) 10:21:56 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/keys/1.key) 10:21:56 Generating Dockerfile '/home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/docker_sourcedeb/Dockerfile': 10:21:56 # generated from release/sourcedeb_task.Dockerfile.em 10:21:56 10:21:56 FROM ubuntu:xenial 10:21:56 10:21:56 VOLUME ["/var/cache/apt/archives"] 10:21:56 10:21:56 ENV DEBIAN_FRONTEND noninteractive 10:21:56 10:21:56 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 10:21:56 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 10:21:56 RUN locale-gen en_US.UTF-8 10:21:56 ENV LANG en_US.UTF-8 10:21:56 ENV TZ GMT+00 10:21:56 10:21:56 RUN useradd -u 1002 -m buildfarm 10:21:56 10:21:56 10:21:56 RUN mkdir /tmp/keys 10:21:56 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 10:21:56 RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQGiBEsy5KkRBADJbDSISoamRM5AA20bfAeBuhhaI+VaiCVcxw90sq9AI5lIc42F\nWzM2acm8yplqWiehAqOLKd+iIrqNGZ+VavZEPTx7o06UZUMRoPBiTFaCwrQ5avKz\nlt7ij8PRMVWNrJ7A2lDYXfFQVV1o3Xo06qVnv0KLLUmiur0LBu4H/oTH3wCgt+/I\nD3LUKaMJsc77KwFBTjHB0EsD/26Z2Ud12f3urSNyN6VMWnP3rz6xsmtY4Qsmkbnr\nJuduxCQBZv6bX1Cr2ulXkv0fFOr+s5OyUv7zyCPbxiJFh3Br7fJGb0b5/M208KPe\ngiITY9hMh/aUbKjXCPoOXPxSL6SWOWV8taR6903EFyLBN0qno/kXIBKnVqBZobgn\njIEPA/0fTnxtZtE7EpirGQMF2caJfv7/LCgXmRs9xAhgbE0/caoa1tnc79uaHmLZ\nFtbGFoAO31YNYM/IUHtmabbGdvZ4oYUwDhjBevVvC7aI+XhuNGK5mU8qCLLSEUOl\nCUr6BJq/0iFmjwjmwk9idZEYhqSNy2OoYJbq45rbHfbdKLEVrbQeUk9TIEJ1aWxk\nZXIgPHJvc2J1aWxkQHJvcy5vcmc+iGAEExECACAFAksy5KkCGwMGCwkIBwMCBBUC\nCAMEFgIDAQIeAQIXgAAKCRBVI7rusB+hFmk7AJ0XsLp05KA8l3YzAumZfjSN04MZ\njQCfQHfp4aQUXdOCUtetVo0QZUX3IuO5Ag0ESzLkrhAIAOCuSC83VXYWf8gOMSzd\nxwpsH/uLV9Wze2LGnajsJLjEOhcsz2BHfxqNXhYaE9aQaodPCpbUAkPq8tLbpXy0\nSWRCx0F5RcplXx5vIWbP6TlfPbRpK70w7IWd6vsNrjwEHjlhOLcNcj42sp5pgx4b\ndceK06k5Ml2hYovPnD9o2TYgjOqg5FHZ2g1J0103n/66bN/hZnpLaZJYQiPWCyq6\nK0565i1k2Y7hgWB/OXqwaqCehqmLTvpyQGzE1UJvKLuYU+T+4hBnSPbT3KIi5fCz\nlIwvxijOMcfbkLhzYQXcU0Rd1VItcd5nmPL4z97jBxzuhkgxXpGR4WGKhvsA2Z9Y\nUtsAAwYH/3Bf44bTpD9bVADUdab3e7zm8iHfh9K/a83mIgDB7mHV6WuemQVTf/1d\neu4mI5WtpbOCoucybGfjGIIAcSxwIx6VfC7HSp4J51bOpHhbdDffUEk6QVsZjwoF\nyn3W9W3ZVeTI+ch/Qoo5a98SnmdjN8eXI/qCuiXOHc6rXDXc2R0iox/1EAS8xGVd\ncYZe7IWBO2CjCknyhLrWxZHoy+i1GCZ9KvPF/Ef2dmLhCydT73ZlumsY8N5vm76Q\nul1G7f8LNbnMgXQafRkPffrAXSVhGY3Z2IiBwFNgxcKTq479l7yedYRGeU1A+SYI\nYmRFWHXt3rTkMlQSpxCsB0fAYfrwEqqISQQYEQIACQUCSzLkrgIbDAAKCRBVI7ru\nsB+hFpryAJ9qNz3h3ijt9TkAV0CHufsPT6Cl4gCglfg7tJn2lsSF3HTpoDDO1Fgg\nx9o=\n=AGYp\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 10:21:56 RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 10:21:56 RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 10:21:56 10:21:56 RUN mkdir /tmp/wrapper_scripts 10:21:56 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 10:21:56 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 10:21:56 10:21:56 # automatic invalidation once every day 10:21:56 RUN echo "2018-07-18 (+0000)" 10:21:56 10:21:56 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 10:21:56 10:21:56 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 10:21:56 10:21:56 COPY .git-credentials /home/buildfarm/.git-credentials 10:21:56 RUN chmod 600 /home/buildfarm/.git-credentials 10:21:56 RUN chown buildfarm /home/buildfarm/.git-credentials 10:21:56 10:21:56 USER buildfarm 10:21:56 RUN git config --global credential.helper 'store' 10:21:56 RUN git config --global http.sslVerify false 10:21:56 10:21:56 ENTRYPOINT ["sh", "-c"] 10:21:56 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 depth_sensors 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"] 10:21:56 + echo # END SECTION 10:21:56 # END SECTION10:22:17 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb9. Build Dockerfile - generate sourcedebHide Details
10:21:56 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 10:21:56 + cd /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/docker_sourcedeb 10:21:56 + cp -L **** /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/docker_sourcedeb/.git-credentials 10:21:56 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 10:21:57 Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial 10:21:57 Check docker base image for updates: docker pull ubuntu:xenial 10:21:58 xenial: Pulling from library/ubuntu 10:21:58 Digest: sha256:f01976f6dc6303c5518155e3ffcfbffef77a1f47ee3084092181a298952ab268 10:21:58 Status: Image is up to date for ubuntu:xenial 10:21:58 + docker build --force-rm -t sourcedeb.kinetic_ubuntu_xenial_depth_sensors . 10:21:58 Sending build context to Docker daemon 18.43 kB Sending build context to Docker daemon 18.43 kB 10:21:58 Step 1 : FROM ubuntu:xenial 10:21:58 ---> 19d7fc8e7217 10:21:58 Step 2 : VOLUME /var/cache/apt/archives 10:21:59 ---> Using cache 10:21:59 ---> ae172ed14248 10:21:59 Step 3 : ENV DEBIAN_FRONTEND noninteractive 10:21:59 ---> Using cache 10:21:59 ---> c9baa78e1796 10:21:59 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 10:22:00 ---> Using cache 10:22:00 ---> 3e0c071d4f1c 10:22:00 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 10:22:01 ---> Using cache 10:22:01 ---> eacc91ddd5e0 10:22:01 Step 6 : RUN locale-gen en_US.UTF-8 10:22:01 ---> Using cache 10:22:01 ---> 9aaf0f568285 10:22:01 Step 7 : ENV LANG en_US.UTF-8 10:22:02 ---> Using cache 10:22:02 ---> a95f7663fc8a 10:22:02 Step 8 : ENV TZ GMT+00 10:22:03 ---> Using cache 10:22:03 ---> c38bc7e67113 10:22:03 Step 9 : RUN useradd -u 1002 -m buildfarm 10:22:03 ---> Using cache 10:22:03 ---> 109f9ab5d35f 10:22:03 Step 10 : RUN mkdir /tmp/keys 10:22:04 ---> Using cache 10:22:04 ---> 7b3261b9c4bc 10:22:04 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 10:22:05 ---> Using cache 10:22:05 ---> 2d27528d090b 10:22:05 Step 12 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQGiBEsy5KkRBADJbDSISoamRM5AA20bfAeBuhhaI+VaiCVcxw90sq9AI5lIc42F\nWzM2acm8yplqWiehAqOLKd+iIrqNGZ+VavZEPTx7o06UZUMRoPBiTFaCwrQ5avKz\nlt7ij8PRMVWNrJ7A2lDYXfFQVV1o3Xo06qVnv0KLLUmiur0LBu4H/oTH3wCgt+/I\nD3LUKaMJsc77KwFBTjHB0EsD/26Z2Ud12f3urSNyN6VMWnP3rz6xsmtY4Qsmkbnr\nJuduxCQBZv6bX1Cr2ulXkv0fFOr+s5OyUv7zyCPbxiJFh3Br7fJGb0b5/M208KPe\ngiITY9hMh/aUbKjXCPoOXPxSL6SWOWV8taR6903EFyLBN0qno/kXIBKnVqBZobgn\njIEPA/0fTnxtZtE7EpirGQMF2caJfv7/LCgXmRs9xAhgbE0/caoa1tnc79uaHmLZ\nFtbGFoAO31YNYM/IUHtmabbGdvZ4oYUwDhjBevVvC7aI+XhuNGK5mU8qCLLSEUOl\nCUr6BJq/0iFmjwjmwk9idZEYhqSNy2OoYJbq45rbHfbdKLEVrbQeUk9TIEJ1aWxk\nZXIgPHJvc2J1aWxkQHJvcy5vcmc+iGAEExECACAFAksy5KkCGwMGCwkIBwMCBBUC\nCAMEFgIDAQIeAQIXgAAKCRBVI7rusB+hFmk7AJ0XsLp05KA8l3YzAumZfjSN04MZ\njQCfQHfp4aQUXdOCUtetVo0QZUX3IuO5Ag0ESzLkrhAIAOCuSC83VXYWf8gOMSzd\nxwpsH/uLV9Wze2LGnajsJLjEOhcsz2BHfxqNXhYaE9aQaodPCpbUAkPq8tLbpXy0\nSWRCx0F5RcplXx5vIWbP6TlfPbRpK70w7IWd6vsNrjwEHjlhOLcNcj42sp5pgx4b\ndceK06k5Ml2hYovPnD9o2TYgjOqg5FHZ2g1J0103n/66bN/hZnpLaZJYQiPWCyq6\nK0565i1k2Y7hgWB/OXqwaqCehqmLTvpyQGzE1UJvKLuYU+T+4hBnSPbT3KIi5fCz\nlIwvxijOMcfbkLhzYQXcU0Rd1VItcd5nmPL4z97jBxzuhkgxXpGR4WGKhvsA2Z9Y\nUtsAAwYH/3Bf44bTpD9bVADUdab3e7zm8iHfh9K/a83mIgDB7mHV6WuemQVTf/1d\neu4mI5WtpbOCoucybGfjGIIAcSxwIx6VfC7HSp4J51bOpHhbdDffUEk6QVsZjwoF\nyn3W9W3ZVeTI+ch/Qoo5a98SnmdjN8eXI/qCuiXOHc6rXDXc2R0iox/1EAS8xGVd\ncYZe7IWBO2CjCknyhLrWxZHoy+i1GCZ9KvPF/Ef2dmLhCydT73ZlumsY8N5vm76Q\nul1G7f8LNbnMgXQafRkPffrAXSVhGY3Z2IiBwFNgxcKTq479l7yedYRGeU1A+SYI\nYmRFWHXt3rTkMlQSpxCsB0fAYfrwEqqISQQYEQIACQUCSzLkrgIbDAAKCRBVI7ru\nsB+hFpryAJ9qNz3h3ijt9TkAV0CHufsPT6Cl4gCglfg7tJn2lsSF3HTpoDDO1Fgg\nx9o=\n=AGYp\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 10:22:06 ---> Using cache 10:22:06 ---> 65e9241e747f 10:22:06 Step 13 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 10:22:06 ---> Using cache 10:22:06 ---> afbf2c032e16 10:22:06 Step 14 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 10:22:07 ---> Using cache 10:22:07 ---> dcc5de60a046 10:22:07 Step 15 : RUN mkdir /tmp/wrapper_scripts 10:22:08 ---> Using cache 10:22:08 ---> 9c79b3ee91c4 10:22:08 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 10:22:08 ---> Using cache 10:22:08 ---> 341cfa724c28 10:22:08 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 10:22:09 ---> Using cache 10:22:09 ---> eb7e00f0bae9 10:22:09 Step 18 : RUN echo "2018-07-18 (+0000)" 10:22:10 ---> Using cache 10:22:10 ---> 33106815d3f3 10:22:10 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 10:22:10 ---> Using cache 10:22:10 ---> a0cb02b4e948 10:22: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 10:22:11 ---> Using cache 10:22:11 ---> 90d3811b34b4 10:22:11 Step 21 : COPY .git-credentials /home/buildfarm/.git-credentials 10:22:12 ---> Using cache 10:22:12 ---> 2ebc25115c6e 10:22:12 Step 22 : RUN chmod 600 /home/buildfarm/.git-credentials 10:22:12 ---> Using cache 10:22:12 ---> c7e5241e45e4 10:22:12 Step 23 : RUN chown buildfarm /home/buildfarm/.git-credentials 10:22:13 ---> Using cache 10:22:13 ---> 3b0b8d54f8c4 10:22:13 Step 24 : USER buildfarm 10:22:14 ---> Using cache 10:22:14 ---> df3e013577de 10:22:14 Step 25 : RUN git config --global credential.helper 'store' 10:22:15 ---> Using cache 10:22:15 ---> d9083db5e1e9 10:22:15 Step 26 : RUN git config --global http.sslVerify false 10:22:15 ---> Using cache 10:22:15 ---> d6d9b20d677c 10:22:15 Step 27 : ENTRYPOINT sh -c 10:22:16 ---> Using cache 10:22:16 ---> 2d4f61136d5a 10:22:16 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 depth_sensors 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 10:22:17 ---> Running in 042ea936cef0 10:22:17 ---> 2ce37a39c154 10:22:17 Removing intermediate container 042ea936cef0 10:22:17 Successfully built 2ce37a39c154 10:22:17 + echo # END SECTION 10:22:17 # END SECTION10:22:49 [Ksrc_uX__depth_sensors__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson7129633929045862764.sh 10:22:49 + [ false = false ] 10:22:49 + echo # BEGIN SECTION: Clean up to save disk space on slaves10. Run Dockerfile - generate sourcedebHide Details
10:22:17 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 10:22:17 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/sourcedeb 10:22:17 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/sourcedeb/source 10:22:17 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Ksrc_uX__depth_sensors__ubuntu_xenial__source/sourcedeb:/tmp/sourcedeb sourcedeb.kinetic_ubuntu_xenial_depth_sensors10.1. get sourcesHide Details
10:22:20 # BEGIN SUBSECTION: get sources 10:22:28 Invoking 'git clone --branch debian/ros-kinetic-depth-sensors_0.0.1-0_xenial --depth 1 --no-single-branch https://github.com/lcas-releases/depth_sensors.git /tmp/sourcedeb/source' 10:22:28 Cloning into '/tmp/sourcedeb/source'... 10:22:32 Note: checking out 'eac59312df7e909b3b64a23c72b48e8da81faaed'. 10:22:32 10:22:32 You are in 'detached HEAD' state. You can look around, make experimental 10:22:32 changes and commit them, and you can discard any commits you make in this 10:22:32 state without impacting any branches by performing another checkout. 10:22:32 10:22:32 If you want to create a new branch to retain commits you create, you may 10:22:32 do so (now or later) by using -b with the checkout command again. Example: 10:22:32 10:22:32 git checkout -b <new-branch-name> 10:22:32 10:22:34 No tarball found at 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-kinetic-depth-sensors/ros-kinetic-depth-sensors_0.0.1.orig.tar.gz' 10:22:34 No tarball found at 'http://packages.ros.org/ros/ubuntu/pool/main/r/ros-kinetic-depth-sensors/ros-kinetic-depth-sensors_0.0.1.orig.tar.gz' 10:22:34 Package 'depth_sensors' version: 0.0.1-0xenial 10:22:34 Package maintainer emails: mfernandezcarmona@lincoln.ac.uk 10:22:34 # END SUBSECTION10:22:49 + echo # END SECTION 10:22:49 # END SECTION10.2. build sourcedebHide Details
10:22:34 # BEGIN SUBSECTION: build sourcedeb 10:22:34 Invoking 'gbp buildpackage --git-ignore-new --git-ignore-branch -S -us -uc --lintian-opts --suppress-tags newer-standards-version' in '/tmp/sourcedeb/source' 10:22:37 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 10:22:39 gbp:info: ros-kinetic-depth-sensors_0.0.1.orig.tar.gz does not exist, creating from 'release/kinetic/depth_sensors/0.0.1-0' 10:22:41 dpkg-buildpackage -rfakeroot -d -us -uc -i -I -S 10:22:41 dpkg-buildpackage: source package ros-kinetic-depth-sensors 10:22:41 dpkg-buildpackage: source version 0.0.1-0xenial 10:22:41 dpkg-buildpackage: source distribution xenial 10:22:41 dpkg-buildpackage: source changed by Manuel Fernandez <mfernandezcarmona@lincoln.ac.uk> 10:22:41 dpkg-source -i -I --before-build source 10:22:41 dpkg-source: info: using options from source/debian/source/options: --auto-commit 10:22:41 fakeroot debian/rules clean 10:22:42 dh clean -v --buildsystem=cmake 10:22:42 dh_testdir -O-v -O--buildsystem=cmake 10:22:42 dh_auto_clean -O-v -O--buildsystem=cmake 10:22:42 dh_clean -O-v -O--buildsystem=cmake 10:22:42 rm -f debian/debhelper-build-stamp 10:22:42 rm -f debian/ros-kinetic-depth-sensors.substvars 10:22:42 rm -f debian/ros-kinetic-depth-sensors.*.debhelper 10:22:42 rm -rf debian/ros-kinetic-depth-sensors/ 10:22:43 rm -rf debian/.debhelper/ 10:22:43 rm -f debian/*.debhelper.log 10:22:43 rm -f debian/files 10:22:43 find . \( \( \ 10:22:43 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS \) -prune -o -type f -a \ 10:22:43 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 10:22:43 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 10:22:43 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 10:22:43 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 10:22:43 \) -exec rm -f {} + \) -o \ 10:22:43 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 10:22:43 rm -f *-stamp 10:22:43 dpkg-source -i -I -b source 10:22:43 dpkg-source: info: using options from source/debian/source/options: --auto-commit 10:22:43 dpkg-source: info: using source format '3.0 (quilt)' 10:22:43 dpkg-source: info: building ros-kinetic-depth-sensors using existing ./ros-kinetic-depth-sensors_0.0.1.orig.tar.gz 10:22:43 dpkg-source: info: building ros-kinetic-depth-sensors in ros-kinetic-depth-sensors_0.0.1-0xenial.debian.tar.xz 10:22:43 dpkg-source: info: building ros-kinetic-depth-sensors in ros-kinetic-depth-sensors_0.0.1-0xenial.dsc 10:22:43 dpkg-genchanges -S >../ros-kinetic-depth-sensors_0.0.1-0xenial_source.changes 10:22:44 dpkg-genchanges: including full source code in upload 10:22:44 dpkg-source -i -I --after-build source 10:22:44 dpkg-source: info: using options from source/debian/source/options: --auto-commit 10:22:44 dpkg-buildpackage: full upload (original source is included) 10:22:44 Now running lintian... 10:22:48 W: ros-kinetic-depth-sensors source: pear-package-without-pkg-php-tools-builddep 10:22:48 W: ros-kinetic-depth-sensors source: no-debian-copyright 10:22:48 W: ros-kinetic-depth-sensors source: ancient-standards-version 3.9.2 (current is 3.9.7) 10:22:48 Finished running lintian. 10:22:48 # END SUBSECTION10:22:49 SSH: Connecting from host [lcas-buildfarm-slave-2] 10:22:49 SSH: Connecting with configuration [repo] ... 10:22:49 SSH: Disconnecting configuration [repo] ... 10:22:49 SSH: Transferred 4 file(s) 10:22:49 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 10:22:49 Waiting for the completion of Krel_import-package 10:22:53 Krel_import-package #2365 completed. Result was SUCCESS11. Clean up to save disk space on slavesHide Details
10:22:49 # BEGIN SECTION: Clean up to save disk space on slaves 10:22:49 + rm -fr sourcedeb/source 10:22:49 + echo # END SECTION 10:22:49 # END SECTION10:22:53 $ ssh-agent -k 10:22:53 unset SSH_AUTH_SOCK; 10:22:53 unset SSH_AGENT_PID; 10:22:53 echo Agent pid 2790 killed; 10:22:53 [ssh-agent] Stopped. 10:22:53 [description-setter] Description set: 0.0.1-0xenial 10:22:53 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered 10:22:53 Triggering a new build of Kbin_uX64__depth_sensors__ubuntu_xenial_amd64__binary 10:22:53 Finished: SUCCESS12. Check if triggered build failedHide Details
10:22:53 # BEGIN SECTION: Check if triggered build failed 10:22:53 Pattern not found in build log, continuing... 10:22:53 # END SECTION