SuccessConsole Output

13:31:35 Started by upstream project "Krel_trigger-jobs" build number 44114
13:31:35 originally caused by:
13:31:35  Started by timer
13:31:36 Building remotely on build client 3 (slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source
13:31:36 [ssh-agent] Looking for ssh-agent implementation...
13:31:36 [ssh-agent]   Exec ssh-agent (binary ssh-agent on a remote machine)
13:31:36 $ ssh-agent
13:31:36 SSH_AUTH_SOCK=/tmp/ssh-GQrvO0YV8K9E/agent.6309
13:31:36 SSH_AGENT_PID=6312
13:31:36 [ssh-agent] Started.
13:31:37 $ ssh-add /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source@tmp/private_key_4735993831578850071.key
13:31:37 Identity added: /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source@tmp/private_key_4735993831578850071.key (/home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source@tmp/private_key_4735993831578850071.key)
13:31:37 [ssh-agent] Using credentials jenkins-slave
1. Check free disk space

Hide Details

13:31:37 # BEGIN SECTION: Check free disk space 13:31:37 Usable disk space = 53803073536 bytes 13:31:37 Free space threshold = 5368709120 bytes 13:31:37 # END SECTION
13:31:37 [Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson4301014740347689591.sh 13:31:37 + echo # BEGIN SECTION: docker version
2. docker version

Hide Details

13:31:37 # BEGIN SECTION: docker version 13:31:37 + docker version 13:31:37 Client: 13:31:37 Version: 1.9.1 13:31:37 API version: 1.21 13:31:37 Go version: go1.4.2 13:31:37 Git commit: a34a1d5 13:31:37 Built: Fri Nov 20 13:12:04 UTC 2015 13:31:37 OS/Arch: linux/amd64 13:31:37 13:31:37 Server: 13:31:37 Version: 1.9.1 13:31:37 API version: 1.21 13:31:37 Go version: go1.4.2 13:31:37 Git commit: a34a1d5 13:31:37 Built: Fri Nov 20 13:12:04 UTC 2015 13:31:37 OS/Arch: linux/amd64 13:31:37 + echo # END SECTION 13:31:37 # END SECTION
13:31:37 + echo # BEGIN SECTION: docker info
3. docker info

Hide Details

13:31:37 # BEGIN SECTION: docker info 13:31:37 + docker info 13:31:38 Containers: 318 13:31:38 Images: 2076 13:31:38 Server Version: 1.9.1 13:31:38 Storage Driver: aufs 13:31:38 Root Dir: /var/lib/docker/aufs 13:31:38 Backing Filesystem: extfs 13:31:38 Dirs: 3058 13:31:38 Dirperm1 Supported: false 13:31:38 Execution Driver: native-0.2 13:31:38 Logging Driver: json-file 13:31:38 Kernel Version: 3.13.0-29-generic 13:31:38 Operating System: Ubuntu 14.04 LTS 13:31:38 CPUs: 2 13:31:38 Total Memory: 3.861 GiB 13:31:38 Name: lcas-buildfarm-slave-3 13:31:38 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE 13:31:38 WARNING: No swap limit support 13:31:38 + echo # END SECTION 13:31:38 # END SECTION
13:31:38 [Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson5845181556205567301.sh 13:31:38 + echo # BEGIN SECTION: Check docker status
4. Check docker status

Hide Details

13:31:38 # BEGIN SECTION: Check docker status 13:31:38 + echo Testing trivial docker invocation... 13:31:38 Testing trivial docker invocation... 13:31:38 + docker run --rm ubuntu:xenial true 13:31:40 + echo 'docker run' returned 0 13:31:40 'docker run' returned 0 13:31:40 docker seems operational, continuing 13:31:40 [Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson5757736401929354561.sh 13:31:40 + echo # END SECTION 13:31:40 # END SECTION
13:31:40 [Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson7592570726332829688.sh 13:31:40 + echo # BEGIN SECTION: Embed wrapper scripts
5. Embed wrapper scripts

Hide Details

13:31:40 # BEGIN SECTION: Embed wrapper scripts 13:31:40 + rm -fr wrapper_scripts 13:31:40 + mkdir wrapper_scripts 13:31:40 + 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()) 13:31:40 + echo # END SECTION 13:31:40 # END SECTION
13:31:40 [Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson958119713161978126.sh 13:31:40 + echo # BEGIN SECTION: Clone ros_buildfarm
6. Clone ros_buildfarm

Hide Details

13:31:40 # BEGIN SECTION: Clone ros_buildfarm 13:31:40 + rm -fr ros_buildfarm 13:31:40 + python3 -u wrapper_scripts/git.py clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm 13:31:40 Invoking 'git clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 13:31:40 Cloning into 'ros_buildfarm'... 13:31:42 + git -C ros_buildfarm --no-pager log -n 1 13:31:42 commit aca918fa40d6391d4894b39d8d3477d2e6e0a390 13:31:42 Author: Marc Hanheide <marc@hanheide.de> 13:31:42 Date: Thu Aug 2 12:13:42 2018 +0100 13:31:42 13:31:42 added cleanup 13:31:42 + rm -fr ros_buildfarm/.git 13:31:42 + rm -fr ros_buildfarm/doc 13:31:42 + echo # END SECTION 13:31:42 # END SECTION
13:31:42 [Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson4910055745028683725.sh 13:31:42 + echo # BEGIN SECTION: Write PGP repository keys
7. Write PGP repository keys

Hide Details

13:31:42 # BEGIN SECTION: Write PGP repository keys 13:31:42 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/keys 13:31:42 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/keys/* 13:31:42 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 13:31:42 Version: GnuPG v1.4.11 (GNU/Linux) 13:31:42 13:31:42 mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn 13:31:42 MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf 13:31:42 xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw 13:31:42 kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv 13:31:42 /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh 13:31:42 EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg 13:31:42 KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD 13:31:42 BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX 13:31:42 yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 13:31:42 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy 13:31:42 JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T 13:31:42 Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ 13:31:42 Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ 13:31:42 cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM 13:31:42 hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 13:31:42 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm 13:31:42 Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 13:31:42 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb 13:31:42 oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC 13:31:42 AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U 13:31:42 NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 13:31:42 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU 13:31:42 M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N 13:31:42 l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ 13:31:42 Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== 13:31:42 =nFcN 13:31:42 -----END PGP PUBLIC KEY BLOCK----- 13:31:42 13:31:42 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 13:31:42 Version: GnuPG v1 13:31:42 13:31:42 mQGiBEsy5KkRBADJbDSISoamRM5AA20bfAeBuhhaI+VaiCVcxw90sq9AI5lIc42F 13:31:42 WzM2acm8yplqWiehAqOLKd+iIrqNGZ+VavZEPTx7o06UZUMRoPBiTFaCwrQ5avKz 13:31:42 lt7ij8PRMVWNrJ7A2lDYXfFQVV1o3Xo06qVnv0KLLUmiur0LBu4H/oTH3wCgt+/I 13:31:42 D3LUKaMJsc77KwFBTjHB0EsD/26Z2Ud12f3urSNyN6VMWnP3rz6xsmtY4Qsmkbnr 13:31:42 JuduxCQBZv6bX1Cr2ulXkv0fFOr+s5OyUv7zyCPbxiJFh3Br7fJGb0b5/M208KPe 13:31:42 giITY9hMh/aUbKjXCPoOXPxSL6SWOWV8taR6903EFyLBN0qno/kXIBKnVqBZobgn 13:31:42 jIEPA/0fTnxtZtE7EpirGQMF2caJfv7/LCgXmRs9xAhgbE0/caoa1tnc79uaHmLZ 13:31:42 FtbGFoAO31YNYM/IUHtmabbGdvZ4oYUwDhjBevVvC7aI+XhuNGK5mU8qCLLSEUOl 13:31:42 CUr6BJq/0iFmjwjmwk9idZEYhqSNy2OoYJbq45rbHfbdKLEVrbQeUk9TIEJ1aWxk 13:31:42 ZXIgPHJvc2J1aWxkQHJvcy5vcmc+iGAEExECACAFAksy5KkCGwMGCwkIBwMCBBUC 13:31:42 CAMEFgIDAQIeAQIXgAAKCRBVI7rusB+hFmk7AJ0XsLp05KA8l3YzAumZfjSN04MZ 13:31:42 jQCfQHfp4aQUXdOCUtetVo0QZUX3IuO5Ag0ESzLkrhAIAOCuSC83VXYWf8gOMSzd 13:31:42 xwpsH/uLV9Wze2LGnajsJLjEOhcsz2BHfxqNXhYaE9aQaodPCpbUAkPq8tLbpXy0 13:31:42 SWRCx0F5RcplXx5vIWbP6TlfPbRpK70w7IWd6vsNrjwEHjlhOLcNcj42sp5pgx4b 13:31:42 dceK06k5Ml2hYovPnD9o2TYgjOqg5FHZ2g1J0103n/66bN/hZnpLaZJYQiPWCyq6 13:31:42 K0565i1k2Y7hgWB/OXqwaqCehqmLTvpyQGzE1UJvKLuYU+T+4hBnSPbT3KIi5fCz 13:31:42 lIwvxijOMcfbkLhzYQXcU0Rd1VItcd5nmPL4z97jBxzuhkgxXpGR4WGKhvsA2Z9Y 13:31:42 UtsAAwYH/3Bf44bTpD9bVADUdab3e7zm8iHfh9K/a83mIgDB7mHV6WuemQVTf/1d 13:31:42 eu4mI5WtpbOCoucybGfjGIIAcSxwIx6VfC7HSp4J51bOpHhbdDffUEk6QVsZjwoF 13:31:42 yn3W9W3ZVeTI+ch/Qoo5a98SnmdjN8eXI/qCuiXOHc6rXDXc2R0iox/1EAS8xGVd 13:31:42 cYZe7IWBO2CjCknyhLrWxZHoy+i1GCZ9KvPF/Ef2dmLhCydT73ZlumsY8N5vm76Q 13:31:42 ul1G7f8LNbnMgXQafRkPffrAXSVhGY3Z2IiBwFNgxcKTq479l7yedYRGeU1A+SYI 13:31:42 YmRFWHXt3rTkMlQSpxCsB0fAYfrwEqqISQQYEQIACQUCSzLkrgIbDAAKCRBVI7ru 13:31:42 sB+hFpryAJ9qNz3h3ijt9TkAV0CHufsPT6Cl4gCglfg7tJn2lsSF3HTpoDDO1Fgg 13:31:42 x9o= 13:31:42 =AGYp 13:31:42 -----END PGP PUBLIC KEY BLOCK----- 13:31:42 13:31:42 + echo # END SECTION 13:31:42 # END SECTION
13:31:42 [Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson6022579409396076655.sh 13:31:42 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/docker_sourcedeb 13:31:42 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/docker_sourcedeb 13:31:42 + sleep 1 13:31:42 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/ros_buildfarm/scripts/subprocess_reaper.py 6585 --cid-file /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/docker_sourcedeb/docker.cid 13:31:43 + echo # BEGIN SECTION: Generate Dockerfile - sourcedeb task
8. Generate Dockerfile - sourcedeb task

Hide Details

13:31:43 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 13:31:43 + export TZ=GMT+00 13:31:43 + export PYTHONPATH=/home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/ros_buildfarm: 13:31:43 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/ros_buildfarm/scripts/release/run_sourcedeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic rwth_ground_plane 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__rwth_ground_plane__ubuntu_xenial__source/keys/0.key /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/keys/1.key --source-dir /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/sourcedeb/source --dockerfile-dir /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/docker_sourcedeb 13:31:43 Using the following distribution repositories: 13:31:43 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/keys/0.key) 13:31:43 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/keys/1.key) 13:31:43 Generating Dockerfile '/home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/docker_sourcedeb/Dockerfile': 13:31:43 # generated from release/sourcedeb_task.Dockerfile.em 13:31:43 13:31:43 FROM ubuntu:xenial 13:31:43 13:31:43 VOLUME ["/var/cache/apt/archives"] 13:31:43 13:31:43 ENV DEBIAN_FRONTEND noninteractive 13:31:43 13:31:43 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 13:31:43 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 13:31:43 RUN locale-gen en_US.UTF-8 13:31:43 ENV LANG en_US.UTF-8 13:31:43 ENV TZ GMT+00 13:31:43 13:31:43 RUN useradd -u 1002 -m buildfarm 13:31:43 13:31:43 13:31:43 RUN mkdir /tmp/keys 13:31:43 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 13:31:43 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 13:31:43 RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 13:31:43 RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 13:31:43 13:31:43 RUN mkdir /tmp/wrapper_scripts 13:31:43 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 13:31:43 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 13:31:43 13:31:43 # automatic invalidation once every day 13:31:43 RUN echo "2018-09-22 (+0000)" 13:31:43 13:31:43 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 13:31:43 13:31:43 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 13:31:43 13:31:43 COPY .git-credentials /home/buildfarm/.git-credentials 13:31:43 RUN chmod 600 /home/buildfarm/.git-credentials 13:31:43 RUN chown buildfarm /home/buildfarm/.git-credentials 13:31:43 13:31:43 USER buildfarm 13:31:43 RUN git config --global credential.helper 'store' 13:31:43 RUN git config --global http.sslVerify false 13:31:43 13:31:43 ENTRYPOINT ["sh", "-c"] 13:31:43 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 rwth_ground_plane 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"] 13:31:43 + echo # END SECTION 13:31:43 # END SECTION
13:31:43 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb
9. Build Dockerfile - generate sourcedeb

Hide Details

13:31:43 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 13:31:43 + cd /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/docker_sourcedeb 13:31:43 + cp -L **** /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/docker_sourcedeb/.git-credentials 13:31:43 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 13:31:43 Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial 13:31:43 Check docker base image for updates: docker pull ubuntu:xenial 13:31:44 xenial: Pulling from library/ubuntu 13:31:44 Digest: sha256:f53ee6c26fed293a1faaad6cb83713ce9289e4a38a9ea7e0d78c156fa1022e75 13:31:44 Status: Image is up to date for ubuntu:xenial 13:31:44 + docker build --force-rm -t sourcedeb.kinetic_ubuntu_xenial_rwth_ground_plane . 13:31:45 Sending build context to Docker daemon 18.43 kB Sending build context to Docker daemon 18.43 kB 13:31:45 Step 1 : FROM ubuntu:xenial 13:31:45 ---> 2b9623518fa2 13:31:45 Step 2 : VOLUME /var/cache/apt/archives 13:31:46 ---> Using cache 13:31:46 ---> 3e4a27c7e3d3 13:31:46 Step 3 : ENV DEBIAN_FRONTEND noninteractive 13:31:47 ---> Using cache 13:31:47 ---> c5a421a14e47 13:31:47 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 13:31:48 ---> Using cache 13:31:48 ---> 7b657d0e1e35 13:31:48 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 13:31:49 ---> Using cache 13:31:49 ---> e274a23f1d8b 13:31:49 Step 6 : RUN locale-gen en_US.UTF-8 13:31:50 ---> Using cache 13:31:50 ---> 8c3092b0f60f 13:31:50 Step 7 : ENV LANG en_US.UTF-8 13:31:51 ---> Using cache 13:31:51 ---> 68fb9f8652d3 13:31:51 Step 8 : ENV TZ GMT+00 13:31:52 ---> Using cache 13:31:52 ---> bf665c18a0d4 13:31:52 Step 9 : RUN useradd -u 1002 -m buildfarm 13:31:54 ---> Using cache 13:31:54 ---> d1ab90eb1a70 13:31:54 Step 10 : RUN mkdir /tmp/keys 13:31:55 ---> Using cache 13:31:55 ---> 5317ab60e2b4 13:31:55 Step 11 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 13:31:56 ---> Using cache 13:31:56 ---> d9609b11b449 13:31:56 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 13:31:57 ---> Using cache 13:31:57 ---> fe495151ecac 13:31:57 Step 13 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 13:31:58 ---> Using cache 13:31:58 ---> e9e250a02f91 13:31:58 Step 14 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 13:31:59 ---> Using cache 13:31:59 ---> dd5132b699e8 13:31:59 Step 15 : RUN mkdir /tmp/wrapper_scripts 13:32:00 ---> Using cache 13:32:00 ---> 1dc8f0d1dbc4 13:32: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 13:32:01 ---> Using cache 13:32:01 ---> e082bd4471f9 13:32: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 13:32:03 ---> Using cache 13:32:03 ---> 6d7b2e14455e 13:32:03 Step 18 : RUN echo "2018-09-22 (+0000)" 13:32:04 ---> Using cache 13:32:04 ---> 42a1efdd5e5d 13:32:04 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 13:32:05 ---> Using cache 13:32:05 ---> f646fb52bddf 13:32:05 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 13:32:06 ---> Using cache 13:32:06 ---> 8b1f99c1cdf2 13:32:06 Step 21 : COPY .git-credentials /home/buildfarm/.git-credentials 13:32:07 ---> Using cache 13:32:07 ---> 238127eec553 13:32:07 Step 22 : RUN chmod 600 /home/buildfarm/.git-credentials 13:32:08 ---> Using cache 13:32:08 ---> e4e2ed19708d 13:32:08 Step 23 : RUN chown buildfarm /home/buildfarm/.git-credentials 13:32:09 ---> Using cache 13:32:09 ---> 58b660c061b1 13:32:09 Step 24 : USER buildfarm 13:32:10 ---> Using cache 13:32:10 ---> 11dc8f86635d 13:32:10 Step 25 : RUN git config --global credential.helper 'store' 13:32:12 ---> Using cache 13:32:12 ---> df1e47490ad9 13:32:12 Step 26 : RUN git config --global http.sslVerify false 13:32:12 ---> Using cache 13:32:12 ---> a31d6ef9283b 13:32:12 Step 27 : ENTRYPOINT sh -c 13:32:14 ---> Using cache 13:32:14 ---> 4f40f4be3baf 13:32:14 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 rwth_ground_plane 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 13:32:15 ---> Running in 5476f3c713a1 13:32:16 ---> 7b7fc3d4ddb2 13:32:16 Removing intermediate container 5476f3c713a1 13:32:16 Successfully built 7b7fc3d4ddb2 13:32:16 + echo # END SECTION 13:32:16 # END SECTION
13:32:16 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb
10. Run Dockerfile - generate sourcedeb

Hide Details

13:32:16 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 13:32:16 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/sourcedeb 13:32:16 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/sourcedeb/source 13:32:16 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source/sourcedeb:/tmp/sourcedeb sourcedeb.kinetic_ubuntu_xenial_rwth_ground_plane
10.1. get sources

Hide Details

13:32:19 # BEGIN SUBSECTION: get sources 13:32:30 Invoking 'git clone --branch debian/ros-kinetic-rwth-ground-plane_1.0.10-0_xenial --depth 1 --no-single-branch https://github.com/lcas-releases/spencer_people_tracking.git /tmp/sourcedeb/source' 13:32:31 Cloning into '/tmp/sourcedeb/source'... 13:32:34 Note: checking out '0405e5b79b5d3d69d08f9918a1a5362dba09334d'. 13:32:34 13:32:34 You are in 'detached HEAD' state. You can look around, make experimental 13:32:34 changes and commit them, and you can discard any commits you make in this 13:32:34 state without impacting any branches by performing another checkout. 13:32:34 13:32:34 If you want to create a new branch to retain commits you create, you may 13:32:34 do so (now or later) by using -b with the checkout command again. Example: 13:32:34 13:32:34 git checkout -b <new-branch-name> 13:32:34 13:32:36 No tarball found at 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-kinetic-rwth-ground-plane/ros-kinetic-rwth-ground-plane_1.0.10.orig.tar.gz' 13:32:36 No tarball found at 'http://packages.ros.org/ros/ubuntu/pool/main/r/ros-kinetic-rwth-ground-plane/ros-kinetic-rwth-ground-plane_1.0.10.orig.tar.gz' 13:32:36 Package 'rwth_ground_plane' version: 1.0.10-0xenial 13:32:36 Package maintainer emails: cdondrup@lincoln.ac.uk mitzel@umic.rwth-aachen.de 13:32:36 # END SUBSECTION
10.2. build sourcedeb

Hide Details

13:32:37 # BEGIN SUBSECTION: build sourcedeb 13:32:37 Invoking 'gbp buildpackage --git-ignore-new --git-ignore-branch -S -us -uc --lintian-opts --suppress-tags newer-standards-version' in '/tmp/sourcedeb/source' 13:32:39 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 13:32:42 gbp:info: ros-kinetic-rwth-ground-plane_1.0.10.orig.tar.gz does not exist, creating from 'release/kinetic/rwth_ground_plane/1.0.10-0' 13:32:43 dpkg-buildpackage -rfakeroot -d -us -uc -i -I -S 13:32:43 dpkg-buildpackage: source package ros-kinetic-rwth-ground-plane 13:32:43 dpkg-buildpackage: source version 1.0.10-0xenial 13:32:43 dpkg-buildpackage: source distribution xenial 13:32:43 dpkg-buildpackage: source changed by Dennis Mitzel <mitzel@umic.rwth-aachen.de> 13:32:43 dpkg-source -i -I --before-build source 13:32:43 dpkg-source: info: using options from source/debian/source/options: --auto-commit 13:32:43 fakeroot debian/rules clean 13:32:44 dh clean -v --buildsystem=cmake 13:32:44 dh_testdir -O-v -O--buildsystem=cmake 13:32:44 dh_auto_clean -O-v -O--buildsystem=cmake 13:32:44 dh_clean -O-v -O--buildsystem=cmake 13:32:44 rm -f debian/debhelper-build-stamp 13:32:44 rm -f debian/ros-kinetic-rwth-ground-plane.substvars 13:32:44 rm -f debian/ros-kinetic-rwth-ground-plane.*.debhelper 13:32:44 rm -rf debian/ros-kinetic-rwth-ground-plane/ 13:32:44 rm -rf debian/.debhelper/ 13:32:44 rm -f debian/*.debhelper.log 13:32:44 rm -f debian/files 13:32:44 find . \( \( \ 13:32:44 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS \) -prune -o -type f -a \ 13:32:44 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 13:32:44 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 13:32:44 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 13:32:44 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 13:32:44 \) -exec rm -f {} + \) -o \ 13:32:44 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 13:32:44 rm -f *-stamp 13:32:44 dpkg-source -i -I -b source 13:32:44 dpkg-source: info: using options from source/debian/source/options: --auto-commit 13:32:44 dpkg-source: info: using source format '3.0 (quilt)' 13:32:44 dpkg-source: info: building ros-kinetic-rwth-ground-plane using existing ./ros-kinetic-rwth-ground-plane_1.0.10.orig.tar.gz 13:32:45 dpkg-source: info: building ros-kinetic-rwth-ground-plane in ros-kinetic-rwth-ground-plane_1.0.10-0xenial.debian.tar.xz 13:32:45 dpkg-source: info: building ros-kinetic-rwth-ground-plane in ros-kinetic-rwth-ground-plane_1.0.10-0xenial.dsc 13:32:45 dpkg-genchanges -S >../ros-kinetic-rwth-ground-plane_1.0.10-0xenial_source.changes 13:32:45 dpkg-genchanges: warning: debian/changelog(l13): found trailer where expected start of change data 13:32:45 LINE: -- Dennis Mitzel <mitzel@umic.rwth-aachen.de> Wed, 17 Jan 2018 00:00:00 -0000 13:32:45 dpkg-genchanges: including full source code in upload 13:32:45 dpkg-source -i -I --after-build source 13:32:45 dpkg-source: info: using options from source/debian/source/options: --auto-commit 13:32:45 dpkg-buildpackage: full upload (original source is included) 13:32:45 Now running lintian... 13:32:49 W: ros-kinetic-rwth-ground-plane source: pear-package-without-pkg-php-tools-builddep 13:32:49 W: ros-kinetic-rwth-ground-plane source: no-debian-copyright 13:32:49 W: ros-kinetic-rwth-ground-plane source: ancient-standards-version 3.9.2 (current is 3.9.7) 13:32:49 Finished running lintian. 13:32:49 # END SUBSECTION
13:32:49 + echo # END SECTION 13:32:49 # END SECTION
13:32:49 [Ksrc_uX__rwth_ground_plane__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson2698687738514567865.sh 13:32:49 + [ false = false ] 13:32:49 + echo # BEGIN SECTION: Clean up to save disk space on slaves
11. Clean up to save disk space on slaves

Hide Details

13:32:49 # BEGIN SECTION: Clean up to save disk space on slaves 13:32:49 + rm -fr sourcedeb/source 13:32:49 + echo # END SECTION 13:32:49 # END SECTION
13:32:50 SSH: Connecting from host [lcas-buildfarm-slave-3] 13:32:50 SSH: Connecting with configuration [repo] ... 13:32:51 SSH: Disconnecting configuration [repo] ... 13:32:51 SSH: Transferred 4 file(s) 13:32:51 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 13:32:51 Waiting for the completion of Krel_import-package 13:32:54 Krel_import-package #3526 completed. Result was SUCCESS
12. Check if triggered build failed

Hide Details

13:32:54 # BEGIN SECTION: Check if triggered build failed 13:32:54 Pattern not found in build log, continuing... 13:32:54 # END SECTION
13:32:54 $ ssh-agent -k 13:32:54 unset SSH_AUTH_SOCK; 13:32:54 unset SSH_AGENT_PID; 13:32:54 echo Agent pid 6312 killed; 13:32:54 [ssh-agent] Stopped. 13:32:54 [description-setter] Description set: 1.0.10-0xenial 13:32:55 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered 13:32:55 Triggering a new build of Kbin_uX64__rwth_ground_plane__ubuntu_xenial_amd64__binary 13:32:55 Finished: SUCCESS