Console Output
11:15:33 Started by upstream project "Mrel_trigger-jobs" build number 944 11:15:33 originally caused by: 11:15:33 Started by timer 11:15:33 Building remotely on build client 1 (buildagent slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source 11:15:33 [ssh-agent] Looking for ssh-agent implementation... 11:15:33 [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) 11:15:33 $ ssh-agent 11:15:34 SSH_AUTH_SOCK=/tmp/ssh-zfMkadPQLjV8/agent.27495 11:15:34 SSH_AGENT_PID=27497 11:15:34 [ssh-agent] Started. 11:15:34 $ ssh-add /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source@tmp/private_key_5555934214358054497.key 11:15:34 Identity added: /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source@tmp/private_key_5555934214358054497.key (/home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source@tmp/private_key_5555934214358054497.key) 11:15:34 [ssh-agent] Using credentials jenkins-slave11:15:34 [Msrc_uB__sicks300__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson2268884249957657796.sh 11:15:34 + echo # BEGIN SECTION: docker version1. Check free disk spaceHide Details
11:15:34 # BEGIN SECTION: Check free disk space 11:15:34 Usable disk space = 55202459648 bytes 11:15:34 Free space threshold = 5368709120 bytes 11:15:34 # END SECTION11:15:34 + echo # BEGIN SECTION: docker info2. docker versionHide Details
11:15:34 # BEGIN SECTION: docker version 11:15:34 + docker version 11:15:34 Client: 11:15:34 Version: 1.9.1 11:15:34 API version: 1.21 11:15:34 Go version: go1.4.2 11:15:34 Git commit: a34a1d5 11:15:34 Built: Fri Nov 20 13:12:04 UTC 2015 11:15:34 OS/Arch: linux/amd64 11:15:34 11:15:34 Server: 11:15:34 Version: 1.9.1 11:15:34 API version: 1.21 11:15:34 Go version: go1.4.2 11:15:34 Git commit: a34a1d5 11:15:34 Built: Fri Nov 20 13:12:04 UTC 2015 11:15:34 OS/Arch: linux/amd64 11:15:34 + echo # END SECTION 11:15:34 # END SECTION11:15:35 [Msrc_uB__sicks300__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson2831057558492443264.sh 11:15:35 + echo # BEGIN SECTION: Check docker status3. docker infoHide Details
11:15:34 # BEGIN SECTION: docker info 11:15:34 + docker info 11:15:34 Containers: 97 11:15:34 Images: 1316 11:15:34 Server Version: 1.9.1 11:15:34 Storage Driver: aufs 11:15:34 Root Dir: /var/lib/docker/aufs 11:15:34 Backing Filesystem: extfs 11:15:34 Dirs: 2234 11:15:34 Dirperm1 Supported: false 11:15:34 Execution Driver: native-0.2 11:15:34 Logging Driver: json-file 11:15:34 Kernel Version: 3.13.0-29-generic 11:15:34 Operating System: Ubuntu 14.04 LTS 11:15:34 CPUs: 2 11:15:34 Total Memory: 3.861 GiB 11:15:34 Name: lcas-buildfarm-slave-2 11:15:34 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE 11:15:34 WARNING: No swap limit support 11:15:34 + echo # END SECTION 11:15:34 # END SECTION11:15:35 [Msrc_uB__sicks300__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson2476252400868497367.sh 11:15:35 + echo # BEGIN SECTION: Embed wrapper scripts4. Check docker statusHide Details
11:15:35 # BEGIN SECTION: Check docker status 11:15:35 + echo Testing trivial docker invocation... 11:15:35 Testing trivial docker invocation... 11:15:35 + docker run --rm ubuntu:bionic true 11:15:35 + echo 'docker run' returned 0 11:15:35 'docker run' returned 0 11:15:35 docker seems operational, continuing 11:15:35 [Msrc_uB__sicks300__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson3921493960681404673.sh 11:15:35 + echo # END SECTION 11:15:35 # END SECTION11:15:35 [Msrc_uB__sicks300__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson2957122266789603590.sh 11:15:35 + echo # BEGIN SECTION: Clone ros_buildfarm5. Embed wrapper scriptsHide Details
11:15:35 # BEGIN SECTION: Embed wrapper scripts 11:15:35 + rm -fr wrapper_scripts 11:15:35 + mkdir wrapper_scripts 11: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()) 11:15:35 + echo # END SECTION 11:15:35 # END SECTION11:15:37 [Msrc_uB__sicks300__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson4638121636219465415.sh 11:15:37 + echo # BEGIN SECTION: Write PGP repository keys6. Clone ros_buildfarmHide Details
11:15:35 # BEGIN SECTION: Clone ros_buildfarm 11:15:35 + rm -fr ros_buildfarm 11:15:35 + python3 -u wrapper_scripts/git.py clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm 11:15:35 Invoking 'git clone --depth 1 -b pull_upstream https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 11:15:35 Cloning into 'ros_buildfarm'... 11:15:37 + git -C ros_buildfarm --no-pager log -n 1 11:15:37 commit 1dd549025f8ffed420cf38aca8b3234ad940b860 11:15:37 Author: Marc Hanheide <marc@hanheide.net> 11:15:37 Date: Tue Nov 12 15:42:35 2019 +0000 11:15:37 11:15:37 added auth token to main sync job 11:15:37 + rm -fr ros_buildfarm/.git 11:15:37 + rm -fr ros_buildfarm/doc 11:15:37 + echo # END SECTION 11:15:37 # END SECTION11:15:37 [Msrc_uB__sicks300__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson4597713862372290177.sh 11:15:37 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/docker_sourcedeb 11:15:37 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/docker_sourcedeb 11:15:37 + sleep 1 11:15:37 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/ros_buildfarm/scripts/subprocess_reaper.py 27599 --cid-file /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/docker_sourcedeb/docker.cid 11:15:39 + echo # BEGIN SECTION: Generate Dockerfile - sourcedeb task7. Write PGP repository keysHide Details
11:15:37 # BEGIN SECTION: Write PGP repository keys 11:15:37 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/keys 11:15:37 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/keys/* 11:15:37 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 11:15:37 Version: GnuPG v1.4.11 (GNU/Linux) 11:15:37 11:15:37 mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn 11:15:37 MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf 11:15:37 xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw 11:15:37 kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv 11:15:37 /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh 11:15:37 EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg 11:15:37 KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD 11:15:37 BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX 11:15:37 yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 11:15:37 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy 11:15:37 JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T 11:15:37 Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ 11:15:37 Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ 11:15:37 cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM 11:15:37 hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 11:15:37 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm 11:15:37 Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 11:15:37 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb 11:15:37 oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC 11:15:37 AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U 11:15:37 NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 11:15:37 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU 11:15:37 M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N 11:15:37 l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ 11:15:37 Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== 11:15:37 =nFcN 11:15:37 -----END PGP PUBLIC KEY BLOCK----- 11:15:37 11:15:37 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 11:15:37 Version: SKS 1.1.6 11:15:37 Comment: Hostname: keyserver.ubuntu.com 11:15:37 11:15:37 mQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L 11:15:37 /HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw 11:15:37 DuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47 11:15:37 ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+ 11:15:37 d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS 11:15:37 6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN 11:15:37 qoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL 11:15:37 8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/ 11:15:37 /SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz 11:15:37 vz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90 11:15:37 aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu 11:15:37 1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur 11:15:37 F8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN 11:15:37 KARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s 11:15:37 NGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv 11:15:37 ZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO 11:15:37 K+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo 11:15:37 bC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs 11:15:37 Fn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s 11:15:37 QNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR 11:15:37 hE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp 11:15:37 PWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd 11:15:37 =4Ofr 11:15:37 -----END PGP PUBLIC KEY BLOCK----- 11:15:37 11:15:37 + echo # END SECTION 11:15:37 # END SECTION11:15:39 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb8. Generate Dockerfile - sourcedeb taskHide Details
11:15:39 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 11:15:39 + export TZ=GMT+00 11:15:39 + export PYTHONPATH=/home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/ros_buildfarm: 11:15:39 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/ros_buildfarm/scripts/release/run_sourcedeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic sicks300 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__sicks300__ubuntu_bionic__source/keys/0.key /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/keys/1.key --source-dir /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/sourcedeb/source --dockerfile-dir /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/docker_sourcedeb 11:15:39 Using the following distribution repositories: 11:15:39 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/keys/0.key) 11:15:39 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/keys/1.key) 11:15:39 Generating Dockerfile '/home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/docker_sourcedeb/Dockerfile': 11:15:39 # generated from release/sourcedeb_task.Dockerfile.em 11:15:39 11:15:39 FROM ubuntu:bionic 11:15:39 11:15:39 VOLUME ["/var/cache/apt/archives"] 11:15:39 11:15:39 ENV DEBIAN_FRONTEND noninteractive 11:15:39 11:15:39 11:15:39 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 11:15:39 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 11:15:39 RUN locale-gen en_US.UTF-8 11:15:39 ENV LANG en_US.UTF-8 11:15:39 ENV TZ GMT+00 11:15:39 11:15:39 RUN useradd -u 1002 -l -m buildfarm 11:15:39 11:15:39 RUN mkdir /tmp/keys 11:15:39 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 11:15:39 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 11:15:39 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 11:15:39 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 11:15:39 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 11:15:39 11:15:39 RUN mkdir /tmp/wrapper_scripts 11:15:39 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 11:15:39 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 11:15:39 11:15:39 # automatic invalidation once every day 11:15:39 RUN echo "2019-11-17 (+0000)" 11:15:39 11:15:39 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 11:15:39 11:15:39 RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 11:15:39 11:15:39 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 11:15:39 11:15:39 COPY .git-credentials /home/buildfarm/.git-credentials 11:15:39 RUN chmod 600 /home/buildfarm/.git-credentials 11:15:39 RUN chown buildfarm /home/buildfarm/.git-credentials 11:15:39 11:15:39 USER buildfarm 11:15:39 RUN git config --global credential.helper 'store' 11:15:39 RUN git config --global http.sslVerify false 11:15:39 11:15:39 ENTRYPOINT ["sh", "-c"] 11:15:39 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 sicks300 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"] 11:15:39 + echo # END SECTION 11:15:39 # END SECTION11:15:52 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb9. Build Dockerfile - generate sourcedebHide Details
11:15:39 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 11:15:39 + cd /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/docker_sourcedeb 11:15:39 + cp -L **** /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/docker_sourcedeb/.git-credentials 11:15:39 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 11:15:39 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 11:15:39 Check docker base image for updates: docker pull ubuntu:bionic 11:15:40 bionic: Pulling from library/ubuntu 11:15:40 Digest: sha256:1d1c09d1d5e42265dd6e7d35dcc73373f0e1b76da661463f24487ac3dbeb673f 11:15:40 Status: Image is up to date for ubuntu:bionic 11:15:40 + docker build --force-rm -t sourcedeb.melodic_ubuntu_bionic_sicks300 . 11:15:40 Sending build context to Docker daemon 18.43 kB Sending build context to Docker daemon 18.43 kB 11:15:40 Step 1 : FROM ubuntu:bionic 11:15:40 ---> 6120d8e09b3f 11:15:40 Step 2 : VOLUME /var/cache/apt/archives 11:15:40 ---> Using cache 11:15:40 ---> b29f905cce33 11:15:40 Step 3 : ENV DEBIAN_FRONTEND noninteractive 11:15:41 ---> Using cache 11:15:41 ---> cd2d1e1fc9d8 11: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 11:15:41 ---> Using cache 11:15:41 ---> 2cf434bfa57b 11:15:41 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 11:15:42 ---> Using cache 11:15:42 ---> 38a47bd55e34 11:15:42 Step 6 : RUN locale-gen en_US.UTF-8 11:15:42 ---> Using cache 11:15:42 ---> a498930da307 11:15:42 Step 7 : ENV LANG en_US.UTF-8 11:15:42 ---> Using cache 11:15:42 ---> 1118ba2e1e0c 11:15:42 Step 8 : ENV TZ GMT+00 11:15:43 ---> Using cache 11:15:43 ---> 474f1ddcf34d 11:15:43 Step 9 : RUN useradd -u 1002 -l -m buildfarm 11:15:43 ---> Using cache 11:15:43 ---> 75ab071ab49c 11:15:43 Step 10 : RUN mkdir /tmp/keys 11:15:44 ---> Using cache 11:15:44 ---> 639e36792fe5 11: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 11:15:44 ---> Using cache 11:15:44 ---> 2d1b1ddcfc6e 11:15:44 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 11:15:45 ---> Using cache 11:15:45 ---> 804c353569ef 11: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 11:15:45 ---> Using cache 11:15:45 ---> fac92929fa2b 11:15:45 Step 14 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 11:15:45 ---> Using cache 11:15:45 ---> 7202cfa3034e 11:15:45 Step 15 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 11:15:46 ---> Using cache 11:15:46 ---> e23035c489df 11:15:46 Step 16 : RUN mkdir /tmp/wrapper_scripts 11:15:46 ---> Using cache 11:15:46 ---> be106cf51bce 11:15:46 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 11:15:46 ---> Using cache 11:15:46 ---> abe287445756 11:15:46 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 11:15:47 ---> Using cache 11:15:47 ---> 1e6e80075fd2 11:15:47 Step 19 : RUN echo "2019-11-17 (+0000)" 11:15:47 ---> Using cache 11:15:47 ---> c285875073bb 11:15:47 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 11:15:48 ---> Using cache 11:15:48 ---> 6052b78b9b5c 11:15:48 Step 21 : RUN python3 -u /tmp/wrapper_scripts/apt.py update-install-clean -q -y dh-python 11:15:48 ---> Using cache 11:15:48 ---> 3dfa3c048054 11:15:48 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 11:15:48 ---> Using cache 11:15:48 ---> 1e19da7bbb0b 11:15:48 Step 23 : COPY .git-credentials /home/buildfarm/.git-credentials 11:15:49 ---> Using cache 11:15:49 ---> f2c29b354657 11:15:49 Step 24 : RUN chmod 600 /home/buildfarm/.git-credentials 11:15:49 ---> Using cache 11:15:49 ---> dba0d2c1486d 11:15:49 Step 25 : RUN chown buildfarm /home/buildfarm/.git-credentials 11:15:50 ---> Using cache 11:15:50 ---> ac0a14893033 11:15:50 Step 26 : USER buildfarm 11:15:50 ---> Using cache 11:15:50 ---> cf54f6098e77 11:15:50 Step 27 : RUN git config --global credential.helper 'store' 11:15:50 ---> Using cache 11:15:50 ---> e903baf1074d 11:15:50 Step 28 : RUN git config --global http.sslVerify false 11:15:51 ---> Using cache 11:15:51 ---> b02a7b4aed50 11:15:51 Step 29 : ENTRYPOINT sh -c 11:15:51 ---> Using cache 11:15:51 ---> c4093063c894 11:15:51 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 sicks300 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 11:15:52 ---> Running in 07d15f66be35 11:15:52 ---> 2a631423bfcf 11:15:52 Removing intermediate container 07d15f66be35 11:15:52 Successfully built 2a631423bfcf 11:15:52 + echo # END SECTION 11:15:52 # END SECTION11:16:04 [Msrc_uB__sicks300__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson6855394203561209444.sh 11:16:04 + [ false = false ] 11:16:04 + echo # BEGIN SECTION: Clean up to save disk space on agents10. Run Dockerfile - generate sourcedebHide Details
11:15:52 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 11:15:52 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/sourcedeb 11:15:52 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/sourcedeb/source 11:15:52 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Msrc_uB__sicks300__ubuntu_bionic__source/sourcedeb:/tmp/sourcedeb sourcedeb.melodic_ubuntu_bionic_sicks30010.1. get sourcesHide Details
11:15:52 # BEGIN SUBSECTION: get sources 11:15:58 Invoking 'git clone --branch debian/ros-melodic-sicks300_1.2.1-1_bionic --depth 1 --no-single-branch https://github.com/strands-project-releases/sicks300.git /tmp/sourcedeb/source' 11:15:58 Cloning into '/tmp/sourcedeb/source'... 11:15:59 Note: checking out 'f95c52228a9699b009d2f93ee3f9eb5a3309f9fb'. 11:15:59 11:15:59 You are in 'detached HEAD' state. You can look around, make experimental 11:15:59 changes and commit them, and you can discard any commits you make in this 11:15:59 state without impacting any branches by performing another checkout. 11:15:59 11:15:59 If you want to create a new branch to retain commits you create, you may 11:15:59 do so (now or later) by using -b with the checkout command again. Example: 11:15:59 11:15:59 git checkout -b <new-branch-name> 11:15:59 11:15:59 dpkg-parsechangelog: warning: debian/changelog(l5): found trailer where expected start of change data 11:15:59 LINE: -- Marc Hanheide <marc@hanheide.net> Sun, 09 Sep 2018 23:00:00 -0000 11:15:59 No tarball found at 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-melodic-sicks300/ros-melodic-sicks300_1.2.1.orig.tar.gz' 11:15:59 No tarball found at 'http://packages.ros.org/ros/ubuntu/pool/main/r/ros-melodic-sicks300/ros-melodic-sicks300_1.2.1.orig.tar.gz' 11:15:59 Package 'sicks300' version: 1.2.1-1bionic 11:15:59 Package maintainer emails: marc@hanheide.net 11:15:59 # END SUBSECTION11:16:04 + echo # END SECTION 11:16:04 # END SECTION10.2. build sourcedebHide Details
11:16:00 # BEGIN SUBSECTION: build sourcedeb 11:16:00 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' 11:16:00 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 11:16:00 gbp:info: Creating ros-melodic-sicks300_1.2.1.orig.tar.gz from 'release/melodic/sicks300/1.2.1-1' 11:16:00 gbp:info: Performing the build 11:16:00 debuild: warning: debian/changelog(l5): found trailer where expected start of change data 11:16:00 LINE: -- Marc Hanheide <marc@hanheide.net> Sun, 09 Sep 2018 23:00:00 -0000 11:16:00 dpkg-buildpackage -rfakeroot -us -uc -ui -i -I -S -d 11:16:00 dpkg-buildpackage: warning: debian/changelog(l5): found trailer where expected start of change data 11:16:00 LINE: -- Marc Hanheide <marc@hanheide.net> Sun, 09 Sep 2018 23:00:00 -0000 11:16:00 dpkg-buildpackage: info: source package ros-melodic-sicks300 11:16:00 dpkg-buildpackage: info: source version 1.2.1-1bionic 11:16:00 dpkg-buildpackage: info: source distribution bionic 11:16:00 dpkg-buildpackage: info: source changed by Marc Hanheide <marc@hanheide.net> 11:16:00 dpkg-source -i -I --before-build source 11:16:00 dpkg-source: info: using options from source/debian/source/options: --auto-commit 11:16:00 dpkg-source: warning: source/debian/changelog(l5): found trailer where expected start of change data 11:16:00 LINE: -- Marc Hanheide <marc@hanheide.net> Sun, 09 Sep 2018 23:00:00 -0000 11:16:00 fakeroot debian/rules clean 11:16:01 dh clean -v --buildsystem=cmake 11:16:01 dh_testdir -O-v -O--buildsystem=cmake 11:16:01 dh_auto_clean -O-v -O--buildsystem=cmake 11:16:01 dh_clean -O-v -O--buildsystem=cmake 11:16:01 rm -f debian/debhelper-build-stamp 11:16:01 rm -rf debian/.debhelper/ 11:16:01 rm -f -- debian/ros-melodic-sicks300.substvars debian/files 11:16:01 rm -fr -- debian/ros-melodic-sicks300/ debian/tmp/ 11:16:01 find . \( \( \ 11:16:01 \( -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 \ 11:16:01 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 11:16:01 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 11:16:01 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 11:16:01 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 11:16:01 \) -exec rm -f {} + \) -o \ 11:16:01 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 11:16:01 dpkg-source -i -I -b source 11:16:01 dpkg-source: info: using options from source/debian/source/options: --auto-commit 11:16:01 dpkg-source: warning: source/debian/changelog(l5): found trailer where expected start of change data 11:16:01 LINE: -- Marc Hanheide <marc@hanheide.net> Sun, 09 Sep 2018 23:00:00 -0000 11:16:01 dpkg-source: info: using source format '3.0 (quilt)' 11:16:01 dpkg-source: info: building ros-melodic-sicks300 using existing ./ros-melodic-sicks300_1.2.1.orig.tar.gz 11:16:01 dpkg-source: warning: source/debian/changelog(l5): found trailer where expected start of change data 11:16:01 LINE: -- Marc Hanheide <marc@hanheide.net> Sun, 09 Sep 2018 23:00:00 -0000 11:16:01 dpkg-source: info: building ros-melodic-sicks300 in ros-melodic-sicks300_1.2.1-1bionic.debian.tar.xz 11:16:01 dpkg-source: info: building ros-melodic-sicks300 in ros-melodic-sicks300_1.2.1-1bionic.dsc 11:16:01 dpkg-genbuildinfo --build=source 11:16:02 dpkg-genbuildinfo: warning: debian/changelog(l5): found trailer where expected start of change data 11:16:02 LINE: -- Marc Hanheide <marc@hanheide.net> Sun, 09 Sep 2018 23:00:00 -0000 11:16:02 dpkg-genbuildinfo: warning: debian/changelog(l5): found trailer where expected start of change data 11:16:02 LINE: -- Marc Hanheide <marc@hanheide.net> Sun, 09 Sep 2018 23:00:00 -0000 11:16:02 dpkg-genbuildinfo: warning: debian/changelog(l11): found trailer where expected start of change data 11:16:02 LINE: -- Marc Hanheide <marc@hanheide.net> Wed, 21 Mar 2018 00:00:00 -0000 11:16:02 dpkg-genchanges --build=source >../ros-melodic-sicks300_1.2.1-1bionic_source.changes 11:16:02 dpkg-genchanges: warning: debian/changelog(l5): found trailer where expected start of change data 11:16:02 LINE: -- Marc Hanheide <marc@hanheide.net> Sun, 09 Sep 2018 23:00:00 -0000 11:16:02 dpkg-genchanges: warning: debian/changelog(l5): found trailer where expected start of change data 11:16:02 LINE: -- Marc Hanheide <marc@hanheide.net> Sun, 09 Sep 2018 23:00:00 -0000 11:16:02 dpkg-genchanges: warning: debian/changelog(l11): found trailer where expected start of change data 11:16:02 LINE: -- Marc Hanheide <marc@hanheide.net> Wed, 21 Mar 2018 00:00:00 -0000 11:16:02 dpkg-genchanges: info: including full source code in upload 11:16:02 dpkg-source -i -I --after-build source 11:16:02 dpkg-source: info: using options from source/debian/source/options: --auto-commit 11:16:02 dpkg-source: warning: source/debian/changelog(l5): found trailer where expected start of change data 11:16:02 LINE: -- Marc Hanheide <marc@hanheide.net> Sun, 09 Sep 2018 23:00:00 -0000 11:16:02 dpkg-buildpackage: info: full upload (original source is included) 11:16:02 Now running lintian --suppress-tags newer-standards-version ros-melodic-sicks300_1.2.1-1bionic_source.changes ... 11:16:04 W: ros-melodic-sicks300 source: no-debian-copyright 11:16:04 W: ros-melodic-sicks300 source: ancient-standards-version 3.9.2 (released 2011-04-07) (current is 4.1.4) 11:16:04 Finished running lintian. 11:16:04 # END SUBSECTION11:16:04 SSH: Connecting from host [lcas-buildfarm-slave-2] 11:16:04 SSH: Connecting with configuration [repo] ... 11:16:05 SSH: Disconnecting configuration [repo] ... 11:16:05 SSH: Transferred 5 file(s) 11:16:05 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 11:16:05 Waiting for the completion of Mrel_import-package 11:16:14 Mrel_import-package #76 completed. Result was SUCCESS11. Clean up to save disk space on agentsHide Details
11:16:04 # BEGIN SECTION: Clean up to save disk space on agents 11:16:04 + rm -fr sourcedeb/source 11:16:04 + echo # END SECTION 11:16:04 # END SECTION11:16:14 $ ssh-agent -k 11:16:14 unset SSH_AUTH_SOCK; 11:16:14 unset SSH_AGENT_PID; 11:16:14 echo Agent pid 27497 killed; 11:16:14 [ssh-agent] Stopped. 11:16:14 [description-setter] Description set: 1.2.1-1bionic 11:16:14 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered 11:16:14 Triggering a new build of Mbin_uB64__sicks300__ubuntu_bionic_amd64__binary 11:16:14 Finished: SUCCESS12. Check if triggered build failedHide Details
11:16:14 # BEGIN SECTION: Check if triggered build failed 11:16:14 Pattern not found in build log, continuing... 11:16:14 # END SECTION