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