Console Output
22:16:33 Started by upstream project "Krel_trigger-jobs" build number 47008 22:16:33 originally caused by: 22:16:33 Started by timer 22:16:33 Building remotely on build client 3 (slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source 22:16:33 [ssh-agent] Looking for ssh-agent implementation... 22:16:33 [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) 22:16:33 $ ssh-agent 22:16:33 SSH_AUTH_SOCK=/tmp/ssh-K5sFSwaG1Sau/agent.4576 22:16:33 SSH_AGENT_PID=4578 22:16:33 [ssh-agent] Started. 22:16:33 $ ssh-add /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source@tmp/private_key_4735307406224076376.key 22:16:34 Identity added: /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source@tmp/private_key_4735307406224076376.key (/home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source@tmp/private_key_4735307406224076376.key) 22:16:34 [ssh-agent] Using credentials jenkins-slave22:16:34 [Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson8592268767655639705.sh 22:16:34 + echo # BEGIN SECTION: docker version1. Check free disk spaceHide Details
22:16:34 # BEGIN SECTION: Check free disk space 22:16:34 Usable disk space = 71475744768 bytes 22:16:34 Free space threshold = 5368709120 bytes 22:16:34 # END SECTION22:16:34 + echo # BEGIN SECTION: docker info2. docker versionHide Details
22:16:34 # BEGIN SECTION: docker version 22:16:34 + docker version 22:16:34 Client: 22:16:34 Version: 1.9.1 22:16:34 API version: 1.21 22:16:34 Go version: go1.4.2 22:16:34 Git commit: a34a1d5 22:16:34 Built: Fri Nov 20 13:12:04 UTC 2015 22:16:34 OS/Arch: linux/amd64 22:16:34 22:16:34 Server: 22:16:34 Version: 1.9.1 22:16:34 API version: 1.21 22:16:34 Go version: go1.4.2 22:16:34 Git commit: a34a1d5 22:16:34 Built: Fri Nov 20 13:12:04 UTC 2015 22:16:34 OS/Arch: linux/amd64 22:16:34 + echo # END SECTION 22:16:34 # END SECTION22:16:49 [Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson4454530450356901981.sh 22:16:49 + echo # BEGIN SECTION: Check docker status3. docker infoHide Details
22:16:34 # BEGIN SECTION: docker info 22:16:34 + docker info 22:16:49 Containers: 348 22:16:49 Images: 1922 22:16:49 Server Version: 1.9.1 22:16:49 Storage Driver: aufs 22:16:49 Root Dir: /var/lib/docker/aufs 22:16:49 Backing Filesystem: extfs 22:16:49 Dirs: 2996 22:16:49 Dirperm1 Supported: false 22:16:49 Execution Driver: native-0.2 22:16:49 Logging Driver: json-file 22:16:49 Kernel Version: 3.13.0-29-generic 22:16:49 Operating System: Ubuntu 14.04 LTS 22:16:49 CPUs: 2 22:16:49 Total Memory: 3.861 GiB 22:16:49 Name: lcas-buildfarm-slave-3 22:16:49 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE 22:16:49 WARNING: No swap limit support 22:16:49 + echo # END SECTION 22:16:49 # END SECTION22:16:50 [Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson1879999874627845840.sh 22:16:50 + echo # BEGIN SECTION: Embed wrapper scripts4. Check docker statusHide Details
22:16:49 # BEGIN SECTION: Check docker status 22:16:49 + echo Testing trivial docker invocation... 22:16:49 Testing trivial docker invocation... 22:16:49 + docker run --rm ubuntu:xenial true 22:16:50 + echo 'docker run' returned 0 22:16:50 'docker run' returned 0 22:16:50 docker seems operational, continuing 22:16:50 [Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson2211660298333246775.sh 22:16:50 + echo # END SECTION 22:16:50 # END SECTION22:16:50 [Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson6628085657359763649.sh 22:16:50 + echo # BEGIN SECTION: Clone ros_buildfarm5. Embed wrapper scriptsHide Details
22:16:50 # BEGIN SECTION: Embed wrapper scripts 22:16:50 + rm -fr wrapper_scripts 22:16:50 + mkdir wrapper_scripts 22:16:50 + 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()) 22:16:50 + echo # END SECTION 22:16:50 # END SECTION22:16:52 [Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson4619317068446284729.sh 22:16:52 + echo # BEGIN SECTION: Write PGP repository keys6. Clone ros_buildfarmHide Details
22:16:50 # BEGIN SECTION: Clone ros_buildfarm 22:16:50 + rm -fr ros_buildfarm 22:16:50 + python3 -u wrapper_scripts/git.py clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm 22:16:50 Invoking 'git clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 22:16:50 Cloning into 'ros_buildfarm'... 22:16:52 + git -C ros_buildfarm --no-pager log -n 1 22:16:52 commit aca918fa40d6391d4894b39d8d3477d2e6e0a390 22:16:52 Author: Marc Hanheide <marc@hanheide.de> 22:16:52 Date: Thu Aug 2 12:13:42 2018 +0100 22:16:52 22:16:52 added cleanup 22:16:52 + rm -fr ros_buildfarm/.git 22:16:52 + rm -fr ros_buildfarm/doc 22:16:52 + echo # END SECTION 22:16:52 # END SECTION22:16:52 [Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson7714754195854997100.sh 22:16:52 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/docker_sourcedeb 22:16:52 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/docker_sourcedeb 22:16:52 + sleep 1 22:16:52 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/ros_buildfarm/scripts/subprocess_reaper.py 4678 --cid-file /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/docker_sourcedeb/docker.cid 22:16:53 + echo # BEGIN SECTION: Generate Dockerfile - sourcedeb task7. Write PGP repository keysHide Details
22:16:52 # BEGIN SECTION: Write PGP repository keys 22:16:52 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/keys 22:16:52 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/keys/0.key /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/keys/1.key 22:16:52 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 22:16:52 Version: GnuPG v1.4.11 (GNU/Linux) 22:16:52 22:16:52 mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn 22:16:52 MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf 22:16:52 xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw 22:16:52 kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv 22:16:52 /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh 22:16:52 EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg 22:16:52 KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD 22:16:52 BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX 22:16:52 yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 22:16:52 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy 22:16:52 JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T 22:16:52 Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ 22:16:52 Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ 22:16:52 cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM 22:16:52 hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 22:16:52 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm 22:16:52 Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 22:16:52 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb 22:16:52 oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC 22:16:52 AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U 22:16:52 NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 22:16:52 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU 22:16:52 M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N 22:16:52 l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ 22:16:52 Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== 22:16:52 =nFcN 22:16:52 -----END PGP PUBLIC KEY BLOCK----- 22:16:52 22:16:52 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 22:16:52 Version: GnuPG v1 22:16:52 22:16:52 mQGiBEsy5KkRBADJbDSISoamRM5AA20bfAeBuhhaI+VaiCVcxw90sq9AI5lIc42F 22:16:52 WzM2acm8yplqWiehAqOLKd+iIrqNGZ+VavZEPTx7o06UZUMRoPBiTFaCwrQ5avKz 22:16:52 lt7ij8PRMVWNrJ7A2lDYXfFQVV1o3Xo06qVnv0KLLUmiur0LBu4H/oTH3wCgt+/I 22:16:52 D3LUKaMJsc77KwFBTjHB0EsD/26Z2Ud12f3urSNyN6VMWnP3rz6xsmtY4Qsmkbnr 22:16:52 JuduxCQBZv6bX1Cr2ulXkv0fFOr+s5OyUv7zyCPbxiJFh3Br7fJGb0b5/M208KPe 22:16:52 giITY9hMh/aUbKjXCPoOXPxSL6SWOWV8taR6903EFyLBN0qno/kXIBKnVqBZobgn 22:16:52 jIEPA/0fTnxtZtE7EpirGQMF2caJfv7/LCgXmRs9xAhgbE0/caoa1tnc79uaHmLZ 22:16:52 FtbGFoAO31YNYM/IUHtmabbGdvZ4oYUwDhjBevVvC7aI+XhuNGK5mU8qCLLSEUOl 22:16:52 CUr6BJq/0iFmjwjmwk9idZEYhqSNy2OoYJbq45rbHfbdKLEVrbQeUk9TIEJ1aWxk 22:16:52 ZXIgPHJvc2J1aWxkQHJvcy5vcmc+iGAEExECACAFAksy5KkCGwMGCwkIBwMCBBUC 22:16:52 CAMEFgIDAQIeAQIXgAAKCRBVI7rusB+hFmk7AJ0XsLp05KA8l3YzAumZfjSN04MZ 22:16:52 jQCfQHfp4aQUXdOCUtetVo0QZUX3IuO5Ag0ESzLkrhAIAOCuSC83VXYWf8gOMSzd 22:16:52 xwpsH/uLV9Wze2LGnajsJLjEOhcsz2BHfxqNXhYaE9aQaodPCpbUAkPq8tLbpXy0 22:16:52 SWRCx0F5RcplXx5vIWbP6TlfPbRpK70w7IWd6vsNrjwEHjlhOLcNcj42sp5pgx4b 22:16:52 dceK06k5Ml2hYovPnD9o2TYgjOqg5FHZ2g1J0103n/66bN/hZnpLaZJYQiPWCyq6 22:16:52 K0565i1k2Y7hgWB/OXqwaqCehqmLTvpyQGzE1UJvKLuYU+T+4hBnSPbT3KIi5fCz 22:16:52 lIwvxijOMcfbkLhzYQXcU0Rd1VItcd5nmPL4z97jBxzuhkgxXpGR4WGKhvsA2Z9Y 22:16:52 UtsAAwYH/3Bf44bTpD9bVADUdab3e7zm8iHfh9K/a83mIgDB7mHV6WuemQVTf/1d 22:16:52 eu4mI5WtpbOCoucybGfjGIIAcSxwIx6VfC7HSp4J51bOpHhbdDffUEk6QVsZjwoF 22:16:52 yn3W9W3ZVeTI+ch/Qoo5a98SnmdjN8eXI/qCuiXOHc6rXDXc2R0iox/1EAS8xGVd 22:16:52 cYZe7IWBO2CjCknyhLrWxZHoy+i1GCZ9KvPF/Ef2dmLhCydT73ZlumsY8N5vm76Q 22:16:52 ul1G7f8LNbnMgXQafRkPffrAXSVhGY3Z2IiBwFNgxcKTq479l7yedYRGeU1A+SYI 22:16:52 YmRFWHXt3rTkMlQSpxCsB0fAYfrwEqqISQQYEQIACQUCSzLkrgIbDAAKCRBVI7ru 22:16:52 sB+hFpryAJ9qNz3h3ijt9TkAV0CHufsPT6Cl4gCglfg7tJn2lsSF3HTpoDDO1Fgg 22:16:52 x9o= 22:16:52 =AGYp 22:16:52 -----END PGP PUBLIC KEY BLOCK----- 22:16:52 22:16:52 + echo # END SECTION 22:16:52 # END SECTION22:16:53 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb8. Generate Dockerfile - sourcedeb taskHide Details
22:16:53 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 22:16:53 + export TZ=GMT+00 22:16:53 + export PYTHONPATH=/home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/ros_buildfarm: 22:16:53 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/ros_buildfarm/scripts/release/run_sourcedeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic pcl_conversions_c11 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__pcl_conversions_c11__ubuntu_xenial__source/keys/0.key /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/keys/1.key --source-dir /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/sourcedeb/source --dockerfile-dir /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/docker_sourcedeb 22:16:53 Using the following distribution repositories: 22:16:53 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/keys/0.key) 22:16:53 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/keys/1.key) 22:16:53 Generating Dockerfile '/home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/docker_sourcedeb/Dockerfile': 22:16:53 # generated from release/sourcedeb_task.Dockerfile.em 22:16:53 22:16:53 FROM ubuntu:xenial 22:16:53 22:16:53 VOLUME ["/var/cache/apt/archives"] 22:16:53 22:16:53 ENV DEBIAN_FRONTEND noninteractive 22:16:53 22:16:53 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 22:16:53 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 22:16:53 RUN locale-gen en_US.UTF-8 22:16:53 ENV LANG en_US.UTF-8 22:16:53 ENV TZ GMT+00 22:16:53 22:16:53 RUN useradd -u 1002 -m buildfarm 22:16:53 22:16:53 22:16:53 RUN mkdir /tmp/keys 22:16:53 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 22:16:53 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 22:16:53 RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 22:16:53 RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 22:16:53 22:16:53 RUN mkdir /tmp/wrapper_scripts 22:16:53 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 22:16:53 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 22:16:53 22:16:53 # automatic invalidation once every day 22:16:53 RUN echo "2018-10-21 (+0000)" 22:16:53 22:16:53 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 22:16:53 22:16:53 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 22:16:53 22:16:53 COPY .git-credentials /home/buildfarm/.git-credentials 22:16:53 RUN chmod 600 /home/buildfarm/.git-credentials 22:16:53 RUN chown buildfarm /home/buildfarm/.git-credentials 22:16:53 22:16:53 USER buildfarm 22:16:53 RUN git config --global credential.helper 'store' 22:16:53 RUN git config --global http.sslVerify false 22:16:53 22:16:53 ENTRYPOINT ["sh", "-c"] 22:16:53 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 pcl_conversions_c11 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"] 22:16:53 + echo # END SECTION 22:16:53 # END SECTION22:17:05 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb9. Build Dockerfile - generate sourcedebHide Details
22:16:53 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 22:16:53 + cd /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/docker_sourcedeb 22:16:53 + cp -L **** /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/docker_sourcedeb/.git-credentials 22:16:53 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 22:16:53 Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial 22:16:53 Check docker base image for updates: docker pull ubuntu:xenial 22:16:54 xenial: Pulling from library/ubuntu 22:16:54 Digest: sha256:c958482ef7f32fbd887f1aeec29e883b42e2c9543abdcf78cec89cb58a2c7a83 22:16:54 Status: Image is up to date for ubuntu:xenial 22:16:54 + docker build --force-rm -t sourcedeb.kinetic_ubuntu_xenial_pcl_conversions_c11 . 22:16:54 Sending build context to Docker daemon 18.43 kB Sending build context to Docker daemon 18.43 kB 22:16:54 Step 1 : FROM ubuntu:xenial 22:16:54 ---> bfe0ddf9c09e 22:16:54 Step 2 : VOLUME /var/cache/apt/archives 22:16:55 ---> Using cache 22:16:55 ---> f08265d6f6b3 22:16:55 Step 3 : ENV DEBIAN_FRONTEND noninteractive 22:16:55 ---> Using cache 22:16:55 ---> 80f3c1a3353a 22:16:55 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 22:16:56 ---> Using cache 22:16:56 ---> 890a390b64f2 22:16:56 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 22:16:56 ---> Using cache 22:16:56 ---> 30436ca74ef2 22:16:56 Step 6 : RUN locale-gen en_US.UTF-8 22:16:57 ---> Using cache 22:16:57 ---> c2ccf38d117a 22:16:57 Step 7 : ENV LANG en_US.UTF-8 22:16:57 ---> Using cache 22:16:57 ---> 9fbdca6b9e87 22:16:57 Step 8 : ENV TZ GMT+00 22:16:57 ---> Using cache 22:16:57 ---> 28d194735ecd 22:16:57 Step 9 : RUN useradd -u 1002 -m buildfarm 22:16:58 ---> Using cache 22:16:58 ---> 66fd6743a09c 22:16:58 Step 10 : RUN mkdir /tmp/keys 22:16:58 ---> Using cache 22:16:58 ---> d787b3bb89e0 22:16:58 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 22:16:59 ---> Using cache 22:16:59 ---> 227ab9368f0f 22:16:59 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 22:16:59 ---> Using cache 22:16:59 ---> cb27c61e61bb 22:16:59 Step 13 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 22:16:59 ---> Using cache 22:16:59 ---> 932c63c0e6a8 22:16:59 Step 14 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 22:17:00 ---> Using cache 22:17:00 ---> f3d63d78e7ac 22:17:00 Step 15 : RUN mkdir /tmp/wrapper_scripts 22:17:00 ---> Using cache 22:17:00 ---> 911246edeb05 22:17:00 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 22:17:01 ---> Using cache 22:17:01 ---> ef230715107d 22:17:01 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 22:17:01 ---> Using cache 22:17:01 ---> c62769e2fcae 22:17:01 Step 18 : RUN echo "2018-10-21 (+0000)" 22:17:01 ---> Using cache 22:17:01 ---> ffa732380be6 22:17:01 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 22:17:02 ---> Using cache 22:17:02 ---> ae4a2db05f71 22:17:02 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 22:17:02 ---> Using cache 22:17:02 ---> a54f254f42db 22:17:02 Step 21 : COPY .git-credentials /home/buildfarm/.git-credentials 22:17:02 ---> Using cache 22:17:02 ---> 376d6f9af766 22:17:02 Step 22 : RUN chmod 600 /home/buildfarm/.git-credentials 22:17:03 ---> Using cache 22:17:03 ---> 9154b281ef18 22:17:03 Step 23 : RUN chown buildfarm /home/buildfarm/.git-credentials 22:17:03 ---> Using cache 22:17:03 ---> 9e347a081dff 22:17:03 Step 24 : USER buildfarm 22:17:04 ---> Using cache 22:17:04 ---> 2ff0220cab6e 22:17:04 Step 25 : RUN git config --global credential.helper 'store' 22:17:04 ---> Using cache 22:17:04 ---> 081f2d3218d3 22:17:04 Step 26 : RUN git config --global http.sslVerify false 22:17:04 ---> Using cache 22:17:04 ---> 3a814e865ab2 22:17:04 Step 27 : ENTRYPOINT sh -c 22:17:05 ---> Using cache 22:17:05 ---> 0ae592da65b3 22:17:05 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 pcl_conversions_c11 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 22:17:05 ---> Using cache 22:17:05 ---> 8d34be90bd1c 22:17:05 Successfully built 8d34be90bd1c 22:17:05 + echo # END SECTION 22:17:05 # END SECTION22:17:22 [Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson7801099543858512557.sh 22:17:22 + [ false = false ] 22:17:22 + echo # BEGIN SECTION: Clean up to save disk space on slaves10. Run Dockerfile - generate sourcedebHide Details
22:17:05 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 22:17:05 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/sourcedeb 22:17:05 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/sourcedeb/source 22:17:05 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Ksrc_uX__pcl_conversions_c11__ubuntu_xenial__source/sourcedeb:/tmp/sourcedeb sourcedeb.kinetic_ubuntu_xenial_pcl_conversions_c1110.1. get sourcesHide Details
22:17:06 # BEGIN SUBSECTION: get sources 22:17:14 Invoking 'git clone --branch debian/ros-kinetic-pcl-conversions-c11_0.2.3-0_xenial --depth 1 --no-single-branch https://github.com/lcas-releases/pcl_conversions.git /tmp/sourcedeb/source' 22:17:14 Cloning into '/tmp/sourcedeb/source'... 22:17:15 Note: checking out '4bdc96f688107733876f03b0135af3f6b905086a'. 22:17:15 22:17:15 You are in 'detached HEAD' state. You can look around, make experimental 22:17:15 changes and commit them, and you can discard any commits you make in this 22:17:15 state without impacting any branches by performing another checkout. 22:17:15 22:17:15 If you want to create a new branch to retain commits you create, you may 22:17:15 do so (now or later) by using -b with the checkout command again. Example: 22:17:15 22:17:15 git checkout -b <new-branch-name> 22:17:15 22:17:15 No tarball found at 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-kinetic-pcl-conversions-c11/ros-kinetic-pcl-conversions-c11_0.2.3.orig.tar.gz' 22:17:15 No tarball found at 'http://packages.ros.org/ros/ubuntu/pool/main/r/ros-kinetic-pcl-conversions-c11/ros-kinetic-pcl-conversions-c11_0.2.3.orig.tar.gz' 22:17:15 Package 'pcl_conversions_c11' version: 0.2.3-0xenial 22:17:15 Package maintainer emails: marc@hanheide.net 22:17:15 # END SUBSECTION22:17:22 + echo # END SECTION 22:17:22 # END SECTION10.2. build sourcedebHide Details
22:17:16 # BEGIN SUBSECTION: build sourcedeb 22:17:16 Invoking 'gbp buildpackage --git-ignore-new --git-ignore-branch -S -us -uc --lintian-opts --suppress-tags newer-standards-version' in '/tmp/sourcedeb/source' 22:17:16 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 22:17:18 gbp:info: ros-kinetic-pcl-conversions-c11_0.2.3.orig.tar.gz does not exist, creating from 'release/kinetic/pcl_conversions_c11/0.2.3-0' 22:17:19 dpkg-buildpackage -rfakeroot -d -us -uc -i -I -S 22:17:19 dpkg-buildpackage: source package ros-kinetic-pcl-conversions-c11 22:17:19 dpkg-buildpackage: source version 0.2.3-0xenial 22:17:19 dpkg-buildpackage: source distribution xenial 22:17:19 dpkg-buildpackage: source changed by Marc Hanheide <marc@hanheide.net> 22:17:19 dpkg-source -i -I --before-build source 22:17:19 dpkg-source: info: using options from source/debian/source/options: --auto-commit 22:17:19 fakeroot debian/rules clean 22:17:20 dh clean -v --buildsystem=cmake 22:17:20 dh_testdir -O-v -O--buildsystem=cmake 22:17:20 dh_auto_clean -O-v -O--buildsystem=cmake 22:17:20 dh_clean -O-v -O--buildsystem=cmake 22:17:20 rm -f debian/debhelper-build-stamp 22:17:20 rm -f debian/ros-kinetic-pcl-conversions-c11.substvars 22:17:20 rm -f debian/ros-kinetic-pcl-conversions-c11.*.debhelper 22:17:20 rm -rf debian/ros-kinetic-pcl-conversions-c11/ 22:17:20 rm -rf debian/.debhelper/ 22:17:20 rm -f debian/*.debhelper.log 22:17:20 rm -f debian/files 22:17:20 find . \( \( \ 22:17:20 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS \) -prune -o -type f -a \ 22:17:20 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 22:17:20 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 22:17:20 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 22:17:20 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 22:17:20 \) -exec rm -f {} + \) -o \ 22:17:20 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 22:17:20 rm -f *-stamp 22:17:20 dpkg-source -i -I -b source 22:17:20 dpkg-source: info: using options from source/debian/source/options: --auto-commit 22:17:20 dpkg-source: info: using source format '3.0 (quilt)' 22:17:20 dpkg-source: info: building ros-kinetic-pcl-conversions-c11 using existing ./ros-kinetic-pcl-conversions-c11_0.2.3.orig.tar.gz 22:17:20 dpkg-source: info: building ros-kinetic-pcl-conversions-c11 in ros-kinetic-pcl-conversions-c11_0.2.3-0xenial.debian.tar.xz 22:17:20 dpkg-source: info: building ros-kinetic-pcl-conversions-c11 in ros-kinetic-pcl-conversions-c11_0.2.3-0xenial.dsc 22:17:20 dpkg-genchanges -S >../ros-kinetic-pcl-conversions-c11_0.2.3-0xenial_source.changes 22:17:20 dpkg-genchanges: including full source code in upload 22:17:20 dpkg-source -i -I --after-build source 22:17:21 dpkg-source: info: using options from source/debian/source/options: --auto-commit 22:17:21 dpkg-buildpackage: full upload (original source is included) 22:17:21 Now running lintian... 22:17:22 W: ros-kinetic-pcl-conversions-c11 source: pear-package-without-pkg-php-tools-builddep 22:17:22 W: ros-kinetic-pcl-conversions-c11 source: no-debian-copyright 22:17:22 W: ros-kinetic-pcl-conversions-c11 source: ancient-standards-version 3.9.2 (current is 3.9.7) 22:17:22 Finished running lintian. 22:17:22 # END SUBSECTION22:17:22 SSH: Connecting from host [lcas-buildfarm-slave-3] 22:17:22 SSH: Connecting with configuration [repo] ... 22:17:23 SSH: Disconnecting configuration [repo] ... 22:17:23 SSH: Transferred 4 file(s) 22:17:23 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 22:17:23 Waiting for the completion of Krel_import-package 22:17:32 Krel_import-package #3849 completed. Result was SUCCESS11. Clean up to save disk space on slavesHide Details
22:17:22 # BEGIN SECTION: Clean up to save disk space on slaves 22:17:22 + rm -fr sourcedeb/source 22:17:22 + echo # END SECTION 22:17:22 # END SECTION22:17:32 $ ssh-agent -k 22:17:32 unset SSH_AUTH_SOCK; 22:17:32 unset SSH_AGENT_PID; 22:17:32 echo Agent pid 4578 killed; 22:17:32 [ssh-agent] Stopped. 22:17:32 [description-setter] Description set: 0.2.3-0xenial 22:17:32 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered 22:17:32 Triggering a new build of Kbin_uX64__pcl_conversions_c11__ubuntu_xenial_amd64__binary 22:17:32 Finished: SUCCESS12. Check if triggered build failedHide Details
22:17:32 # BEGIN SECTION: Check if triggered build failed 22:17:32 Pattern not found in build log, continuing... 22:17:32 # END SECTION