Console Output
19:05:34 Started by user Admin 19:05:34 Building remotely on build client 2 (buildagent slave buildslave indigo_devel_default) in workspace /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source 19:05:34 [ssh-agent] Looking for ssh-agent implementation... 19:05:34 [ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine) 19:05:34 $ ssh-agent 19:05:34 SSH_AUTH_SOCK=/tmp/ssh-55Uebq8FtoJm/agent.5378 19:05:34 SSH_AGENT_PID=5380 19:05:34 [ssh-agent] Started. 19:05:34 $ ssh-add /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source@tmp/private_key_3017904858370275060.key 19:05:34 Identity added: /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source@tmp/private_key_3017904858370275060.key (/home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source@tmp/private_key_3017904858370275060.key) 19:05:34 [ssh-agent] Using credentials jenkins-slave19:05:34 [Msrc_uB__catkin_test_pkg__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson7817036991250680289.sh 19:05:34 + echo # BEGIN SECTION: docker version1. Check free disk spaceHide Details
19:05:34 # BEGIN SECTION: Check free disk space 19:05:34 Usable disk space = 56409313280 bytes 19:05:34 Free space threshold = 5368709120 bytes 19:05:34 # END SECTION19:05:34 + echo # BEGIN SECTION: docker info2. docker versionHide Details
19:05:34 # BEGIN SECTION: docker version 19:05:34 + docker version 19:05:34 Client: 19:05:34 Version: 1.9.1 19:05:34 API version: 1.21 19:05:34 Go version: go1.4.2 19:05:34 Git commit: a34a1d5 19:05:34 Built: Fri Nov 20 13:12:04 UTC 2015 19:05:34 OS/Arch: linux/amd64 19:05:34 19:05:34 Server: 19:05:34 Version: 1.9.1 19:05:34 API version: 1.21 19:05:34 Go version: go1.4.2 19:05:34 Git commit: a34a1d5 19:05:34 Built: Fri Nov 20 13:12:04 UTC 2015 19:05:34 OS/Arch: linux/amd64 19:05:34 + echo # END SECTION 19:05:34 # END SECTION19:05:35 [Msrc_uB__catkin_test_pkg__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson6144648001762556008.sh 19:05:35 + echo # BEGIN SECTION: Check docker status3. docker infoHide Details
19:05:34 # BEGIN SECTION: docker info 19:05:34 + docker info 19:05:35 Containers: 40 19:05:35 Images: 1610 19:05:35 Server Version: 1.9.1 19:05:35 Storage Driver: aufs 19:05:35 Root Dir: /var/lib/docker/aufs 19:05:35 Backing Filesystem: extfs 19:05:35 Dirs: 2439 19:05:35 Dirperm1 Supported: false 19:05:35 Execution Driver: native-0.2 19:05:35 Logging Driver: json-file 19:05:35 Kernel Version: 3.13.0-29-generic 19:05:35 Operating System: Ubuntu 14.04 LTS 19:05:35 CPUs: 2 19:05:35 Total Memory: 3.861 GiB 19:05:35 Name: lcas-buildfarm-slave-1 19:05:35 ID: LZSS:PF7G:CREH:TEQW:FH57:3M6D:KCSS:ODQY:SPHA:ND7A:FHYG:PNDE 19:05:35 WARNING: No swap limit support 19:05:35 + echo # END SECTION 19:05:35 # END SECTION19:05:36 [Msrc_uB__catkin_test_pkg__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson3598481693831550733.sh 19:05:36 + echo # BEGIN SECTION: Embed wrapper scripts4. Check docker statusHide Details
19:05:35 # BEGIN SECTION: Check docker status 19:05:35 + echo Testing trivial docker invocation... 19:05:35 Testing trivial docker invocation... 19:05:35 + docker run --rm ubuntu:bionic true 19:05:36 + echo 'docker run' returned 0 19:05:36 'docker run' returned 0 19:05:36 docker seems operational, continuing 19:05:36 [Msrc_uB__catkin_test_pkg__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson715037079747548334.sh 19:05:36 + echo # END SECTION 19:05:36 # END SECTION19:05:36 [Msrc_uB__catkin_test_pkg__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson7598974602193763791.sh 19:05:36 + echo # BEGIN SECTION: Clone ros_buildfarm5. Embed wrapper scriptsHide Details
19:05:36 # BEGIN SECTION: Embed wrapper scripts 19:05:36 + rm -fr wrapper_scripts 19:05:36 + mkdir wrapper_scripts 19:05:36 + 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()) 19:05:36 + echo # END SECTION 19:05:36 # END SECTION19:05:38 [Msrc_uB__catkin_test_pkg__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson3720637090558337263.sh 19:05:38 + echo # BEGIN SECTION: Write PGP repository keys6. Clone ros_buildfarmHide Details
19:05:36 # BEGIN SECTION: Clone ros_buildfarm 19:05:36 + rm -fr ros_buildfarm 19:05:36 + python3 -u wrapper_scripts/git.py clone --depth 1 -b lcas_new https://github.com/lcas/ros_buildfarm.git ros_buildfarm 19:05:36 Invoking 'git clone --depth 1 -b lcas_new https://github.com/lcas/ros_buildfarm.git ros_buildfarm' 19:05:36 Cloning into 'ros_buildfarm'... 19:05:38 + git -C ros_buildfarm --no-pager log -n 1 19:05:38 commit a9f48d4703c1c5663464f4c3a9d24755ca822428 19:05:38 Author: Marc Hanheide <marc@hanheide.net> 19:05:38 Date: Sun Nov 10 18:41:29 2019 +0000 19:05:38 19:05:38 made flexible for distros and only transfer binaries 19:05:38 + rm -fr ros_buildfarm/.git 19:05:38 + rm -fr ros_buildfarm/doc 19:05:38 + echo # END SECTION 19:05:38 # END SECTION19:05:38 [Msrc_uB__catkin_test_pkg__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson893292908684072932.sh 19:05:38 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/docker_sourcedeb 19:05:38 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/docker_sourcedeb 19:05:38 + sleep 1 19:05:38 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/ros_buildfarm/scripts/subprocess_reaper.py 5479 --cid-file /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/docker_sourcedeb/docker.cid 19:05:39 + echo # BEGIN SECTION: Generate Dockerfile - sourcedeb task7. Write PGP repository keysHide Details
19:05:38 # BEGIN SECTION: Write PGP repository keys 19:05:38 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/keys 19:05:38 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/keys/0.key /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/keys/1.key 19:05:38 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 19:05:38 Version: GnuPG v1.4.11 (GNU/Linux) 19:05:38 19:05:38 mQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn 19:05:38 MsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf 19:05:38 xcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw 19:05:38 kPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv 19:05:38 /o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh 19:05:38 EBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg 19:05:38 KFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD 19:05:38 BgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX 19:05:38 yQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI 19:05:38 7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy 19:05:38 JjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T 19:05:38 Yh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++ 19:05:38 Cut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ 19:05:38 cvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM 19:05:38 hU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3 19:05:38 IWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm 19:05:38 Z4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK 19:05:38 7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb 19:05:38 oRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC 19:05:38 AAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U 19:05:38 NTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0 19:05:38 ikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU 19:05:38 M7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N 19:05:38 l9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ 19:05:38 Chb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ== 19:05:38 =nFcN 19:05:38 -----END PGP PUBLIC KEY BLOCK----- 19:05:38 19:05:38 + echo -----BEGIN PGP PUBLIC KEY BLOCK----- 19:05:38 Version: SKS 1.1.6 19:05:38 Comment: Hostname: keyserver.ubuntu.com 19:05:38 19:05:38 mQINBFzvJpYBEADY8l1YvO7iYW5gUESyzsTGnMvVUmlV3XarBaJz9bGRmgPXh7jcVFrQhE0L 19:05:38 /HV7LOfoLI9H2GWYyHBqN5ERBlcA8XxG3ZvX7t9nAZPQT2Xxe3GT3trou5oCR+SyHN9xPnUw 19:05:38 DuqUSvJ2eqMYb9B/Hph3OmtjG30jSNq9kOF5bBTk1hOTGPH4K/AY0jzT6OpHfXU6ytlFsI47 19:05:38 ZKsnTUhipGsKucQ1CXlyirndZ3V3k70YaooZ55rGaIoAWlx2H0J7sAHmqS29N9jV9mo135d+ 19:05:38 d+TdLBXI0PXtiHzE9IPaX+ctdSUrPnp+TwR99lxglpIG6hLuvOMAaxiqFBB/Jf3XJ8OBakfS 19:05:38 6nHrWH2WqQxRbiITl0irkQozpwNEF2Bv0+Jvs1UFEdVGz5a8xexQHst/RmKrtHLct3iOCvBN 19:05:38 qoAQRbvWvBhPjO/pV5cYeUljZ5wpHyFkaEViClaVWqa6PIsyLqmyjsruPCWlURLsQoQxABcL 19:05:38 8bwxX7UThM6CtH6tGlYZ85RIzRifIm2oudzV5l+8oRgFr9yVcwyOFT6JCioqkwldW52P1pk/ 19:05:38 /SnuexC6LYqqDuHUs5NnokzzpfS6QaWfTY5P5tz4KHJfsjDIktly3mKVfY0fSPVVokdGpcUz 19:05:38 vz2hq1fqjxB6MlB/1vtk0bImfcsoxBmF7H+4E9ZN1sX/tSb0KQARAQABtCZPcGVuIFJvYm90 19:05:38 aWNzIDxpbmZvQG9zcmZvdW5kYXRpb24ub3JnPokCVAQTAQoAPhYhBMHPbjHmut6IaLFytPQu 19:05:38 1vurF8ZUBQJc7yaWAhsDBQkDwmcABQsJCAcCBhUKCQgLAgQWAgMBAh4BAheAAAoJEPQu1vur 19:05:38 F8ZUkhIP/RbZY1ErvCEUy8iLJm9aSpLQnDZl5xILOxyZlzpg+Ml5bb0EkQDr92foCgcvLeAN 19:05:38 KARNCaGLyNIWkuyDovPV0xZJrEy0kgBrDNb3++NmdI/+GA92pkedMXXioQvqdsxUagXAIB/s 19:05:38 NGByJEhs37F05AnFvZbjUhceq3xTlvAMcrBWrgB4NwBivZY6IgLvl/CRQpVYwANShIQdbvHv 19:05:38 ZSxRonWhNXr6v/Wcf8rsp7g2VqJ2N2AcWT84aa9BLQ3Oe/SgrNx4QEhA1y7rc3oaqPVu5ZXO 19:05:38 K+4O14JrpbEZ3Xs9YEjrcOuEDEpYktA8qqUDTdFyZrxb9S6BquUKrA6jZgT913kjJ4e7YAZo 19:05:38 bC4rH0w4u0PrqDgYOkXA9Mo7L601/7ZaDJob80UcK+Z12ZSw73IgBix6DiJVfXuWkk5PM2zs 19:05:38 Fn6UOQXUNlZlDAOj5NC01V0fJ8P0v6GO9YOSSQx0j5UtkUbRfp/4W7uCPFvwAatWEHJhlM3s 19:05:38 QNiMNStJFegr56xQu1a/cbJH7GdbseMhG/f0BaKQqXCI3ffB5y5AOLc9Hw7PYiTFQsuY1ePR 19:05:38 hE+J9mejgWRZxkjAH/FlAubqXkDgterCh+sLkzGf+my2IbsMCuc+3aeNMJ5Ej/vlXefCH/Mp 19:05:38 PWAHCqpQhe2DET/jRSaM53USAHNx8kw4MPUkxExgI7Sd 19:05:38 =4Ofr 19:05:38 -----END PGP PUBLIC KEY BLOCK----- 19:05:38 19:05:38 + echo # END SECTION 19:05:38 # END SECTION19:05:39 + echo # BEGIN SECTION: Build Dockerfile - generate sourcedeb8. Generate Dockerfile - sourcedeb taskHide Details
19:05:39 # BEGIN SECTION: Generate Dockerfile - sourcedeb task 19:05:39 + export TZ=GMT+00 19:05:39 + export PYTHONPATH=/home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/ros_buildfarm: 19:05:39 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/ros_buildfarm/scripts/release/run_sourcedeb_job.py --rosdistro-index-url https://raw.githubusercontent.com/LCAS/rosdistro/master/index.yaml melodic catkin_test_pkg 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__catkin_test_pkg__ubuntu_bionic__source/keys/0.key /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/keys/1.key --source-dir /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/sourcedeb/source --dockerfile-dir /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/docker_sourcedeb 19:05:39 Using the following distribution repositories: 19:05:39 http://10.210.9.154/ubuntu/building (/home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/keys/0.key) 19:05:39 http://packages.ros.org/ros/ubuntu (/home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/keys/1.key) 19:05:39 Generating Dockerfile '/home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/docker_sourcedeb/Dockerfile': 19:05:39 # generated from release/sourcedeb_task.Dockerfile.em 19:05:39 19:05:39 FROM ubuntu:bionic 19:05:39 19:05:39 VOLUME ["/var/cache/apt/archives"] 19:05:39 19:05:39 ENV DEBIAN_FRONTEND noninteractive 19:05:39 19:05:39 19:05:39 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 19:05:39 RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 19:05:39 RUN locale-gen en_US.UTF-8 19:05:39 ENV LANG en_US.UTF-8 19:05:39 ENV TZ GMT+00 19:05:39 19:05:39 RUN useradd -u 1002 -m buildfarm 19:05:39 19:05:39 RUN mkdir /tmp/keys 19:05:39 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y gnupg && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 19:05: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 19:05: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 19:05:39 RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:05:39 RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:05:39 19:05:39 RUN mkdir /tmp/wrapper_scripts 19:05: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 19:05: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 19:05:39 19:05:39 # automatic invalidation once every day 19:05:39 RUN echo "2019-11-10 (+0000)" 19:05:39 19:05:39 RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 19:05:39 19:05: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 19:05:39 19:05:39 COPY .git-credentials /home/buildfarm/.git-credentials 19:05:39 RUN chmod 600 /home/buildfarm/.git-credentials 19:05:39 RUN chown buildfarm /home/buildfarm/.git-credentials 19:05:39 19:05:39 USER buildfarm 19:05:39 RUN git config --global credential.helper 'store' 19:05:39 RUN git config --global http.sslVerify false 19:05:39 19:05:39 ENTRYPOINT ["sh", "-c"] 19:05: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 catkin_test_pkg 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"] 19:05:39 + echo # END SECTION 19:05:39 # END SECTION19:05:53 + echo # BEGIN SECTION: Run Dockerfile - generate sourcedeb9. Build Dockerfile - generate sourcedebHide Details
19:05:39 # BEGIN SECTION: Build Dockerfile - generate sourcedeb 19:05:39 + cd /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/docker_sourcedeb 19:05:39 + cp -L **** /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/docker_sourcedeb/.git-credentials 19:05:39 + python3 -u /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/ros_buildfarm/scripts/misc/docker_pull_baseimage.py 19:05:39 Get base image name from Dockerfile 'Dockerfile': ubuntu:bionic 19:05:39 Check docker base image for updates: docker pull ubuntu:bionic 19:05:41 bionic: Pulling from library/ubuntu 19:05:41 Digest: sha256:1d1c09d1d5e42265dd6e7d35dcc73373f0e1b76da661463f24487ac3dbeb673f 19:05:41 Status: Image is up to date for ubuntu:bionic 19:05:41 + docker build --force-rm -t sourcedeb.melodic_ubuntu_bionic_catkin_test_pkg . 19:05:41 Sending build context to Docker daemon 18.43 kB Sending build context to Docker daemon 18.43 kB 19:05:41 Step 1 : FROM ubuntu:bionic 19:05:41 ---> 6120d8e09b3f 19:05:41 Step 2 : VOLUME /var/cache/apt/archives 19:05:41 ---> Using cache 19:05:41 ---> 41662618c3f3 19:05:41 Step 3 : ENV DEBIAN_FRONTEND noninteractive 19:05:42 ---> Using cache 19:05:42 ---> 0a994878ebbe 19:05:42 Step 4 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y locales && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 19:05:42 ---> Using cache 19:05:42 ---> f6b3479bf7a2 19:05:42 Step 5 : RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen 19:05:43 ---> Using cache 19:05:43 ---> b5311d656914 19:05:43 Step 6 : RUN locale-gen en_US.UTF-8 19:05:43 ---> Using cache 19:05:43 ---> 1733d2c520f5 19:05:43 Step 7 : ENV LANG en_US.UTF-8 19:05:44 ---> Using cache 19:05:44 ---> 8d36f83322ba 19:05:44 Step 8 : ENV TZ GMT+00 19:05:44 ---> Using cache 19:05:44 ---> c33c72455cdb 19:05:44 Step 9 : RUN useradd -u 1002 -m buildfarm 19:05:44 ---> Using cache 19:05:44 ---> 83b58800c890 19:05:44 Step 10 : RUN mkdir /tmp/keys 19:05:45 ---> Using cache 19:05:45 ---> e515a52ea300 19:05:45 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 < 3 ]]; then sleep 5; else false; fi; done 19:05:45 ---> Using cache 19:05:45 ---> b4ead5c53821 19:05:45 Step 12 : RUN echo "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v1.4.11 (GNU/Linux)\n\nmQENBFPzE4sBCAC9c8hzt+gqe6YqXAW9Yd10jx68M0q8IowAe182yVtIvYf5l+qn\nMsXiDUz4l7c1TcRpdzZ1WwEQoNNjQKq51ip2Ln3Uhri/GsPBk+psIJPt5AeXYrSf\nxcDs8k4FMWgJtYMlZLuNk1YPaS6Vf1+Ygbe0u+ssORWg3cWhgLWPDydXdlhinUgw\nkPd9ZYi8aaAxi94DMuOnAjItfPbuX52NHmPR2cXuh3fZklhA6cCGRYkSVqijKhEv\n/o8fTnjcTama8ml5jnaAhcZ/4UV3terLeXEQn3+WM+VbTsEr58zca5fOv8MjC+Uh\nEBgDgnHb8/n7OgSUvv9efQgYXBRQ1mD//JaZABEBAAG0LE1hcmMgSGFuaGVpZGUg\nKFJPU0J1aWxkKSA8bWFyY0BoYW5oZWlkZS5uZXQ+iQE4BBMBAgAiBQJT8xOLAhsD\nBgsJCAcDAgYVCAIJCgsEFgIDAQIeAQIXgAAKCRDc10MYrtOYVB9cCACQwB9auPEX\nyQdVwliJMLwVihKz0AU0UCG6qra2pdXx9l5kgkQCuDV5FQqMpk/MIJPn8Zj0l1MI\n7Yn/EAqBhXjtO2BcTuUC/9epzt1p3C++vK7RSsBDXfKzZN22apIUT0njOkL9Vuoy\nJjFetmLDaZVbmFU+4ZaX3CFtBL3ewlFiT7G6StKj40JI8QJOlDOziX2OUsqZaI2T\nYh681980od3f2OfV3LPVroz7xnyECDfBaPBPaDdb8XWSNVLhuyglb15eewK0hj++\nCut3swWH02Y3yVhzFBnosqqjyzPLBQeDMOoHAPpJHRgprfIRDoUkWAXO5re3GIUQ\ncvk0d1I1jh3luQENBFPzE4sBCACmSxiM1vpPI7BpgUNAhu0B8SWptULpiYOnDHfM\nhU1u95Z5Lu/hy3sfm4BEKgLju7Y1I3jToWTwJJzgWZRr+iuuwj3fbfHCISYIK7f3\nIWGL2iM2+kLIH6E9oqRgGbJmhiwbz6OokxG0W7atdqpBxOKqhaH0AH3qRicwnuPm\nZ4/mNHYQ0vBffENewujn1bCAz4C1WB66/AXBYF8dpCP42qB5yK7FRNv4JubMmqhK\n7fkD88uu7JVGRYU+temWuJHH4WDxiCmvK8nXacFaZT1NGdTL9/2EukKLguTtZumb\noRWgFqV6WFcEnh/V/Ma51D2+K9QbCWa8Bb6c/wKOd9Ii1aDZABEBAAGJAR8EGAEC\nAAkFAlPzE4sCGwwACgkQ3NdDGK7TmFT2rwf+MzLFPn4Rkko38nctysbXm6qmk34U\nNTtqirOlxg3mWeUCp7VQGU2Rg2msdo764SxCK12OhJqlXGMd2efCoQhYbMOqG6C0\nikBZPkd5BVFuTKsAUiuVoiQd8bDaZSpO2QdE0RdHE/yYfO66pceEKkGlcjkTRFFU\nM7nTm7IQj4BBZclMLPr4fX520ZOVUepxAARMHW5A6EcHXvhXmblZOJM36fOv3T5N\nl9L5tWdt/wybaRE4xuwVSs0n7MyMlWmkQxz8Z6OQscbKmuI4tcYSbvvB5tzjLBwZ\nChb0eEZA5ePvnGofu+3JH48FmCIPveD+4kI9GhtGkCL3Q2PiPiLcSnWQWQ==\n=nFcN\n-----END PGP PUBLIC KEY BLOCK----- \n" > /tmp/keys/0.key && apt-key add /tmp/keys/0.key 19:05:46 ---> Using cache 19:05:46 ---> 32fa9172a02e 19:05:46 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 19:05:46 ---> Using cache 19:05:46 ---> 7497d98a7083 19:05:46 Step 14 : RUN echo deb http://10.210.9.154/ubuntu/building bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:05:47 ---> Using cache 19:05:47 ---> 16ae9981a818 19:05:47 Step 15 : RUN echo deb http://packages.ros.org/ros/ubuntu bionic main | tee -a /etc/apt/sources.list.d/buildfarm.list 19:05:47 ---> Using cache 19:05:47 ---> cefb91788942 19:05:47 Step 16 : RUN mkdir /tmp/wrapper_scripts 19:05:47 ---> Using cache 19:05:47 ---> 75b81893179e 19:05:47 Step 17 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2014-2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Failed to fetch',\n 'Failed to stat',\n 'Hash Sum mismatch',\n 'Unable to locate package',\n 'is not what the server reported',\n ]\n\n command = argv[0]\n if command in ['update', 'source']:\n rc, _, _ = call_apt_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n elif command == 'update-install-clean':\n return call_apt_update_install_clean(\n argv[1:], known_error_strings, max_tries)\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_apt_update_install_clean(\n install_argv, known_error_strings, max_tries):\n tries = 0\n command = 'update'\n while tries < max_tries:\n if command == 'update':\n rc, _, tries = call_apt_repeatedly(\n [command], known_error_strings, max_tries - tries,\n offset=tries)\n if rc != 0:\n # abort if update was unsuccessful even after retries\n break\n # move on to the install command if update was successful\n command = 'install'\n\n if command == 'install':\n # any call is considered a try\n tries += 1\n known_error_strings_redo_update = [\n 'Size mismatch',\n 'maybe run apt update',\n 'The following packages cannot be authenticated!',\n 'Unable to locate package',\n 'has no installation candidate',\n 'corrupted package archive',\n ]\n rc, known_error_conditions = \\\\\n call_apt(\n [command] + install_argv,\n known_error_strings + known_error_strings_redo_update)\n if not known_error_conditions:\n if rc != 0:\n # abort if install was unsuccessful\n break\n # move on to the clean command if install was successful\n command = 'clean'\n continue\n\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n # check if update needs to be rerun\n if (\n set(known_error_conditions) &\n set(known_error_strings_redo_update)\n ):\n command = 'update'\n print(\"'apt install' failed and likely requires \" +\n \"'apt update' to run again\")\n # retry with update command\n continue\n\n print('')\n print('Invocation failed due to the following known error '\n 'conditions: ' + ', '.join(known_error_conditions))\n print('')\n if tries < max_tries:\n sleep_time = 5\n print(\"Reinvoke 'apt install' after sleeping %s seconds\" %\n sleep_time)\n sleep(sleep_time)\n # retry install command\n\n if command == 'clean':\n rc, _ = call_apt([command], [])\n break\n\n return rc\n\n\ndef call_apt_repeatedly(argv, known_error_strings, max_tries, offset=0):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * (i + offset)\n print(\"Reinvoke 'apt %s' (%d/%d) after sleeping %s seconds\" %\n (command, i + offset, max_tries + offset, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_apt(argv, known_error_strings)\n if not known_error_conditions:\n # break the loop and return the reported rc\n break\n # known errors are always interpreted as a non-zero rc\n if rc == 0:\n rc = 1\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i + offset\n\n\ndef call_apt(argv, known_error_strings):\n known_error_conditions = []\n\n # some of the used options are not supported in older distros\n # e.g. Ubuntu Wily, Debian Jessie\n cmd = ['apt-get'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n lines = []\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n lines.append(line)\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n if rc and not known_error_conditions:\n print('Invocation failed without any known error condition, '\n 'printing all lines to debug known error detection:')\n for index, line in enumerate(lines):\n print(' ', index + 1, \"'%s'\" % line.rstrip('\\\\n\\\\r'))\n print('None of the following known errors were detected:')\n for index, known_error_string in enumerate(known_error_strings):\n print(' ', index + 1, \"'%s'\" % known_error_string)\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/apt.py 19:05:48 ---> Using cache 19:05:48 ---> 340fa91ffc16 19:05:48 Step 18 : RUN echo "#!/usr/bin/env python3\n\n# Copyright 2016 Open Source Robotics Foundation, Inc.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n\nimport subprocess\nimport sys\nfrom time import sleep\n\n\ndef main(argv=sys.argv[1:]):\n max_tries = 10\n known_error_strings = [\n 'Connection timed out',\n ]\n\n command = argv[0]\n if command == 'clone':\n rc, _, _ = call_git_repeatedly(\n argv, known_error_strings, max_tries)\n return rc\n else:\n assert \"Command '%s' not implemented\" % command\n\n\ndef call_git_repeatedly(argv, known_error_strings, max_tries):\n command = argv[0]\n for i in range(1, max_tries + 1):\n if i > 1:\n sleep_time = 5 + 2 * i\n print(\"Reinvoke 'git %s' (%d/%d) after sleeping %s seconds\" %\n (command, i, max_tries, sleep_time))\n sleep(sleep_time)\n rc, known_error_conditions = call_git(argv, known_error_strings)\n if rc == 0 or not known_error_conditions:\n break\n print('')\n print('Invocation failed due to the following known error conditions: '\n ', '.join(known_error_conditions))\n print('')\n # retry in case of failure with known error condition\n return rc, known_error_conditions, i\n\n\ndef call_git(argv, known_error_strings):\n known_error_conditions = []\n\n cmd = ['git'] + argv\n print(\"Invoking '%s'\" % ' '.join(cmd))\n proc = subprocess.Popen(\n cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)\n while True:\n line = proc.stdout.readline()\n if not line:\n break\n line = line.decode()\n sys.stdout.write(line)\n for known_error_string in known_error_strings:\n if known_error_string in line:\n if known_error_string not in known_error_conditions:\n known_error_conditions.append(known_error_string)\n proc.wait()\n rc = proc.returncode\n return rc, known_error_conditions\n\n\nif __name__ == '__main__':\n sys.exit(main())" > /tmp/wrapper_scripts/git.py 19:05:48 ---> Using cache 19:05:48 ---> 1fde10e687a4 19:05:48 Step 19 : RUN echo "2019-11-10 (+0000)" 19:05:49 ---> Using cache 19:05:49 ---> c35a36dfb506 19:05:49 Step 20 : RUN for i in 1 2 3; do apt-get update && apt-get install -q -y python3 && apt-get clean && break || if [[ $i < 3 ]]; then sleep 5; else false; fi; done 19:05:49 ---> Using cache 19:05:49 ---> 6d44b058db49 19:05:49 Step 21 : 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 19:05:50 ---> Using cache 19:05:50 ---> 8b9120e45590 19:05:50 Step 22 : COPY .git-credentials /home/buildfarm/.git-credentials 19:05:50 ---> Using cache 19:05:50 ---> 50047285be6b 19:05:50 Step 23 : RUN chmod 600 /home/buildfarm/.git-credentials 19:05:50 ---> Using cache 19:05:50 ---> fa378d3f8fba 19:05:50 Step 24 : RUN chown buildfarm /home/buildfarm/.git-credentials 19:05:51 ---> Using cache 19:05:51 ---> ec0437726280 19:05:51 Step 25 : USER buildfarm 19:05:51 ---> Using cache 19:05:51 ---> 106ea4706512 19:05:51 Step 26 : RUN git config --global credential.helper 'store' 19:05:52 ---> Using cache 19:05:52 ---> 5abff4dcdafd 19:05:52 Step 27 : RUN git config --global http.sslVerify false 19:05:52 ---> Using cache 19:05:52 ---> 26a1c605cf0d 19:05:52 Step 28 : ENTRYPOINT sh -c 19:05:53 ---> Using cache 19:05:53 ---> 711e716acabc 19:05:53 Step 29 : 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 catkin_test_pkg 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 19:05:53 ---> Using cache 19:05:53 ---> 31789fc895ab 19:05:53 Successfully built 31789fc895ab 19:05:53 + echo # END SECTION 19:05:53 # END SECTION19:06:05 [Msrc_uB__catkin_test_pkg__ubuntu_bionic__source] $ /bin/sh -xe /tmp/hudson8250779712041717843.sh 19:06:05 + [ true = false ] 19:06:05 SSH: Connecting from host [lcas-buildfarm-slave-1] 19:06:05 SSH: Connecting with configuration [repo] ... 19:06:06 SSH: Disconnecting configuration [repo] ... 19:06:06 SSH: Transferred 5 file(s) 19:06:06 Build step 'Send files or execute commands over SSH' changed build result to SUCCESS 19:06:06 Waiting for the completion of Mrel_import-package 19:06:16 Mrel_import-package #15 completed. Result was SUCCESS10. Run Dockerfile - generate sourcedebHide Details
19:05:53 # BEGIN SECTION: Run Dockerfile - generate sourcedeb 19:05:53 + rm -fr /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/sourcedeb 19:05:53 + mkdir -p /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/sourcedeb/source 19:05:53 + docker run --rm --cidfile=/home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/docker_sourcedeb/docker.cid -e=TRAVIS= --net=host -v /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/ros_buildfarm:/tmp/ros_buildfarm:ro -v /home/jenkins-slave/workspace/Msrc_uB__catkin_test_pkg__ubuntu_bionic__source/sourcedeb:/tmp/sourcedeb sourcedeb.melodic_ubuntu_bionic_catkin_test_pkg10.1. get sourcesHide Details
19:05:54 # BEGIN SUBSECTION: get sources 19:05:58 Invoking 'git clone --branch debian/ros-melodic-catkin-test-pkg_0.0.14-1_bionic --depth 1 --no-single-branch https://github.com/LCAS/sandbox-release.git /tmp/sourcedeb/source' 19:05:58 Cloning into '/tmp/sourcedeb/source'... 19:06:00 Note: checking out 'f0f723d63f07cb8ecc72ad5e0de453dabc992eba'. 19:06:00 19:06:00 You are in 'detached HEAD' state. You can look around, make experimental 19:06:00 changes and commit them, and you can discard any commits you make in this 19:06:00 state without impacting any branches by performing another checkout. 19:06:00 19:06:00 If you want to create a new branch to retain commits you create, you may 19:06:00 do so (now or later) by using -b with the checkout command again. Example: 19:06:00 19:06:00 git checkout -b <new-branch-name> 19:06:00 19:06:00 dpkg-parsechangelog: warning: debian/changelog(l5): found trailer where expected start of change data 19:06:00 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:00 Downloaded original tarball 'http://10.210.9.154/ubuntu/building/pool/main/r/ros-melodic-catkin-test-pkg/ros-melodic-catkin-test-pkg_0.0.14.orig.tar.gz' to '/tmp/sourcedeb/source/../ros-melodic-catkin-test-pkg_0.0.14.orig.tar.gz' 19:06:00 Package 'catkin_test_pkg' version: 0.0.14-1bionic 19:06:00 Package maintainer emails: marc@hanheide.net 19:06:00 # END SUBSECTION19:06:05 + echo # END SECTION 19:06:05 # END SECTION10.2. build sourcedebHide Details
19:06:00 # BEGIN SUBSECTION: build sourcedeb 19:06: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' 19:06:00 gbp:warning: Old style config section [git-buildpackage] found please rename to [buildpackage] 19:06:00 gbp:info: Performing the build 19:06:01 debuild: warning: debian/changelog(l5): found trailer where expected start of change data 19:06:01 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:01 dpkg-buildpackage -rfakeroot -us -uc -ui -i -I -S -d 19:06:01 dpkg-buildpackage: warning: debian/changelog(l5): found trailer where expected start of change data 19:06:01 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:01 dpkg-buildpackage: info: source package ros-melodic-catkin-test-pkg 19:06:01 dpkg-buildpackage: info: source version 0.0.14-1bionic 19:06:01 dpkg-buildpackage: info: source distribution bionic 19:06:01 dpkg-buildpackage: info: source changed by marc <marc@hanheide.net> 19:06:01 dpkg-source -i -I --before-build source 19:06:01 dpkg-source: info: using options from source/debian/source/options: --auto-commit 19:06:01 dpkg-source: warning: source/debian/changelog(l5): found trailer where expected start of change data 19:06:01 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:01 fakeroot debian/rules clean 19:06:01 dh clean -v --buildsystem=cmake 19:06:02 dh_testdir -O-v -O--buildsystem=cmake 19:06:02 dh_auto_clean -O-v -O--buildsystem=cmake 19:06:02 dh_clean -O-v -O--buildsystem=cmake 19:06:02 rm -f debian/debhelper-build-stamp 19:06:02 rm -rf debian/.debhelper/ 19:06:02 rm -f -- debian/ros-melodic-catkin-test-pkg.substvars debian/files 19:06:02 rm -fr -- debian/ros-melodic-catkin-test-pkg/ debian/tmp/ 19:06:02 find . \( \( \ 19:06:02 \( -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 \ 19:06:02 \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \ 19:06:02 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \ 19:06:02 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \ 19:06:02 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \ 19:06:02 \) -exec rm -f {} + \) -o \ 19:06:02 \( -type d -a -name autom4te.cache -prune -exec rm -rf {} + \) \) 19:06:02 dpkg-source -i -I -b source 19:06:02 dpkg-source: info: using options from source/debian/source/options: --auto-commit 19:06:02 dpkg-source: warning: source/debian/changelog(l5): found trailer where expected start of change data 19:06:02 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:02 dpkg-source: info: using source format '3.0 (quilt)' 19:06:02 dpkg-source: info: building ros-melodic-catkin-test-pkg using existing ./ros-melodic-catkin-test-pkg_0.0.14.orig.tar.gz 19:06:02 dpkg-source: warning: source/debian/changelog(l5): found trailer where expected start of change data 19:06:02 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:02 dpkg-source: info: building ros-melodic-catkin-test-pkg in ros-melodic-catkin-test-pkg_0.0.14-1bionic.debian.tar.xz 19:06:02 dpkg-source: info: building ros-melodic-catkin-test-pkg in ros-melodic-catkin-test-pkg_0.0.14-1bionic.dsc 19:06:02 dpkg-genbuildinfo --build=source 19:06:02 dpkg-genbuildinfo: warning: debian/changelog(l5): found trailer where expected start of change data 19:06:02 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:02 dpkg-genbuildinfo: warning: debian/changelog(l5): found trailer where expected start of change data 19:06:02 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:02 dpkg-genbuildinfo: warning: debian/changelog(l11): found trailer where expected start of change data 19:06:02 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:02 dpkg-genchanges --build=source >../ros-melodic-catkin-test-pkg_0.0.14-1bionic_source.changes 19:06:03 dpkg-genchanges: warning: debian/changelog(l5): found trailer where expected start of change data 19:06:03 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:03 dpkg-genchanges: warning: debian/changelog(l5): found trailer where expected start of change data 19:06:03 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:03 dpkg-genchanges: warning: debian/changelog(l11): found trailer where expected start of change data 19:06:03 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:03 dpkg-genchanges: info: including full source code in upload 19:06:03 dpkg-source -i -I --after-build source 19:06:03 dpkg-source: info: using options from source/debian/source/options: --auto-commit 19:06:03 dpkg-source: warning: source/debian/changelog(l5): found trailer where expected start of change data 19:06:03 LINE: -- marc <marc@hanheide.net> Tue, 06 Jun 2017 23:00:00 -0000 19:06:03 dpkg-buildpackage: info: full upload (original source is included) 19:06:03 Now running lintian --suppress-tags newer-standards-version ros-melodic-catkin-test-pkg_0.0.14-1bionic_source.changes ... 19:06:04 E: ros-melodic-catkin-test-pkg source: latest-debian-changelog-entry-without-new-date 19:06:04 W: ros-melodic-catkin-test-pkg source: no-debian-copyright 19:06:04 W: ros-melodic-catkin-test-pkg source: ancient-standards-version 3.9.2 (released 2011-04-07) (current is 4.1.4) 19:06:04 Finished running lintian. 19:06:04 # END SUBSECTION19:06:17 $ ssh-agent -k 19:06:17 unset SSH_AUTH_SOCK; 19:06:17 unset SSH_AGENT_PID; 19:06:17 echo Agent pid 5380 killed; 19:06:17 [ssh-agent] Stopped. 19:06:17 [description-setter] Description set: 0.0.14-1bionic 19:06:17 Sending e-mails to: lcas-build-farm@googlegroups.com marc@hanheide.net 19:06:17 Warning: you have no plugins providing access control for builds, so falling back to legacy behavior of permitting any downstream builds to be triggered 19:06:17 Triggering a new build of Mbin_uB64__catkin_test_pkg__ubuntu_bionic_amd64__binary 19:06:17 Finished: SUCCESS11. Check if triggered build failedHide Details
19:06:17 # BEGIN SECTION: Check if triggered build failed 19:06:17 Pattern not found in build log, continuing... 19:06:17 # END SECTION