Console Output
17:45:40 Started by upstream project "Mrel_trigger-jobs" build number 1931 17:45:40 originally caused by: 17:45:40 Started by timer 17:45:40 Building remotely on build client 2 (buildagent slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source 17:45:40 [ssh-agent] Looking for ssh-agent implementation... 17:45:40 [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) 17:45:40 $ ssh-agent 17:45:40 SSH_AUTH_SOCK=/tmp/ssh-WEBjJYjXlDNB/agent.23656 17:45:40 SSH_AGENT_PID=23658 17:45:40 [ssh-agent] Started. 17:45:40 $ ssh-add /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source@tmp/private_key_4387415828892974620.key 17:45:40 Identity added: /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source@tmp/private_key_4387415828892974620.key (/home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source@tmp/private_key_4387415828892974620.key) 17:45:40 [ssh-agent] Using credentials jenkins-slave17:45:40 [Msrc_uB__strands_morse__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson227115860364666290.sh 17:45:40 + echo # BEGIN SECTION: docker version1. Check free disk spaceHide Details
17:45:40 # BEGIN SECTION: Check free disk space 17:45:40 Usable disk space = 53920423936 bytes 17:45:40 Free space threshold = 5368709120 bytes 17:45:40 # END SECTION17:45:41 + echo # BEGIN SECTION: docker info2. docker versionHide Details
17:45:40 # BEGIN SECTION: docker version 17:45:40 + docker version 17:45:40 Client: 17:45:40 Version: 1.9.1 17:45:40 API version: 1.21 17:45:40 Go version: go1.4.2 17:45:40 Git commit: a34a1d5 17:45:40 Built: Fri Nov 20 13:12:04 UTC 2015 17:45:40 OS/Arch: linux/amd64 17:45:40 17:45:40 Server: 17:45:40 Version: 1.9.1 17:45:40 API version: 1.21 17:45:40 Go version: go1.4.2 17:45:40 Git commit: a34a1d5 17:45:40 Built: Fri Nov 20 13:12:04 UTC 2015 17:45:40 OS/Arch: linux/amd64 17:45:41 + echo # END SECTION 17:45:41 # END SECTION17:45:42 [Msrc_uB__strands_morse__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson3894850852360788406.sh 17:45:42 + echo # BEGIN SECTION: Check docker status3. docker infoHide Details
17:45:41 # BEGIN SECTION: docker info 17:45:41 + docker info 17:45:42 Containers: 81 17:45:42 Images: 1650 17:45:42 Server Version: 1.9.1 17:45:42 Storage Driver: aufs 17:45:42 Root Dir: /var/lib/docker/aufs 17:45:42 Backing Filesystem: extfs 17:45:42 Dirs: 2607 17:45:42 Dirperm1 Supported: false 17:45:42 Execution Driver: native-0.2 17:45:42 Logging Driver: json-file 17:45:42 Kernel Version: 3.13.0-29-generic 17:45:42 Operating System: Ubuntu 14.04 LTS 17:45:42 CPUs: 2 17:45:42 Total Memory: 3.861 GiB 17:45:42 Name: lcas-buildfarm-slave-1 17:45:42 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE 17:45:42 WARNING: No swap limit support 17:45:42 + echo # END SECTION 17:45:42 # END SECTION17:45:44 [Msrc_uB__strands_morse__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson3455303129133098141.sh 17:45:44 + echo # BEGIN SECTION: Embed wrapper scripts4. Check docker statusHide Details
17:45:42 # BEGIN SECTION: Check docker status 17:45:42 + echo Testing trivial docker invocation... 17:45:42 Testing trivial docker invocation... 17:45:42 + docker run --rm ubuntu:bionic true 17:45:43 + echo 'docker run' returned 0 17:45:43 'docker run' returned 0 17:45:43 docker seems operational, continuing 17:45:43 [Msrc_uB__strands_morse__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson7419351881177261237.sh 17:45:43 + echo # END SECTION 17:45:43 # END SECTION17:45:44 [Msrc_uB__strands_morse__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson4636231206043078376.sh 17:45:44 + echo # BEGIN SECTION: Clone ros_buildfarm5. Embed wrapper scriptsHide Details
17:45:44 # BEGIN SECTION: Embed wrapper scripts 17:45:44 + rm -fr wrapper_scripts 17:45:44 + mkdir wrapper_scripts 17:45:44 + printf #!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the "License");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an "AS IS" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert "Command '%%s' not implemented" %% command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print("Reinvoke 'git %%s' (%%d/%%d) after sleeping %%s seconds" %%\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print("Invoking '%%s'" %% ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main()) 17:45:44 + echo # END SECTION 17:45:44 # END SECTION17:45:47 [Msrc_uB__strands_morse__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson317527355259321235.sh 17:45:47 + echo # BEGIN SECTION: Write PGP repository keys6. Clone ros_buildfarmHide Details
17:45:44 # BEGIN SECTION: Clone ros_buildfarm 17:45:44 + rm -fr ros_buildfarm 17:45:44 + python3 -u wrapper_scripts/git.py clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm 17:45:44 Invoking 'git clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 17:45:44 Cloning into 'ros_buildfarm'... 17:45:47 + git -C ros_buildfarm --no-pager log -n 1 17:45:47 commit 769490a3a30c62410fc0c633da8552c554b6c221 17:45:47 Author: Marc Hanheide <marc@hanheide.net> 17:45:47 Date: Sun Nov 24 10:49:33 2019 +0000 17:45:47 17:45:47 added support for flat repos like NVIDIA 17:45:47 + rm -fr ros_buildfarm/.git 17:45:47 + rm -fr ros_buildfarm/doc 17:45:47 + echo # END SECTION 17:45:47 # END SECTION17:45:47 [Msrc_uB__strands_morse__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson5303855920432286557.sh 17:45:47 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/docker_sourcedeb 17:45:47 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/docker_sourcedeb 17:45:47 + sleep 1 17:45:47 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/ros_buildfarm/scripts/subprocess_reaper.py 23756 --cid-file /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/docker_sourcedeb/docker.cid 17:45:48 + echo # BEGIN SECTION: Generate Dockerfile - sourcedeb task7. Write PGP repository keysHide Details
17:45:47 # BEGIN SECTION: Write PGP repository keys 17:45:47 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/keys 17:45:47 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/keys/0.key /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/keys/1.key /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/keys/2.key 17:45:47 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 17:45:47 Version: GnuPG v1.4.11 (GNU/Linux) 17:45:47 17:45:47 mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn 17:45:47 MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf 17:45:47 xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw 17:45:47 kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv 17:45:47 /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh 17:45:47 EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg 17:45:47 KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD 17:45:47 BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX 17:45:47 yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 17:45:47 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy 17:45:47 JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T 17:45:47 Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ 17:45:47 Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ 17:45:47 cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM 17:45:47 hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 17:45:47 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm 17:45:47 Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 17:45:47 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb 17:45:47 oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC 17:45:47 AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U 17:45:47 NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 17:45:47 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU 17:45:47 M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N 17:45:47 l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ 17:45:47 Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== 17:45:47 =nFcN 17:45:47 -----END PGP PUBLIC KEY BLOCK----- 17:45:47 17:45:47 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 17:45:47 Version: SKS 1.1.6 17:45:47 Comment: Hostname: keyserver.ubuntu.com 17:45:47 17:45:47 mQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L 17:45:47 /HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw 17:45:47 DuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47 17:45:47 ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+ 17:45:47 d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS 17:45:47 6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN 17:45:47 qoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL 17:45:47 8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/ 17:45:47 /SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz 17:45:47 vz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90 17:45:47 aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu 17:45:47 1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur 17:45:47 F8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN 17:45:47 KARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s 17:45:47 NGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv 17:45:47 ZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO 17:45:47 K+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo 17:45:47 bC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs 17:45:47 Fn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s 17:45:47 QNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR 17:45:47 hE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp 17:45:47 PWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd 17:45:47 =4Ofr 17:45:47 -----END PGP PUBLIC KEY BLOCK----- 17:45:47 17:45:47 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 17:45:47 Version: GnuPG v1 17:45:47 17:45:47 mQINBFdtt4UBEAC8FDSWMR07GJZ265giLn7kLF+EsJCWESUq6Cd13QN0JQ/tLibi 17:45:47 QlW4ZjeOnEH9VPlqh/mKqNMG4SwRt8S+GHpePMQrr0aOkiRGfCclnAWIZURSAP+t 17:45:47 PLelCt43fkw1BBTopd/0oOzO8kHu8j8WU4A8GHxqghfFWPv54FQs2iaZ2eWR7a6d 17:45:47 79IJrbDKaVCCiQrkhCM8m648pNKHhuoJ9cQXFV+uvwkpfmKWGQ4ultxlOyjLHJLF 17:45:47 vuML2RuAO9IxbdZjzeYNN+T+wjFIBVcPnwEO+WrYgvGkT4r9aqVqTeg3EPb7QclV 17:45:47 sKBVJdxk4jZl0y22HAWqScVi6SJ15uK9pXxywDZkbpuRBWx4ThWiGe/FiUa2igi9 17:45:47 /SIvqN2TBY0g18sRTrylVr1wE1UGa/y7nDx6PoGCP1frBt8YUYt3pkM8Xvb2CRxx 17:45:47 CyWwmuFEQHC6jCEWf7FnoBHBYQwTVGNrU0vkuIeDrm+ZAcv8wx+ie1hlFhqCCJnf 17:45:47 jqeQ0/zA9RPmCPOkLyTdSsNZtlxxk7bzCdTdFFKzBjGTR7Gz3SMSp23d11eIyRiF 17:45:47 HQsp2v0SvnPJ6OcgB95Hmo544vi3RuoVfovtDOdfSBCRxP+GhhxkKSrTleQjD0/r 17:45:47 CGkdG2Kox3m9YllAsvZchLXlS7bZV9mGRF61mVMjF3HJRUQfBBm89VPQ+QARAQAB 17:45:47 tCBjdWRhdG9vbHMgPGN1ZGF0b29sc0BudmlkaWEuY29tPokCNwQTAQgAIQUCV223 17:45:47 hQIbAwULCQgHAwUVCgkICwUWAgMBAAIeAQIXgAAKCRD2D0s9f6KvgNArEAChnfcW 17:45:47 rYItgt7xXXubT6E+KpJyJ0RPrXf51S2mhciFbjDl+3EXRMRjOutVmgWYPWUUZaKR 17:45:47 8Iez3Lz4BRmwYOWBLtdnOLbKoSsQUX95rnPFjfly/DFLfjKxz4NRBmh4r4/rCYWm 17:45:47 2hmnXmOAi8kV7fqx3g5XMpJ//N6+T8ctEol2iZ82GrXjadcRWE4rAe7UyuEzJ74y 17:45:47 6ZKIzk5ijdgEKtcaBhzEWvoV5Pr9nkn7ByGsdehKR/gNnjPMYXrklSHGfphJIsS2 17:45:47 S32lMk/kuRjihBcWcYBXIPEQ7CV+PNW2TlkZj/YqTg637sZHwkhcjcNzxeqKvRYG 17:45:47 8V7Ju5hTDxL1UQBmgDS3cRx1lw7tYRG5bS67tbC2dc/CpPkG5agiZ/WyoHQDnn4r 17:45:47 1fRuOFx694QR6+0rAP6171xEEoNAPaH7gdJdhWKiYiJD0T2EEbW7wBUi/EupeKRv 17:45:47 kR12R1jUa1mlpxNtWQxJ7qp98T9+DmkxI1XDmWx0/g4ryuicwLDSqoPgNcRNdSQb 17:45:47 b8YfTqrkqaDdYzwLr/n0YKW3cYIvIeisV0WxRjb6OP7oAlAtaAhImlIc//51qNO7 17:45:47 /WAud6qMtnhFoZayR/BzLKqnCioN5GYr9BAKskpPHe9cDKVS3fg+Qvc1sNJID+jf 17:45:47 k52PqyW24Qsr0A9+5zQyE4tH9dfv120gj9avmg== 17:45:47 =0nKc 17:45:47 -----END PGP PUBLIC KEY BLOCK----- 17:45:47 17:45:47 + echo # END SECTION 17:45:47 # END SECTION17:45:49 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb8. Generate Dockerfile - sourcedeb taskHide Details
17:45:48 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 17:45:48 + export TZ=GMT+00 17:45:48 + export PYTHONPATH=/home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/ros_buildfarm: 17:45:48 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/ros_buildfarm/scripts/release/run_sourcedeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic strands_morse ubuntu bionic --distribution-repository-urls http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ --distribution-repository-key-files /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/keys/0.key /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/keys/1.key /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/keys/2.key --source-dir /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/sourcedeb/source --dockerfile-dir /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/docker_sourcedeb 17:45:49 Using the following distribution repositories: 17:45:49 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/keys/0.key) 17:45:49 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/keys/1.key) 17:45:49 http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ (/home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/keys/2.key) 17:45:49 Generating Dockerfile '/home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/docker_sourcedeb/Dockerfile': 17:45:49 # generated from release/sourcedeb_task.Dockerfile.em 17:45:49 17:45:49 FROM ubuntu:bionic 17:45:49 17:45:49 VOLUME ["/var/cache/apt/archives"] 17:45:49 17:45:49 ENV DEBIAN_FRONTEND noninteractive 17:45:49 17:45:49 17:45:49 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 17:45:49 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 17:45:49 RUN locale-gen en_US.UTF-8 17:45:49 ENV LANG en_US.UTF-8 17:45:49 ENV TZ GMT+00 17:45:49 17:45:49 RUN useradd -u 1002 -l -m buildfarm 17:45:49 17:45:49 RUN mkdir /tmp/keys 17:45:49 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 17:45:49 RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 17:45:49 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 17:45:49 RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQINBFdtt4UBEAC8FDSWMR07GJZ265giLn7kLF+EsJCWESUq6Cd13QN0JQ/tLibi\nQlW4ZjeOnEH9VPlqh/mKqNMG4SwRt8S+GHpePMQrr0aOkiRGfCclnAWIZURSAP+t\nPLelCt43fkw1BBTopd/0oOzO8kHu8j8WU4A8GHxqghfFWPv54FQs2iaZ2eWR7a6d\n79IJrbDKaVCCiQrkhCM8m648pNKHhuoJ9cQXFV+uvwkpfmKWGQ4ultxlOyjLHJLF\nvuML2RuAO9IxbdZjzeYNN+T+wjFIBVcPnwEO+WrYgvGkT4r9aqVqTeg3EPb7QclV\nsKBVJdxk4jZl0y22HAWqScVi6SJ15uK9pXxywDZkbpuRBWx4ThWiGe/FiUa2igi9\n/SIvqN2TBY0g18sRTrylVr1wE1UGa/y7nDx6PoGCP1frBt8YUYt3pkM8Xvb2CRxx\nCyWwmuFEQHC6jCEWf7FnoBHBYQwTVGNrU0vkuIeDrm+ZAcv8wx+ie1hlFhqCCJnf\njqeQ0/zA9RPmCPOkLyTdSsNZtlxxk7bzCdTdFFKzBjGTR7Gz3SMSp23d11eIyRiF\nHQsp2v0SvnPJ6OcgB95Hmo544vi3RuoVfovtDOdfSBCRxP+GhhxkKSrTleQjD0/r\nCGkdG2Kox3m9YllAsvZchLXlS7bZV9mGRF61mVMjF3HJRUQfBBm89VPQ+QARAQAB\ntCBjdWRhdG9vbHMgPGN1ZGF0b29sc0BudmlkaWEuY29tPokCNwQTAQgAIQUCV223\nhQIbAwULCQgHAwUVCgkICwUWAgMBAAIeAQIXgAAKCRD2D0s9f6KvgNArEAChnfcW\nrYItgt7xXXubT6E+KpJyJ0RPrXf51S2mhciFbjDl+3EXRMRjOutVmgWYPWUUZaKR\n8Iez3Lz4BRmwYOWBLtdnOLbKoSsQUX95rnPFjfly/DFLfjKxz4NRBmh4r4/rCYWm\n2hmnXmOAi8kV7fqx3g5XMpJ//N6+T8ctEol2iZ82GrXjadcRWE4rAe7UyuEzJ74y\n6ZKIzk5ijdgEKtcaBhzEWvoV5Pr9nkn7ByGsdehKR/gNnjPMYXrklSHGfphJIsS2\nS32lMk/kuRjihBcWcYBXIPEQ7CV+PNW2TlkZj/YqTg637sZHwkhcjcNzxeqKvRYG\n8V7Ju5hTDxL1UQBmgDS3cRx1lw7tYRG5bS67tbC2dc/CpPkG5agiZ/WyoHQDnn4r\n1fRuOFx694QR6+0rAP6171xEEoNAPaH7gdJdhWKiYiJD0T2EEbW7wBUi/EupeKRv\nkR12R1jUa1mlpxNtWQxJ7qp98T9+DmkxI1XDmWx0/g4ryuicwLDSqoPgNcRNdSQb\nb8YfTqrkqaDdYzwLr/n0YKW3cYIvIeisV0WxRjb6OP7oAlAtaAhImlIc//51qNO7\n/WAud6qMtnhFoZayR/BzLKqnCioN5GYr9BAKskpPHe9cDKVS3fg+Qvc1sNJID+jf\nk52PqyW24Qsr0A9+5zQyE4tH9dfv120gj9avmg==\n=0nKc\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/2.key && apt-key add /tmp/keys/2.key 17:45:49 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 17:45:49 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 17:45:49 RUN echo deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ / | tee -a /etc/apt/sources.list.d/buildfarm.list 17:45:49 17:45:49 RUN mkdir /tmp/wrapper_scripts 17:45:49 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 17:45:49 RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py 17:45:49 17:45:49 # automatic invalidation once every day 17:45:49 RUN echo "2019-11-27 (+0000)" 17:45:49 17:45:49 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 17:45:49 17:45:49 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 17:45:49 17:45:49 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y debhelper dpkg dpkg-dev git git-buildpackage python3-catkin-pkg-modules python3-rosdistro-modules python3-yaml 17:45:49 17:45:49 COPY .git-credentials /home/buildfarm/.git-credentials 17:45:49 RUN chmod 600 /home/buildfarm/.git-credentials 17:45:49 RUN chown buildfarm /home/buildfarm/.git-credentials 17:45:49 17:45:49 USER buildfarm 17:45:49 RUN git config --global credential.helper 'store' 17:45:49 RUN git config --global http.sslVerify false 17:45:49 17:45:49 ENTRYPOINT ["sh", "-c"] 17:45:49 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 strands_morse ubuntu bionic http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ --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"] 17:45:49 + echo # END SECTION 17:45:49 # END SECTION17:46:06 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb9. Build Dockerfile - generate sourcedebHide Details
17:45:49 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 17:45:49 + cd /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/docker_sourcedeb 17:45:49 + cp -L **** /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/docker_sourcedeb/.git-credentials 17:45:49 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 17:45:49 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 17:45:49 Check docker base image for updates: docker pull ubuntu:bionic 17:45:51 bionic: Pulling from library/ubuntu 17:45:51 Digest: sha256:1d1c09d1d5e42265dd6e7d35dcc73373f0e1b76da661463f24487ac3dbeb673f 17:45:51 Status: Image is up to date for ubuntu:bionic 17:45:51 + docker build --force-rm -t sourcedeb.melodic_ubuntu_bionic_strands_morse . 17:45:51 Sending build context to Docker daemon 20.48 kB Sending build context to Docker daemon 20.48 kB 17:45:51 Step 1 : FROM ubuntu:bionic 17:45:51 ---> 6120d8e09b3f 17:45:51 Step 2 : VOLUME /var/cache/apt/archives 17:45:51 ---> Using cache 17:45:51 ---> 41662618c3f3 17:45:51 Step 3 : ENV DEBIAN_FRONTEND noninteractive 17:45:52 ---> Using cache 17:45:52 ---> 0a994878ebbe 17:45:52 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 17:45:52 ---> Using cache 17:45:52 ---> 11d6297b5e03 17:45:52 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 17:45:53 ---> Using cache 17:45:53 ---> 24b3d17f9554 17:45:53 Step 6 : RUN locale-gen en_US.UTF-8 17:45:53 ---> Using cache 17:45:53 ---> ef2c05211818 17:45:53 Step 7 : ENV LANG en_US.UTF-8 17:45:54 ---> Using cache 17:45:54 ---> efc7db86d7ba 17:45:54 Step 8 : ENV TZ GMT+00 17:45:54 ---> Using cache 17:45:54 ---> a58e57946b8a 17:45:54 Step 9 : RUN useradd -u 1002 -l -m buildfarm 17:45:55 ---> Using cache 17:45:55 ---> d296a79e5df6 17:45:55 Step 10 : RUN mkdir /tmp/keys 17:45:55 ---> Using cache 17:45:55 ---> 28b00bfcc4e9 17:45:55 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 17:45:56 ---> Using cache 17:45:56 ---> fec1836b4263 17:45:56 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 17:45:56 ---> Using cache 17:45:56 ---> 337a2f566fab 17:45:56 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 17:45:57 ---> Using cache 17:45:57 ---> 52c8296759a9 17:45:57 Step 14 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1\n\nmQINBFdtt4UBEAC8FDSWMR07GJZ265giLn7kLF+EsJCWESUq6Cd13QN0JQ/tLibi\nQlW4ZjeOnEH9VPlqh/mKqNMG4SwRt8S+GHpePMQrr0aOkiRGfCclnAWIZURSAP+t\nPLelCt43fkw1BBTopd/0oOzO8kHu8j8WU4A8GHxqghfFWPv54FQs2iaZ2eWR7a6d\n79IJrbDKaVCCiQrkhCM8m648pNKHhuoJ9cQXFV+uvwkpfmKWGQ4ultxlOyjLHJLF\nvuML2RuAO9IxbdZjzeYNN+T+wjFIBVcPnwEO+WrYgvGkT4r9aqVqTeg3EPb7QclV\nsKBVJdxk4jZl0y22HAWqScVi6SJ15uK9pXxywDZkbpuRBWx4ThWiGe/FiUa2igi9\n/SIvqN2TBY0g18sRTrylVr1wE1UGa/y7nDx6PoGCP1frBt8YUYt3pkM8Xvb2CRxx\nCyWwmuFEQHC6jCEWf7FnoBHBYQwTVGNrU0vkuIeDrm+ZAcv8wx+ie1hlFhqCCJnf\njqeQ0/zA9RPmCPOkLyTdSsNZtlxxk7bzCdTdFFKzBjGTR7Gz3SMSp23d11eIyRiF\nHQsp2v0SvnPJ6OcgB95Hmo544vi3RuoVfovtDOdfSBCRxP+GhhxkKSrTleQjD0/r\nCGkdG2Kox3m9YllAsvZchLXlS7bZV9mGRF61mVMjF3HJRUQfBBm89VPQ+QARAQAB\ntCBjdWRhdG9vbHMgPGN1ZGF0b29sc0BudmlkaWEuY29tPokCNwQTAQgAIQUCV223\nhQIbAwULCQgHAwUVCgkICwUWAgMBAAIeAQIXgAAKCRD2D0s9f6KvgNArEAChnfcW\nrYItgt7xXXubT6E+KpJyJ0RPrXf51S2mhciFbjDl+3EXRMRjOutVmgWYPWUUZaKR\n8Iez3Lz4BRmwYOWBLtdnOLbKoSsQUX95rnPFjfly/DFLfjKxz4NRBmh4r4/rCYWm\n2hmnXmOAi8kV7fqx3g5XMpJ//N6+T8ctEol2iZ82GrXjadcRWE4rAe7UyuEzJ74y\n6ZKIzk5ijdgEKtcaBhzEWvoV5Pr9nkn7ByGsdehKR/gNnjPMYXrklSHGfphJIsS2\nS32lMk/kuRjihBcWcYBXIPEQ7CV+PNW2TlkZj/YqTg637sZHwkhcjcNzxeqKvRYG\n8V7Ju5hTDxL1UQBmgDS3cRx1lw7tYRG5bS67tbC2dc/CpPkG5agiZ/WyoHQDnn4r\n1fRuOFx694QR6+0rAP6171xEEoNAPaH7gdJdhWKiYiJD0T2EEbW7wBUi/EupeKRv\nkR12R1jUa1mlpxNtWQxJ7qp98T9+DmkxI1XDmWx0/g4ryuicwLDSqoPgNcRNdSQb\nb8YfTqrkqaDdYzwLr/n0YKW3cYIvIeisV0WxRjb6OP7oAlAtaAhImlIc//51qNO7\n/WAud6qMtnhFoZayR/BzLKqnCioN5GYr9BAKskpPHe9cDKVS3fg+Qvc1sNJID+jf\nk52PqyW24Qsr0A9+5zQyE4tH9dfv120gj9avmg==\n=0nKc\n-----END PGP PUBLIC KEY BLOCK-----\n" > /tmp/keys/2.key && apt-key add /tmp/keys/2.key 17:45:57 ---> Using cache 17:45:57 ---> a823f85a5b9b 17:45:57 Step 15 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 17:45:57 ---> Using cache 17:45:57 ---> da09dd314549 17:45:57 Step 16 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 17:45:58 ---> Using cache 17:45:58 ---> b520ee1485a6 17:45:58 Step 17 : RUN echo deb http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ / | tee -a /etc/apt/sources.list.d/buildfarm.list 17:45:58 ---> Using cache 17:45:58 ---> 0823f9c10f31 17:45:58 Step 18 : RUN mkdir /tmp/wrapper_scripts 17:45:59 ---> Using cache 17:45:59 ---> 2a6740b6739c 17:45:59 Step 19 : 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 17:45:59 ---> Using cache 17:45:59 ---> fc206bf48753 17:45:59 Step 20 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py 17:46:00 ---> Using cache 17:46:00 ---> b939969312e7 17:46:00 Step 21 : RUN echo "2019-11-27 (+0000)" 17:46:00 ---> Using cache 17:46:00 ---> e58f3b8848dc 17:46:00 Step 22 : 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 17:46:01 ---> Using cache 17:46:01 ---> 9b1c74046bf1 17:46:01 Step 23 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 17:46:01 ---> Using cache 17:46:01 ---> ca0d77fac629 17:46:01 Step 24 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y debhelper dpkg dpkg-dev git git-buildpackage python3-catkin-pkg-modules python3-rosdistro-modules python3-yaml 17:46:02 ---> Using cache 17:46:02 ---> 242ad5183d76 17:46:02 Step 25 : COPY .git-credentials /home/buildfarm/.git-credentials 17:46:02 ---> Using cache 17:46:02 ---> 7d83d90c7bbc 17:46:02 Step 26 : RUN chmod 600 /home/buildfarm/.git-credentials 17:46:03 ---> Using cache 17:46:03 ---> 144c0e6dbee1 17:46:03 Step 27 : RUN chown buildfarm /home/buildfarm/.git-credentials 17:46:03 ---> Using cache 17:46:03 ---> 11eec22c22b6 17:46:03 Step 28 : USER buildfarm 17:46:04 ---> Using cache 17:46:04 ---> 7295e2408a4a 17:46:04 Step 29 : RUN git config --global credential.helper 'store' 17:46:04 ---> Using cache 17:46:04 ---> 446dc54187d4 17:46:04 Step 30 : RUN git config --global http.sslVerify false 17:46:05 ---> Using cache 17:46:05 ---> 645c69343cdf 17:46:05 Step 31 : ENTRYPOINT sh -c 17:46:05 ---> Using cache 17:46:05 ---> c475b0daad58 17:46:05 Step 32 : 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 strands_morse ubuntu bionic http://10.210.9.154/ubuntu/building http://packages.ros.org/ros/ubuntu http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/ --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 17:46:06 ---> Using cache 17:46:06 ---> 7d80c62d1c4c 17:46:06 Successfully built 7d80c62d1c4c 17:46:06 + echo # END SECTION 17:46:06 # END SECTION17:46:49 [Msrc_uB__strands_morse__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson1429549192452083731.sh 17:46:49 + [ false = false ] 17:46:49 + echo # BEGIN SECTION: Clean up to save disk space on agents10. Run Dockerfile - generate sourcedebHide Details
17:46:06 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 17:46:06 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/sourcedeb 17:46:06 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/sourcedeb/source 17:46:06 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Msrc_uB__strands_morse__ubuntu_bionic__source/sourcedeb:/tmp/sourcedeb sourcedeb.melodic_ubuntu_bionic_strands_morse10.1. get sourcesHide Details
17:46:08 # BEGIN SUBSECTION: get sources 17:46:14 Invoking 'git clone --branch debian/ros-melodic-strands-morse_0.2.3-2_bionic --depth 1 --no-single-branch https://github.com/strands-project-releases/strands_morse.git /tmp/sourcedeb/source' 17:46:14 Cloning into '/tmp/sourcedeb/source'... 17:46:24 Note: checking out 'f2989185d634a614003fbdf9fc4ab10748ef57f0'. 17:46:24 17:46:24 You are in 'detached HEAD' state. You can look around, make experimental 17:46:24 changes and commit them, and you can discard any commits you make in this 17:46:24 state without impacting any branches by performing another checkout. 17:46:24 17:46:24 If you want to create a new branch to retain commits you create, you may 17:46:24 do so (now or later) by using -b with the checkout command again. Example: 17:46:24 17:46:24 git checkout -b <new-branch-name> 17:46:24 17:46:25 Checking out files: 55% (181/328) Checking out files: 56% (184/328) Checking out files: 57% (187/328) Checking out files: 58% (191/328) Checking out files: 59% (194/328) Checking out files: 60% (197/328) Checking out files: 61% (201/328) Checking out files: 62% (204/328) Checking out files: 63% (207/328) Checking out files: 64% (210/328) Checking out files: 65% (214/328) Checking out files: 66% (217/328) Checking out files: 67% (220/328) Checking out files: 68% (224/328) Checking out files: 69% (227/328) Checking out files: 70% (230/328) Checking out files: 71% (233/328) Checking out files: 72% (237/328) Checking out files: 73% (240/328) Checking out files: 74% (243/328) Checking out files: 75% (246/328) Checking out files: 76% (250/328) Checking out files: 77% (253/328) Checking out files: 78% (256/328) Checking out files: 79% (260/328) Checking out files: 80% (263/328) Checking out files: 81% (266/328) Checking out files: 82% (269/328) Checking out files: 83% (273/328) Checking out files: 84% (276/328) Checking out files: 85% (279/328) Checking out files: 86% (283/328) Checking out files: 87% (286/328) Checking out files: 88% (289/328) Checking out files: 89% (292/328) Checking out files: 90% (296/328) Checking out files: 91% (299/328) Checking out files: 92% (302/328) Checking out files: 93% (306/328) Checking out files: 94% (309/328) Checking out files: 95% (312/328) Checking out files: 96% (315/328) Checking out files: 97% (319/328) Checking out files: 98% (322/328) Checking out files: 99% (325/328) Checking out files: 100% (328/328) Checking out files: 100% (328/328), done. 17:46:27 Downloaded original tarball 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-melodic-strands-morse/ros-melodic-strands-morse_0.2.3.orig.tar.gz' to '/tmp/sourcedeb/source/../ros-melodic-strands-morse_0.2.3.orig.tar.gz' 17:46:27 Package 'strands_morse' version: 0.2.3-2bionic 17:46:27 Package maintainer emails: cburbridge@gmail.com l.kunze@cs.bham.ac.uk marc@hanheide.net 17:46:27 # END SUBSECTION17:46:49 + echo # END SECTION 17:46:49 # END SECTION10.2. build sourcedebHide Details
17:46:27 # BEGIN SUBSECTION: build sourcedeb 17:46:27 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' 17:46:28 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 17:46:28 gbp:info: Performing the build 17:46:29 dpkg-buildpackage -rfakeroot -us -uc -ui -i -I -S -d 17:46:30 dpkg-buildpackage: info: source package ros-melodic-strands-morse 17:46:30 dpkg-buildpackage: info: source version 0.2.3-2bionic 17:46:30 dpkg-buildpackage: info: source distribution bionic 17:46:30 dpkg-buildpackage: info: source changed by Marc Hanheide <marc@hanheide.net> 17:46:30 dpkg-source -i -I --before-build source 17:46:30 dpkg-source: info: using options from source/debian/source/options: --auto-commit 17:46:30 fakeroot debian/rules clean 17:46:30 dh clean -v --buildsystem=cmake 17:46:31 dh_testdir -O-v -O--buildsystem=cmake 17:46:31 dh_auto_clean -O-v -O--buildsystem=cmake 17:46:31 dh_clean -O-v -O--buildsystem=cmake 17:46:31 rm -f debian/debhelper-build-stamp 17:46:31 rm -rf debian/.debhelper/ 17:46:31 rm -f -- debian/ros-melodic-strands-morse.substvars debian/files 17:46:31 rm -fr -- debian/ros-melodic-strands-morse/ debian/tmp/ 17:46:31 find . \( \( \ 17:46:31 \( -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 \ 17:46:31 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 17:46:31 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 17:46:31 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 17:46:31 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 17:46:31 \) -exec rm -f {} + \) -o \ 17:46:31 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 17:46:31 dpkg-source -i -I -b source 17:46:31 dpkg-source: info: using options from source/debian/source/options: --auto-commit 17:46:31 dpkg-source: info: using source format '3.0 (quilt)' 17:46:32 dpkg-source: info: building ros-melodic-strands-morse using existing ./ros-melodic-strands-morse_0.2.3.orig.tar.gz 17:46:37 dpkg-source: info: building ros-melodic-strands-morse in ros-melodic-strands-morse_0.2.3-2bionic.debian.tar.xz 17:46:37 dpkg-source: info: building ros-melodic-strands-morse in ros-melodic-strands-morse_0.2.3-2bionic.dsc 17:46:37 dpkg-genbuildinfo --build=source 17:46:38 dpkg-genbuildinfo: warning: debian/changelog(l16): found trailer where expected start of change data 17:46:38 LINE: -- Marc Hanheide <marc@hanheide.net> Sat, 02 Sep 2017 23:00:00 -0000 17:46:38 dpkg-genchanges --build=source >../ros-melodic-strands-morse_0.2.3-2bionic_source.changes 17:46:38 dpkg-genchanges: warning: debian/changelog(l16): found trailer where expected start of change data 17:46:38 LINE: -- Marc Hanheide <marc@hanheide.net> Sat, 02 Sep 2017 23:00:00 -0000 17:46:38 dpkg-genchanges: info: including full source code in upload 17:46:38 dpkg-source -i -I --after-build source 17:46:39 dpkg-source: info: using options from source/debian/source/options: --auto-commit 17:46:39 dpkg-buildpackage: info: full upload (original source is included) 17:46:39 Now running lintian --suppress-tags newer-standards-version ros-melodic-strands-morse_0.2.3-2bionic_source.changes ... 17:46:49 W: ros-melodic-strands-morse source: no-debian-copyright 17:46:49 W: ros-melodic-strands-morse source: ancient-standards-version 3.9.2 (released 2011-04-07) (current is 4.1.4) 17:46:49 Finished running lintian. 17:46:49 # END SUBSECTION17:46:49 SSH: Connecting from host [lcas-buildfarm-slave-1] 17:46:49 SSH: Connecting with configuration [repo] ... 17:46:52 SSH: Disconnecting configuration [repo] ... 17:46:52 SSH: Transferred 5 file(s) 17:46:52 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 17:46:52 Waiting for the completion of Mrel_import-package 17:47:06 Mrel_import-package #222 completed. Result was SUCCESS11. Clean up to save disk space on agentsHide Details
17:46:49 # BEGIN SECTION: Clean up to save disk space on agents 17:46:49 + rm -fr sourcedeb/source 17:46:49 + echo # END SECTION 17:46:49 # END SECTION17:47:06 $ ssh-agent -k 17:47:06 unset SSH_AUTH_SOCK; 17:47:06 unset SSH_AGENT_PID; 17:47:06 echo Agent pid 23658 killed; 17:47:06 [ssh-agent] Stopped. 17:47:06 [description-setter] Description set: 0.2.3-2bionic 17:47:06 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered 17:47:06 Triggering a new build of Mbin_uB64__strands_morse__ubuntu_bionic_amd64__binary 17:47:06 Finished: SUCCESS12. Check if triggered build failedHide Details
17:47:06 # BEGIN SECTION: Check if triggered build failed 17:47:06 Pattern not found in build log, continuing... 17:47:06 # END SECTION