SuccessConsole Output

20:29:30 Started by upstream project "Krel_trigger-jobs" build number 81248
20:29:30 originally caused by:
20:29:30  Started by upstream project "Krel_reconfigure-jobs" build number 2302
20:29:30  originally caused by:
20:29:30   Started by user SYSTEM
20:29:30 Building remotely on build client 1 (slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source
20:29:30 [ssh-agent] Looking for ssh-agent implementation...
20:29:30 [ssh-agent]   Exec ssh-agent (binary ssh-agent on a remote machine)
20:29:30 $ ssh-agent
20:29:30 SSH_AUTH_SOCK=/tmp/ssh-AXuwj3tnO8z7/agent.22554
20:29:30 SSH_AGENT_PID=22556
20:29:30 [ssh-agent] Started.
20:29:30 $ ssh-add /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source@tmp/private_key_647898428224349857.key
20:29:30 Identity added: /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source@tmp/private_key_647898428224349857.key (/home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source@tmp/private_key_647898428224349857.key)
20:29:30 [ssh-agent] Using credentials jenkins-slave
1. Check free disk space

Hide Details

20:29:30 # BEGIN SECTION: Check free disk space 20:29:30 Usable disk space = 17711824896 bytes 20:29:30 Free space threshold = 5368709120 bytes 20:29:30 # END SECTION
20:29:30 [Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson8234428300941028625.sh 20:29:30 + echo # BEGIN SECTION: docker version
2. docker version

Hide Details

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

Hide Details

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

Hide Details

20:29:32 # BEGIN SECTION: Check docker status 20:29:32 + echo Testing trivial docker invocation... 20:29:32 Testing trivial docker invocation... 20:29:32 + docker run --rm ubuntu:xenial true 20:29:33 + echo 'docker run' returned 0 20:29:33 'docker run' returned 0 20:29:33 docker seems operational, continuing 20:29:33 [Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson7067002095963001648.sh 20:29:33 + echo # END SECTION 20:29:33 # END SECTION
20:29:33 [Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson1674830321713878973.sh 20:29:33 + echo # BEGIN SECTION: Embed wrapper scripts
5. Embed wrapper scripts

Hide Details

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

Hide Details

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

Hide Details

20:29:36 # BEGIN SECTION: Write PGP repository keys 20:29:36 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/keys 20:29:36 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/keys/0.key /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/keys/1.key 20:29:36 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 20:29:36 Version: GnuPG v1.4.11 (GNU/Linux) 20:29:36 20:29:36 mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn 20:29:36 MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf 20:29:36 xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw 20:29:36 kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv 20:29:36 /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh 20:29:36 EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg 20:29:36 KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD 20:29:36 BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX 20:29:36 yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 20:29:36 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy 20:29:36 JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T 20:29:36 Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ 20:29:36 Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ 20:29:36 cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM 20:29:36 hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 20:29:36 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm 20:29:36 Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 20:29:36 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb 20:29:36 oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC 20:29:36 AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U 20:29:36 NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 20:29:36 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU 20:29:36 M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N 20:29:36 l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ 20:29:36 Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== 20:29:36 =nFcN 20:29:36 -----END PGP PUBLIC KEY BLOCK----- 20:29:36 20:29:36 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 20:29:36 Version: SKS 1.1.6 20:29:36 Comment: Hostname: keyserver.ubuntu.com 20:29:36 20:29:36 mQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L 20:29:36 /HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw 20:29:36 DuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47 20:29:36 ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+ 20:29:36 d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS 20:29:36 6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN 20:29:36 qoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL 20:29:36 8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/ 20:29:36 /SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz 20:29:36 vz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90 20:29:36 aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu 20:29:36 1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur 20:29:36 F8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN 20:29:36 KARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s 20:29:36 NGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv 20:29:36 ZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO 20:29:36 K+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo 20:29:36 bC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs 20:29:36 Fn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s 20:29:36 QNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR 20:29:36 hE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp 20:29:36 PWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd 20:29:36 =4Ofr 20:29:36 -----END PGP PUBLIC KEY BLOCK----- 20:29:36 20:29:36 + echo # END SECTION 20:29:36 # END SECTION
20:29:36 [Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson8701019724706691092.sh 20:29:36 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/docker_sourcedeb 20:29:36 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/docker_sourcedeb 20:29:36 + sleep 1 20:29:36 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/ros_buildfarm/scripts/subprocess_reaper.py 22949 --cid-file /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/docker_sourcedeb/docker.cid 20:29:37 + echo # BEGIN SECTION: Generate Dockerfile - sourcedeb task
8. Generate Dockerfile - sourcedeb task

Hide Details

20:29:37 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 20:29:37 + export TZ=GMT+00 20:29:37 + export PYTHONPATH=/home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/ros_buildfarm: 20:29:37 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/ros_buildfarm/scripts/release/run_sourcedeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml kinetic thorvald_example_robots 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__thorvald_example_robots__ubuntu_xenial__source/keys/0.key /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/keys/1.key --source-dir /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/sourcedeb/source --dockerfile-dir /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/docker_sourcedeb 20:29:37 Using the following distribution repositories: 20:29:37 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/keys/0.key) 20:29:37 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/keys/1.key) 20:29:37 Generating Dockerfile '/home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/docker_sourcedeb/Dockerfile': 20:29:37 # generated from release/sourcedeb_task.Dockerfile.em 20:29:37 20:29:37 FROM ubuntu:xenial 20:29:37 20:29:37 VOLUME ["/var/cache/apt/archives"] 20:29:37 20:29:37 ENV DEBIAN_FRONTEND noninteractive 20:29:37 20:29:37 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 20:29:37 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 20:29:37 RUN locale-gen en_US.UTF-8 20:29:37 ENV LANG en_US.UTF-8 20:29:37 ENV TZ GMT+00 20:29:37 20:29:37 RUN useradd -u 1002 -m buildfarm 20:29:37 20:29:37 20:29:37 RUN mkdir /tmp/keys 20:29:37 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 20:29:37 RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 20:29:37 RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:29:37 RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:29:37 20:29:37 RUN mkdir /tmp/wrapper_scripts 20:29:37 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 20:29:37 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 20:29:37 20:29:37 # automatic invalidation once every day 20:29:37 RUN echo "2019-10-07 (+0000)" 20:29:37 20:29:37 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 20:29:37 20:29:37 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 20:29:37 20:29:37 COPY .git-credentials /home/buildfarm/.git-credentials 20:29:37 RUN chmod 600 /home/buildfarm/.git-credentials 20:29:37 RUN chown buildfarm /home/buildfarm/.git-credentials 20:29:37 20:29:37 USER buildfarm 20:29:37 RUN git config --global credential.helper 'store' 20:29:37 RUN git config --global http.sslVerify false 20:29:37 20:29:37 ENTRYPOINT ["sh", "-c"] 20:29:37 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 thorvald_example_robots 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"] 20:29:37 + echo # END SECTION 20:29:37 # END SECTION
20:29:37 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb
9. Build Dockerfile - generate sourcedeb

Hide Details

20:29:37 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 20:29:37 + cd /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/docker_sourcedeb 20:29:37 + cp -L **** /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/docker_sourcedeb/.git-credentials 20:29:37 + python3 -u /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 20:29:37 Get base image name from Dockerfile 'Dockerfile': ubuntu:xenial 20:29:37 Check docker base image for updates: docker pull ubuntu:xenial 20:29:39 xenial: Pulling from library/ubuntu 20:29:39 Digest: sha256:3391caa63e4cb3b0310bcf426079c9b69f28871e987bde3c4a0c91af99a2ce37 20:29:39 Status: Image is up to date for ubuntu:xenial 20:29:39 + docker build --force-rm -t sourcedeb.kinetic_ubuntu_xenial_thorvald_example_robots . 20:29:39 Sending build context to Docker daemon 18.43 kB Sending build context to Docker daemon 18.43 kB 20:29:39 Step 1 : FROM ubuntu:xenial 20:29:39 ---> ee2e0ceec801 20:29:39 Step 2 : VOLUME /var/cache/apt/archives 20:29:40 ---> Using cache 20:29:40 ---> 4e34b0d6d3ca 20:29:40 Step 3 : ENV DEBIAN_FRONTEND noninteractive 20:29:41 ---> Using cache 20:29:41 ---> 4854e3086e8f 20:29:41 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 20:29:42 ---> Using cache 20:29:42 ---> 9dcf0b4e2154 20:29:42 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 20:29:43 ---> Using cache 20:29:43 ---> fc3ae1437f24 20:29:43 Step 6 : RUN locale-gen en_US.UTF-8 20:29:45 ---> Using cache 20:29:45 ---> 83a52128b3d2 20:29:45 Step 7 : ENV LANG en_US.UTF-8 20:29:47 ---> Using cache 20:29:47 ---> b11c076ddc1b 20:29:47 Step 8 : ENV TZ GMT+00 20:29:49 ---> Using cache 20:29:49 ---> d2fa4c9ece42 20:29:49 Step 9 : RUN useradd -u 1002 -m buildfarm 20:29:51 ---> Using cache 20:29:51 ---> cdab65a53005 20:29:51 Step 10 : RUN mkdir /tmp/keys 20:29:52 ---> Using cache 20:29:52 ---> fcc7bbb54eac 20:29:52 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 20:29:54 ---> Using cache 20:29:54 ---> af16c9f3e309 20:29:54 Step 12 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: SKS 1.1.6\nComment: Hostname: keyserver.ubuntu.com\n\nmQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L\n/HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw\nDuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47\nZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+\nd+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS\n6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN\nqoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL\n8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/\n/SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz\nvz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90\naWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu\n1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur\nF8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN\nKARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s\nNGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv\nZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO\nK+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo\nbC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs\nFn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s\nQNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR\nhE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp\nPWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd\n=4Ofr\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/1.key && apt-key add /tmp/keys/1.key 20:29:56 ---> Using cache 20:29:56 ---> b37aed588768 20:29:56 Step 13 : RUN echo deb http://10.210.9.154/ubuntu/building xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:29:57 ---> Using cache 20:29:57 ---> 6f34a9aff58a 20:29:57 Step 14 : RUN echo deb http://packages.ros.org/ros/ubuntu xenial main | tee -a /etc/apt/sources.list.d/buildfarm.list 20:29:59 ---> Using cache 20:29:59 ---> 5b4978322c66 20:29:59 Step 15 : RUN mkdir /tmp/wrapper_scripts 20:30:01 ---> Using cache 20:30:01 ---> fb6cb7dbbdb7 20:30:01 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 20:30:03 ---> Using cache 20:30:03 ---> 2844f281dcc2 20:30:03 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 20:30:04 ---> Using cache 20:30:04 ---> 671c56c338f6 20:30:04 Step 18 : RUN echo "2019-10-07 (+0000)" 20:30:06 ---> Using cache 20:30:06 ---> 362efa33b38f 20:30:06 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 20:30:09 ---> Using cache 20:30:09 ---> f768fa82d463 20:30:09 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 20:30:11 ---> Using cache 20:30:11 ---> 46a3c1397894 20:30:11 Step 21 : COPY .git-credentials /home/buildfarm/.git-credentials 20:30:13 ---> Using cache 20:30:13 ---> c78080d56de0 20:30:13 Step 22 : RUN chmod 600 /home/buildfarm/.git-credentials 20:30:14 ---> Using cache 20:30:14 ---> a4645d56d175 20:30:14 Step 23 : RUN chown buildfarm /home/buildfarm/.git-credentials 20:30:16 ---> Using cache 20:30:16 ---> 6c2a859a73db 20:30:16 Step 24 : USER buildfarm 20:30:17 ---> Using cache 20:30:17 ---> 30d24928b2ff 20:30:17 Step 25 : RUN git config --global credential.helper 'store' 20:30:19 ---> Using cache 20:30:19 ---> 91974b0e6378 20:30:19 Step 26 : RUN git config --global http.sslVerify false 20:30:21 ---> Using cache 20:30:21 ---> 3999cafdbb61 20:30:21 Step 27 : ENTRYPOINT sh -c 20:30:23 ---> Using cache 20:30:23 ---> 2bd9e78e83e2 20:30:23 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 thorvald_example_robots 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 20:30:25 ---> Running in 8602a150b8fa 20:30:26 ---> 6e29151862f7 20:30:26 Removing intermediate container 8602a150b8fa 20:30:26 Successfully built 6e29151862f7 20:30:26 + echo # END SECTION 20:30:26 # END SECTION
20:30:26 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb
10. Run Dockerfile - generate sourcedeb

Hide Details

20:30:26 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 20:30:26 + rm -fr /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/sourcedeb 20:30:26 + mkdir -p /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/sourcedeb/source 20:30:26 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source/sourcedeb:/tmp/sourcedeb sourcedeb.kinetic_ubuntu_xenial_thorvald_example_robots
10.1. get sources

Hide Details

20:30:27 # BEGIN SUBSECTION: get sources 20:30:39 Invoking 'git clone --branch debian/ros-kinetic-thorvald-example-robots_1.2.0-1_xenial --depth 1 --no-single-branch https://github.com/LCAS/thorvald-releases.git /tmp/sourcedeb/source' 20:30:39 Cloning into '/tmp/sourcedeb/source'... 20:30:43 Note: checking out 'eb985f5812186217b9a49d16443e588597fb9eeb'. 20:30:43 20:30:43 You are in 'detached HEAD' state. You can look around, make experimental 20:30:43 changes and commit them, and you can discard any commits you make in this 20:30:43 state without impacting any branches by performing another checkout. 20:30:43 20:30:43 If you want to create a new branch to retain commits you create, you may 20:30:43 do so (now or later) by using -b with the checkout command again. Example: 20:30:43 20:30:43 git checkout -b <new-branch-name> 20:30:43 20:30:43 No tarball found at 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-kinetic-thorvald-example-robots/ros-kinetic-thorvald-example-robots_1.2.0.orig.tar.gz' 20:30:43 No tarball found at 'http://packages.ros.org/ros/ubuntu/pool/main/r/ros-kinetic-thorvald-example-robots/ros-kinetic-thorvald-example-robots_1.2.0.orig.tar.gz' 20:30:43 Package 'thorvald_example_robots' version: 1.2.0-1xenial 20:30:43 Package maintainer emails: lgrimstad@sagarobotics.com 20:30:43 # END SUBSECTION
10.2. build sourcedeb

Hide Details

20:30:43 # BEGIN SUBSECTION: build sourcedeb 20:30:43 Invoking 'gbp buildpackage --git-ignore-new --git-ignore-branch -S -us -uc --lintian-opts --suppress-tags newer-standards-version' in '/tmp/sourcedeb/source' 20:30:44 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 20:30:47 gbp:info: ros-kinetic-thorvald-example-robots_1.2.0.orig.tar.gz does not exist, creating from 'release/kinetic/thorvald_example_robots/1.2.0-1' 20:30:47 dpkg-buildpackage -rfakeroot -d -us -uc -i -I -S 20:30:47 dpkg-buildpackage: source package ros-kinetic-thorvald-example-robots 20:30:47 dpkg-buildpackage: source version 1.2.0-1xenial 20:30:47 dpkg-buildpackage: source distribution xenial 20:30:47 dpkg-buildpackage: source changed by Lars Grimstad <lgrimstad@sagarobotics.com> 20:30:47 dpkg-source -i -I --before-build source 20:30:47 dpkg-source: info: using options from source/debian/source/options: --auto-commit 20:30:47 fakeroot debian/rules clean 20:30:48 dh clean -v --buildsystem=cmake 20:30:48 dh_testdir -O-v -O--buildsystem=cmake 20:30:48 dh_auto_clean -O-v -O--buildsystem=cmake 20:30:48 dh_clean -O-v -O--buildsystem=cmake 20:30:48 rm -f debian/debhelper-build-stamp 20:30:48 rm -f debian/ros-kinetic-thorvald-example-robots.substvars 20:30:48 rm -f debian/ros-kinetic-thorvald-example-robots.*.debhelper 20:30:48 rm -rf debian/ros-kinetic-thorvald-example-robots/ 20:30:48 rm -rf debian/.debhelper/ 20:30:48 rm -f debian/*.debhelper.log 20:30:48 rm -f debian/files 20:30:48 find . \( \( \ 20:30:48 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS \) -prune -o -type f -a \ 20:30:48 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 20:30:48 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 20:30:48 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 20:30:48 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 20:30:48 \) -exec rm -f {} + \) -o \ 20:30:48 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 20:30:48 rm -f *-stamp 20:30:48 dpkg-source -i -I -b source 20:30:48 dpkg-source: info: using options from source/debian/source/options: --auto-commit 20:30:49 dpkg-source: info: using source format '3.0 (quilt)' 20:30:49 dpkg-source: info: building ros-kinetic-thorvald-example-robots using existing ./ros-kinetic-thorvald-example-robots_1.2.0.orig.tar.gz 20:30:49 dpkg-source: info: building ros-kinetic-thorvald-example-robots in ros-kinetic-thorvald-example-robots_1.2.0-1xenial.debian.tar.xz 20:30:49 dpkg-source: info: building ros-kinetic-thorvald-example-robots in ros-kinetic-thorvald-example-robots_1.2.0-1xenial.dsc 20:30:49 dpkg-genchanges -S >../ros-kinetic-thorvald-example-robots_1.2.0-1xenial_source.changes 20:30:49 dpkg-genchanges: including full source code in upload 20:30:49 dpkg-source -i -I --after-build source 20:30:49 dpkg-source: info: using options from source/debian/source/options: --auto-commit 20:30:49 dpkg-buildpackage: full upload (original source is included) 20:30:49 Now running lintian... 20:30:51 W: ros-kinetic-thorvald-example-robots source: pear-package-without-pkg-php-tools-builddep 20:30:51 W: ros-kinetic-thorvald-example-robots source: no-debian-copyright 20:30:51 W: ros-kinetic-thorvald-example-robots source: ancient-standards-version 3.9.2 (current is 3.9.7) 20:30:51 Finished running lintian. 20:30:51 # END SUBSECTION
20:30:51 + echo # END SECTION 20:30:51 # END SECTION
20:30:51 [Ksrc_uX__thorvald_example_robots__ubuntu_xenial__source] $ /bin/sh -xe /tmp/hudson4107685531653404379.sh 20:30:51 + [ false = false ] 20:30:51 + echo # BEGIN SECTION: Clean up to save disk space on slaves
11. Clean up to save disk space on slaves

Hide Details

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

Hide Details

20:30:54 # BEGIN SECTION: Check if triggered build failed 20:30:54 Pattern not found in build log, continuing... 20:30:54 # END SECTION
20:30:54 $ ssh-agent -k 20:30:54 unset SSH_AUTH_SOCK; 20:30:54 unset SSH_AGENT_PID; 20:30:54 echo Agent pid 22556 killed; 20:30:54 [ssh-agent] Stopped. 20:30:55 [description-setter] Description set: 1.2.0-1xenial 20:30: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 20:30:55 Triggering a new build of Kbin_uX64__thorvald_example_robots__ubuntu_xenial_amd64__binary 20:30:55 Finished: SUCCESS