SuccessConsole Output

17:56:33 Started by upstream project "Krel_trigger-jobs" build number 31393
17:56:33 originally caused by:
17:56:33  Started by upstream project "Krel_reconfigure-jobs" build number 1322
17:56:33  originally caused by:
17:56:33   Started by user SYSTEM
17:56:33 Building remotely on build client 1 (slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source
17:56:33 [ssh-agent] Looking for ssh-agent implementation...
17:56:34 [ssh-agent]   Exec ssh-agent (binary ssh-agent on a remote machine)
17:56:34 $ ssh-agent
17:56:34 SSH_AUTH_SOCK=/tmp/ssh-sSsHrHymZQic/agent.17259
17:56:34 SSH_AGENT_PID=17261
17:56:34 [ssh-agent] Started.
17:56:34 $ ssh-add /home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source@tmp/private_key_6153615771428244687.key
17:56:34 Identity added: /home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source@tmp/private_key_6153615771428244687.key (/home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source@tmp/private_key_6153615771428244687.key)
17:56:34 [ssh-agent] Using credentials jenkins-slave
1. Check free disk space

Hide Details

17:56:34 # BEGIN SECTION: Check free disk space 17:56:34 Usable disk space = 51880742912 bytes 17:56:34 Free space threshold = 5368709120 bytes 17:56:34 # END SECTION
17:56:34 [Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson4223297262910022186.sh 17:56:34 + echo # BEGIN SECTION: docker version
2. docker version

Hide Details

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

Hide Details

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

Hide Details

17:57:18 # BEGIN SECTION: Check docker status 17:57:18 + echo Testing trivial docker invocation... 17:57:18 Testing trivial docker invocation... 17:57:18 + docker run --rm ubuntu:xenial true 17:57:19 + echo 'docker run' returned 0 17:57:19 'docker run' returned 0 17:57:20 docker seems operational, continuing 17:57:20 [Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson8314064613669521713.sh 17:57:20 + echo # END SECTION 17:57:20 # END SECTION
17:57:20 [Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson3615232507915731772.sh 17:57:20 + echo # BEGIN SECTION: Embed wrapper scripts
5. Embed wrapper scripts

Hide Details

17:57:20 # BEGIN SECTION: Embed wrapper scripts 17:57:20 + rm -fr wrapper_scripts 17:57:20 + mkdir wrapper_scripts 17:57:20 + 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()) 17:57:20 + echo # END SECTION 17:57:20 # END SECTION
17:57:20 [Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson1008472747759959426.sh 17:57:20 + echo # BEGIN SECTION: Clone ros_buildfarm
6. Clone ros_buildfarm

Hide Details

17:57:20 # BEGIN SECTION: Clone ros_buildfarm 17:57:20 + rm -fr ros_buildfarm 17:57:20 + python3 -u wrapper_scripts/git.py clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm 17:57:20 Invoking 'git clone --depth 1 -b master https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 17:57:20 Cloning into 'ros_buildfarm'... 17:57:22 + git -C ros_buildfarm --no-pager log -n 1 17:57:22 commit ab95b278101e21e7fce81180384f7861667352b1 17:57:22 Author: Marc Hanheide <marc@hanheide.net> 17:57:22 Date: Thu Apr 19 18:30:41 2018 +0100 17:57:22 17:57:22 added gcc and build-essential 17:57:22 + rm -fr ros_buildfarm/.git 17:57:22 + rm -fr ros_buildfarm/doc 17:57:22 + echo # END SECTION 17:57:22 # END SECTION
17:57:22 [Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson4355832445292967193.sh 17:57:22 + echo # BEGIN SECTION: Write PGP repository keys
7. Write PGP repository keys

Hide Details

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

Hide Details

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

Hide Details

17:57:24 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 17:57:24 + cd /home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source/docker_sourcedeb 17:57:24 + cp -L **** /home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source/docker_sourcedeb/.git-credentials 17:57:24 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 17:57:24 Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial 17:57:24 Check docker base image for updates: docker pull ubuntu:xenial 17:57:25 xenial: Pulling from library/ubuntu 17:57:25 Digest: sha256:0b59fa5bfdfb5c541ac0f3a21fc028a3140d67b207254dd48659781cb7761dcb 17:57:25 Status: Image is up to date for ubuntu:xenial 17:57:25 + docker build --force-rm -t sourcedeb.kinetic_ubuntu_xenial_coordination_oru_msgs . 17:57:26 Sending build context to Docker daemon 18.43 kB Sending build context to Docker daemon 18.43 kB 17:57:26 Step 1 : FROM ubuntu:xenial 17:57:26 ---> 45478fc44aca 17:57:26 Step 2 : VOLUME /var/cache/apt/archives 17:57:26 ---> Using cache 17:57:26 ---> 3297622507b0 17:57:26 Step 3 : ENV DEBIAN_FRONTEND noninteractive 17:57:27 ---> Using cache 17:57:27 ---> 3f84e215e7e3 17:57:27 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 17:57:27 ---> Using cache 17:57:27 ---> 30d5492bce13 17:57:27 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 17:57:28 ---> Using cache 17:57:28 ---> 0dc736fcd24f 17:57:28 Step 6 : RUN locale-gen en_US.UTF-8 17:57:28 ---> Using cache 17:57:28 ---> ca7d8f0e30b2 17:57:28 Step 7 : ENV LANG en_US.UTF-8 17:57:29 ---> Using cache 17:57:29 ---> e5d841e7a4d2 17:57:29 Step 8 : ENV TZ GMT+00 17:57:30 ---> Using cache 17:57:30 ---> 2adcc1e79cdd 17:57:30 Step 9 : RUN useradd -u 1002 -m buildfarm 17:57:30 ---> Using cache 17:57:30 ---> 8479de724d7c 17:57:30 Step 10 : RUN mkdir /tmp/keys 17:57:31 ---> Using cache 17:57:31 ---> c293506eb249 17:57:31 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 17:57:31 ---> Using cache 17:57:31 ---> 115b6e7c2871 17:57:31 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 17:57:32 ---> Using cache 17:57:32 ---> af1ef443adf4 17:57:32 Step 13 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 17:57:32 ---> Using cache 17:57:32 ---> 87c0f71dcff4 17:57:32 Step 14 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 17:57:33 ---> Using cache 17:57:33 ---> 8c0460bff62a 17:57:33 Step 15 : RUN mkdir /tmp/wrapper_scripts 17:57:33 ---> Using cache 17:57:33 ---> acf64e53950b 17:57:33 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 17:57:34 ---> Using cache 17:57:34 ---> 60b5f3f33ab4 17:57:34 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 17:57:34 ---> Using cache 17:57:34 ---> 29b27163b359 17:57:34 Step 18 : RUN echo "2018-05-14 (+0000)" 17:57:35 ---> Using cache 17:57:35 ---> 79c14bc90746 17:57:35 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 17:57:35 ---> Using cache 17:57:35 ---> 7ec84654a357 17:57:35 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 17:57:36 ---> Using cache 17:57:36 ---> 0d1774696b0f 17:57:36 Step 21 : COPY .git-credentials /home/buildfarm/.git-credentials 17:57:36 ---> Using cache 17:57:36 ---> 41c459401e39 17:57:36 Step 22 : RUN chmod 600 /home/buildfarm/.git-credentials 17:57:37 ---> Using cache 17:57:37 ---> dfd44e4935a1 17:57:37 Step 23 : RUN chown buildfarm /home/buildfarm/.git-credentials 17:57:37 ---> Using cache 17:57:37 ---> e607d63b79d3 17:57:37 Step 24 : USER buildfarm 17:57:38 ---> Using cache 17:57:38 ---> 0c3090a252d1 17:57:38 Step 25 : RUN git config --global credential.helper 'store' 17:57:38 ---> Using cache 17:57:38 ---> adb7f54b9171 17:57:38 Step 26 : RUN git config --global http.sslVerify false 17:57:38 ---> Using cache 17:57:38 ---> 36bebd7c562d 17:57:38 Step 27 : ENTRYPOINT sh -c 17:57:39 ---> Using cache 17:57:39 ---> c8ff3a124608 17:57:39 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 coordination_oru_msgs 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 17:57:41 ---> Running in 8cde32d91f54 17:57:41 ---> 77fafab99e3a 17:57:41 Removing intermediate container 8cde32d91f54 17:57:41 Successfully built 77fafab99e3a 17:57:41 + echo # END SECTION 17:57:41 # END SECTION
17:57:41 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb
10. Run Dockerfile - generate sourcedeb

Hide Details

17:57:41 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 17:57:41 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source/sourcedeb 17:57:41 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source/sourcedeb/source 17:57:41 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source/sourcedeb:/tmp/sourcedeb sourcedeb.kinetic_ubuntu_xenial_coordination_oru_msgs
10.1. get sources

Hide Details

17:57:42 # BEGIN SUBSECTION: get sources 17:57:50 Invoking 'git clone --branch debian/ros-kinetic-coordination-oru-msgs_0.3.0-0_xenial --depth 1 --no-single-branch https://github.com/iliad-project/coordination_oru-release.git /tmp/sourcedeb/source' 17:57:50 Cloning into '/tmp/sourcedeb/source'... 17:57:53 Note: checking out '34cdf1ffd151dad50c4bcdf137689ed27d4b9d51'. 17:57:53 17:57:53 You are in 'detached HEAD' state. You can look around, make experimental 17:57:53 changes and commit them, and you can discard any commits you make in this 17:57:53 state without impacting any branches by performing another checkout. 17:57:53 17:57:53 If you want to create a new branch to retain commits you create, you may 17:57:53 do so (now or later) by using -b with the checkout command again. Example: 17:57:53 17:57:53 git checkout -b <new-branch-name> 17:57:53 17:57:54 No tarball found at 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-kinetic-coordination-oru-msgs/ros-kinetic-coordination-oru-msgs_0.3.0.orig.tar.gz' 17:57:55 No tarball found at 'http://packages.ros.org/ros/ubuntu/pool/main/r/ros-kinetic-coordination-oru-msgs/ros-kinetic-coordination-oru-msgs_0.3.0.orig.tar.gz' 17:57:55 Package 'coordination_oru_msgs' version: 0.3.0-0xenial 17:57:55 Package maintainer emails: marc@hanheide.net 17:57:55 # END SUBSECTION
10.2. build sourcedeb

Hide Details

17:57:55 # BEGIN SUBSECTION: build sourcedeb 17:57:55 Invoking 'gbp buildpackage --git-ignore-new --git-ignore-branch -S -us -uc --lintian-opts --suppress-tags newer-standards-version' in '/tmp/sourcedeb/source' 17:57:57 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 17:57:59 gbp:info: ros-kinetic-coordination-oru-msgs_0.3.0.orig.tar.gz does not exist, creating from 'release/kinetic/coordination_oru_msgs/0.3.0-0' 17:58:00 dpkg-buildpackage -rfakeroot -d -us -uc -i -I -S 17:58:00 dpkg-buildpackage: source package ros-kinetic-coordination-oru-msgs 17:58:00 dpkg-buildpackage: source version 0.3.0-0xenial 17:58:00 dpkg-buildpackage: source distribution xenial 17:58:00 dpkg-buildpackage: source changed by Marc Hanheide <marc@hanheide.net> 17:58:00 dpkg-source -i -I --before-build source 17:58:00 dpkg-source: info: using options from source/debian/source/options: --auto-commit 17:58:00 fakeroot debian/rules clean 17:58:01 dh clean -v --buildsystem=cmake 17:58:01 dh_testdir -O-v -O--buildsystem=cmake 17:58:01 dh_auto_clean -O-v -O--buildsystem=cmake 17:58:01 dh_clean -O-v -O--buildsystem=cmake 17:58:01 rm -f debian/debhelper-build-stamp 17:58:01 rm -f debian/ros-kinetic-coordination-oru-msgs.substvars 17:58:01 rm -f debian/ros-kinetic-coordination-oru-msgs.*.debhelper 17:58:01 rm -rf debian/ros-kinetic-coordination-oru-msgs/ 17:58:01 rm -rf debian/.debhelper/ 17:58:01 rm -f debian/*.debhelper.log 17:58:01 rm -f debian/files 17:58:01 find . \( \( \ 17:58:01 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS \) -prune -o -type f -a \ 17:58:01 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 17:58:01 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 17:58:01 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 17:58:01 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 17:58:01 \) -exec rm -f {} + \) -o \ 17:58:01 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 17:58:01 rm -f *-stamp 17:58:01 dpkg-source -i -I -b source 17:58:01 dpkg-source: info: using options from source/debian/source/options: --auto-commit 17:58:01 dpkg-source: info: using source format '3.0 (quilt)' 17:58:01 dpkg-source: info: building ros-kinetic-coordination-oru-msgs using existing ./ros-kinetic-coordination-oru-msgs_0.3.0.orig.tar.gz 17:58:01 dpkg-source: info: building ros-kinetic-coordination-oru-msgs in ros-kinetic-coordination-oru-msgs_0.3.0-0xenial.debian.tar.xz 17:58:01 dpkg-source: info: building ros-kinetic-coordination-oru-msgs in ros-kinetic-coordination-oru-msgs_0.3.0-0xenial.dsc 17:58:01 dpkg-genchanges -S >../ros-kinetic-coordination-oru-msgs_0.3.0-0xenial_source.changes 17:58:02 dpkg-genchanges: warning: debian/changelog(l18): found trailer where expected start of change data 17:58:02 LINE: -- Marc Hanheide <marc@hanheide.net> Mon, 14 May 2018 13:54:00 -0000 17:58:02 dpkg-genchanges: including full source code in upload 17:58:02 dpkg-source -i -I --after-build source 17:58:02 dpkg-source: info: using options from source/debian/source/options: --auto-commit 17:58:02 dpkg-buildpackage: full upload (original source is included) 17:58:02 Now running lintian... 17:58:06 W: ros-kinetic-coordination-oru-msgs source: pear-package-without-pkg-php-tools-builddep 17:58:06 W: ros-kinetic-coordination-oru-msgs source: no-debian-copyright 17:58:06 W: ros-kinetic-coordination-oru-msgs source: ancient-standards-version 3.9.2 (current is 3.9.7) 17:58:06 Finished running lintian. 17:58:06 # END SUBSECTION
17:58:06 + echo # END SECTION 17:58:06 # END SECTION
17:58:06 [Ksrc_uX__coordination_oru_msgs__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson3071200393502622805.sh 17:58:06 + [ false = false ] 17:58:06 + echo # BEGIN SECTION: Clean up to save disk space on slaves
11. Clean up to save disk space on slaves

Hide Details

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

Hide Details

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