SuccessConsole Output

21:15:32 Started by upstream project "Mrel_trigger-jobs" build number 792
21:15:32 originally caused by:
21:15:32  Started by timer
21:15:32 Building remotely on build client 2 (buildagent slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source
21:15:32 [ssh-agent] Looking for ssh-agent implementation...
21:15:32 [ssh-agent]   Exec ssh-agent (binary ssh-agent on a remote machine)
21:15:32 $ ssh-agent
21:15:32 SSH_AUTH_SOCK=/tmp/ssh-YvBAcP5CvpAv/agent.31465
21:15:32 SSH_AGENT_PID=31466
21:15:32 [ssh-agent] Started.
21:15:32 $ ssh-add /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source@tmp/private_key_4160600641199304718.key
21:15:32 Identity added: /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source@tmp/private_key_4160600641199304718.key (/home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source@tmp/private_key_4160600641199304718.key)
21:15:32 [ssh-agent] Using credentials jenkins-slave
1. Check free disk space

Hide Details

21:15:33 # BEGIN SECTION: Check free disk space 21:15:33 Usable disk space = 53710372864 bytes 21:15:33 Free space threshold = 5368709120 bytes 21:15:33 # END SECTION
21:15:33 [Msrc_uB__robot_pose_publisher__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson7140107149464821421.sh 21:15:33 + echo # BEGIN SECTION: docker version
2. docker version

Hide Details

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

Hide Details

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

Hide Details

21:15:34 # BEGIN SECTION: Check docker status 21:15:34 + echo Testing trivial docker invocation... 21:15:34 Testing trivial docker invocation... 21:15:34 + docker run --rm ubuntu:bionic true 21:15:35 + echo 'docker run' returned 0 21:15:35 'docker run' returned 0 21:15:35 docker seems operational, continuing 21:15:35 [Msrc_uB__robot_pose_publisher__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson7123233140347524887.sh 21:15:35 + echo # END SECTION 21:15:35 # END SECTION
21:15:35 [Msrc_uB__robot_pose_publisher__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson1281194653309580784.sh 21:15:35 + echo # BEGIN SECTION: Embed wrapper scripts
5. Embed wrapper scripts

Hide Details

21:15:35 # BEGIN SECTION: Embed wrapper scripts 21:15:35 + rm -fr wrapper_scripts 21:15:35 + mkdir wrapper_scripts 21:15:35 + 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()) 21:15:35 + echo # END SECTION 21:15:35 # END SECTION
21:15:35 [Msrc_uB__robot_pose_publisher__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson724159921670828509.sh 21:15:35 + echo # BEGIN SECTION: Clone ros_buildfarm
6. Clone ros_buildfarm

Hide Details

21:15:35 # BEGIN SECTION: Clone ros_buildfarm 21:15:35 + rm -fr ros_buildfarm 21:15:35 + python3 -u wrapper_scripts/git.py clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm 21:15:35 Invoking 'git clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 21:15:35 Cloning into 'ros_buildfarm'... 21:15:37 + git -C ros_buildfarm --no-pager log -n 1 21:15:37 commit 1dd549025f8ffed420cf38aca8b3234ad940b860 21:15:37 Author: Marc Hanheide <marc@hanheide.net> 21:15:37 Date: Tue Nov 12 15:42:35 2019 +0000 21:15:37 21:15:37 added auth token to main sync job 21:15:37 + rm -fr ros_buildfarm/.git 21:15:37 + rm -fr ros_buildfarm/doc 21:15:37 + echo # END SECTION 21:15:37 # END SECTION
21:15:37 [Msrc_uB__robot_pose_publisher__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson705773640558141012.sh 21:15:37 + echo # BEGIN SECTION: Write PGP repository keys
7. Write PGP repository keys

Hide Details

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

Hide Details

21:15:38 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 21:15:38 + export TZ=GMT+00 21:15:38 + export PYTHONPATH=/home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/ros_buildfarm: 21:15:38 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/ros_buildfarm/scripts/release/run_sourcedeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic robot_pose_publisher ubuntu bionic --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu --distribution-repository-key-files /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/keys/0.key /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/keys/1.key --source-dir /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/sourcedeb/source --dockerfile-dir /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/docker_sourcedeb 21:15:38 Using the following distribution repositories: 21:15:38 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/keys/0.key) 21:15:38 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/keys/1.key) 21:15:38 Generating Dockerfile '/home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/docker_sourcedeb/Dockerfile': 21:15:38 # generated from release/sourcedeb_task.Dockerfile.em 21:15:38 21:15:38 FROM ubuntu:bionic 21:15:38 21:15:38 VOLUME ["/var/cache/apt/archives"] 21:15:38 21:15:38 ENV DEBIAN_FRONTEND noninteractive 21:15:38 21:15:38 21:15:38 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 21:15:38 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 21:15:38 RUN locale-gen en_US.UTF-8 21:15:38 ENV LANG en_US.UTF-8 21:15:38 ENV TZ GMT+00 21:15:38 21:15:38 RUN useradd -u 1002 -l -m buildfarm 21:15:38 21:15:38 RUN mkdir /tmp/keys 21:15:38 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 21:15:38 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 21:15:38 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 21:15:38 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 21:15:38 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 21:15:38 21:15:38 RUN mkdir /tmp/wrapper_scripts 21:15:38 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 'Failed to stat',\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 'has no installation candidate',\n 'corrupted package archive',\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('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\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 21:15:38 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 21:15:38 21:15:38 # automatic invalidation once every day 21:15:38 RUN echo "2019-11-15 (+0000)" 21:15:38 21:15:38 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 21:15:38 21:15:38 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 21:15:38 21:15:38 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 21:15:38 21:15:38 COPY .git-credentials /home/buildfarm/.git-credentials 21:15:38 RUN chmod 600 /home/buildfarm/.git-credentials 21:15:38 RUN chown buildfarm /home/buildfarm/.git-credentials 21:15:38 21:15:38 USER buildfarm 21:15:38 RUN git config --global credential.helper 'store' 21:15:38 RUN git config --global http.sslVerify false 21:15:38 21:15:38 ENTRYPOINT ["sh", "-c"] 21:15:38 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 melodic robot_pose_publisher ubuntu bionic 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 bionic --source-dir /tmp/sourcedeb/source"] 21:15:38 + echo # END SECTION 21:15:38 # END SECTION
21:15:38 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb
9. Build Dockerfile - generate sourcedeb

Hide Details

21:15:38 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 21:15:38 + cd /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/docker_sourcedeb 21:15:38 + cp -L **** /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/docker_sourcedeb/.git-credentials 21:15:38 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 21:15:39 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 21:15:39 Check docker base image for updates: docker pull ubuntu:bionic 21:15:40 bionic: Pulling from library/ubuntu 21:15:40 Digest: sha256:1d1c09d1d5e42265dd6e7d35dcc73373f0e1b76da661463f24487ac3dbeb673f 21:15:40 Status: Image is up to date for ubuntu:bionic 21:15:40 + docker build --force-rm -t sourcedeb.melodic_ubuntu_bionic_robot_pose_publisher . 21:15:40 Sending build context to Docker daemon 18.94 kB Sending build context to Docker daemon 18.94 kB 21:15:40 Step 1 : FROM ubuntu:bionic 21:15:40 ---> 6120d8e09b3f 21:15:40 Step 2 : VOLUME /var/cache/apt/archives 21:15:41 ---> Using cache 21:15:41 ---> 41662618c3f3 21:15:41 Step 3 : ENV DEBIAN_FRONTEND noninteractive 21:15:41 ---> Using cache 21:15:41 ---> 0a994878ebbe 21:15: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 -lt 3 ]; then sleep 5; else false; fi; done 21:15:42 ---> Using cache 21:15:42 ---> 11d6297b5e03 21:15:42 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 21:15:42 ---> Using cache 21:15:42 ---> 24b3d17f9554 21:15:42 Step 6 : RUN locale-gen en_US.UTF-8 21:15:42 ---> Using cache 21:15:42 ---> ef2c05211818 21:15:42 Step 7 : ENV LANG en_US.UTF-8 21:15:43 ---> Using cache 21:15:43 ---> efc7db86d7ba 21:15:43 Step 8 : ENV TZ GMT+00 21:15:43 ---> Using cache 21:15:43 ---> a58e57946b8a 21:15:43 Step 9 : RUN useradd -u 1002 -l -m buildfarm 21:15:44 ---> Using cache 21:15:44 ---> d296a79e5df6 21:15:44 Step 10 : RUN mkdir /tmp/keys 21:15:44 ---> Using cache 21:15:44 ---> 28b00bfcc4e9 21:15:44 Step 11 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 21:15:45 ---> Using cache 21:15:45 ---> fec1836b4263 21:15:45 Step 12 : 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 21:15:45 ---> Using cache 21:15:45 ---> 337a2f566fab 21:15:45 Step 13 : 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 21:15:46 ---> Using cache 21:15:46 ---> 52c8296759a9 21:15:46 Step 14 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 21:15:46 ---> Using cache 21:15:46 ---> 235dc6e8d938 21:15:46 Step 15 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 21:15:47 ---> Using cache 21:15:47 ---> d17b7a7ea26f 21:15:47 Step 16 : RUN mkdir /tmp/wrapper_scripts 21:15:47 ---> Using cache 21:15:47 ---> 8136c6d880a5 21:15:47 Step 17 : 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 'Failed to stat',\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 'has no installation candidate',\n 'corrupted package archive',\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('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\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 21:15:48 ---> Using cache 21:15:48 ---> 055353ce9728 21:15:48 Step 18 : 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 21:15:48 ---> Using cache 21:15:48 ---> dee2bb5e566f 21:15:48 Step 19 : RUN echo "2019-11-15 (+0000)" 21:15:49 ---> Using cache 21:15:49 ---> 8e7cf2478370 21:15:49 Step 20 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [ $i -lt 3 ]; then sleep 5; else false; fi; done 21:15:49 ---> Using cache 21:15:49 ---> a94cfa9bbe65 21:15:49 Step 21 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 21:15:50 ---> Using cache 21:15:50 ---> 906771ab4096 21:15:50 Step 22 : 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 21:15:50 ---> Using cache 21:15:50 ---> d072e657096a 21:15:50 Step 23 : COPY .git-credentials /home/buildfarm/.git-credentials 21:15:50 ---> Using cache 21:15:50 ---> e8a5bd61522b 21:15:50 Step 24 : RUN chmod 600 /home/buildfarm/.git-credentials 21:15:51 ---> Using cache 21:15:51 ---> 8e9decacfafb 21:15:51 Step 25 : RUN chown buildfarm /home/buildfarm/.git-credentials 21:15:52 ---> Using cache 21:15:52 ---> 8f73c9f672f7 21:15:52 Step 26 : USER buildfarm 21:15:52 ---> Using cache 21:15:52 ---> 90eeb7caf0b2 21:15:52 Step 27 : RUN git config --global credential.helper 'store' 21:15:52 ---> Using cache 21:15:52 ---> fabb1cb40ab1 21:15:52 Step 28 : RUN git config --global http.sslVerify false 21:15:53 ---> Using cache 21:15:53 ---> bc560eb84fed 21:15:53 Step 29 : ENTRYPOINT sh -c 21:15:53 ---> Using cache 21:15:53 ---> ad63e8757ca3 21:15:53 Step 30 : 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 melodic robot_pose_publisher ubuntu bionic 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 bionic --source-dir /tmp/sourcedeb/source 21:15:54 ---> Running in 0277d295a595 21:15:54 ---> ac0a350de6db 21:15:54 Removing intermediate container 0277d295a595 21:15:54 Successfully built ac0a350de6db 21:15:54 + echo # END SECTION 21:15:54 # END SECTION
21:15:54 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb
10. Run Dockerfile - generate sourcedeb

Hide Details

21:15:54 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 21:15:54 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/sourcedeb 21:15:54 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/sourcedeb/source 21:15:54 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Msrc_uB__robot_pose_publisher__ubuntu_bionic__source/sourcedeb:/tmp/sourcedeb sourcedeb.melodic_ubuntu_bionic_robot_pose_publisher
10.1. get sources

Hide Details

21:15:55 # BEGIN SUBSECTION: get sources 21:16:00 Invoking 'git clone --branch debian/ros-melodic-robot-pose-publisher_0.2.4-1_bionic --depth 1 --no-single-branch https://github.com/lcas-releases/robot_pose_publiser.git /tmp/sourcedeb/source' 21:16:00 Cloning into '/tmp/sourcedeb/source'... 21:16:01 Note: checking out 'c0e78ff61481616ce45863d03308a8bf0742052b'. 21:16:01 21:16:01 You are in 'detached HEAD' state. You can look around, make experimental 21:16:01 changes and commit them, and you can discard any commits you make in this 21:16:01 state without impacting any branches by performing another checkout. 21:16:01 21:16:01 If you want to create a new branch to retain commits you create, you may 21:16:01 do so (now or later) by using -b with the checkout command again. Example: 21:16:01 21:16:01 git checkout -b <new-branch-name> 21:16:01 21:16:01 No tarball found at 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-melodic-robot-pose-publisher/ros-melodic-robot-pose-publisher_0.2.4.orig.tar.gz' 21:16:01 No tarball found at 'http://packages.ros.org/ros/ubuntu/pool/main/r/ros-melodic-robot-pose-publisher/ros-melodic-robot-pose-publisher_0.2.4.orig.tar.gz' 21:16:01 Package 'robot_pose_publisher' version: 0.2.4-1bionic 21:16:01 Package maintainer emails: rctoris@wpi.edu 21:16:01 # END SUBSECTION
10.2. build sourcedeb

Hide Details

21:16:01 # BEGIN SUBSECTION: build sourcedeb 21:16:01 Invoking 'gbp buildpackage --git-ignore-new --git-ignore-branch -S -d -ui -us -uc --lintian-opts --suppress-tags newer-standards-version' in '/tmp/sourcedeb/source' 21:16:02 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 21:16:02 gbp:info: Creating ros-melodic-robot-pose-publisher_0.2.4.orig.tar.gz from 'release/melodic/robot_pose_publisher/0.2.4-1' 21:16:02 gbp:info: Performing the build 21:16:02 dpkg-buildpackage -rfakeroot -us -uc -ui -i -I -S -d 21:16:02 dpkg-buildpackage: info: source package ros-melodic-robot-pose-publisher 21:16:02 dpkg-buildpackage: info: source version 0.2.4-1bionic 21:16:02 dpkg-buildpackage: info: source distribution bionic 21:16:02 dpkg-buildpackage: info: source changed by Russell Toris <rctoris@wpi.edu> 21:16:02 dpkg-source -i -I --before-build source 21:16:02 dpkg-source: info: using options from source/debian/source/options: --auto-commit 21:16:02 fakeroot debian/rules clean 21:16:03 dh clean -v --buildsystem=cmake 21:16:03 dh_testdir -O-v -O--buildsystem=cmake 21:16:03 dh_auto_clean -O-v -O--buildsystem=cmake 21:16:03 dh_clean -O-v -O--buildsystem=cmake 21:16:03 rm -f debian/debhelper-build-stamp 21:16:03 rm -rf debian/.debhelper/ 21:16:03 rm -f -- debian/ros-melodic-robot-pose-publisher.substvars debian/files 21:16:03 rm -fr -- debian/ros-melodic-robot-pose-publisher/ debian/tmp/ 21:16:03 find . \( \( \ 21:16:03 \( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -path .\*/.hg -o -path .\*/CVS -o -path .\*/.pc -o -path .\*/_darcs \) -prune -o -type f -a \ 21:16:03 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 21:16:03 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 21:16:03 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 21:16:03 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 21:16:03 \) -exec rm -f {} + \) -o \ 21:16:03 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 21:16:03 dpkg-source -i -I -b source 21:16:03 dpkg-source: info: using options from source/debian/source/options: --auto-commit 21:16:03 dpkg-source: info: using source format '3.0 (quilt)' 21:16:03 dpkg-source: info: building ros-melodic-robot-pose-publisher using existing ./ros-melodic-robot-pose-publisher_0.2.4.orig.tar.gz 21:16:03 dpkg-source: info: building ros-melodic-robot-pose-publisher in ros-melodic-robot-pose-publisher_0.2.4-1bionic.debian.tar.xz 21:16:03 dpkg-source: info: building ros-melodic-robot-pose-publisher in ros-melodic-robot-pose-publisher_0.2.4-1bionic.dsc 21:16:03 dpkg-genbuildinfo --build=source 21:16:04 dpkg-genchanges --build=source >../ros-melodic-robot-pose-publisher_0.2.4-1bionic_source.changes 21:16:04 dpkg-genchanges: info: including full source code in upload 21:16:04 dpkg-source -i -I --after-build source 21:16:04 dpkg-source: info: using options from source/debian/source/options: --auto-commit 21:16:04 dpkg-buildpackage: info: full upload (original source is included) 21:16:04 Now running lintian --suppress-tags newer-standards-version ros-melodic-robot-pose-publisher_0.2.4-1bionic_source.changes ... 21:16:06 W: ros-melodic-robot-pose-publisher source: no-debian-copyright 21:16:06 W: ros-melodic-robot-pose-publisher source: ancient-standards-version 3.9.2 (released 2011-04-07) (current is 4.1.4) 21:16:06 Finished running lintian. 21:16:06 # END SUBSECTION
21:16:06 + echo # END SECTION 21:16:06 # END SECTION
21:16:06 [Msrc_uB__robot_pose_publisher__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson5864646594093009354.sh 21:16:06 + [ false = false ] 21:16:06 + echo # BEGIN SECTION: Clean up to save disk space on agents
11. Clean up to save disk space on agents

Hide Details

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

Hide Details

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