Skip to content

Instantly share code, notes, and snippets.

View harlowja's full-sized avatar

Joshua Harlow harlowja

  • Waymo
  • Campbell
  • 16:26 (UTC -07:00)
View GitHub Profile
# Settings for running the carlos component againt a carla
# server & ros master running on localhost...
carla:
host: localhost
port: 2000
quality: epic
timeout: 5
ros:
Removing ros-kinetic-pcl-ros (1.4.4-0xenial-20180516-233043-0800) ...
Removing ros-kinetic-pcl-conversions (0.2.1-0xenial-20171116-210135-0800) ...
Removing libpcl-dev (1.7.2-14build1) ...
Removing ros-kinetic-cv-bridge (1.12.8-0xenial-20180516-152244-0800) ...
Removing ros-kinetic-opencv3 (3.3.1-5xenial-20180315-113535-0800) ...
running build_ext
building 'carla.libcarla' extension
creating build/temp.linux-x86_64-2.7
creating build/temp.linux-x86_64-2.7/source
creating build/temp.linux-x86_64-2.7/source/libcarla
creating build/temp.linux-x86_64-2.7/dependencies
creating build/temp.linux-x86_64-2.7/dependencies/include
creating build/temp.linux-x86_64-2.7/dependencies/include/carla
creating build/temp.linux-x86_64-2.7/dependencies/include/carla/client
creating build/temp.linux-x86_64-2.7/dependencies/include/carla/client/detail
- name: "Create temporary public keys directory"
become_user: jenkins
become: yes
tempfile:
state: directory
suffix: keys
register: output
- name: "Capture all slaves host keys into known_hosts"
become: yes
[2018.10.17-22.46.29:183][864]LogShaderCompilers: Display: Shaders left to compile 294
[2018.10.17-22.46.30:268][995]LogShaderCompilers: Display: Shaders left to compile 284
[2018.10.17-22.46.30:385][ 9]LogShaderCompilers: Display: Shaders left to compile 274
[2018.10.17-22.46.30:963][ 77]LogShaderCompilers: Display: Shaders left to compile 264
[2018.10.17-22.46.30:975][ 78]LogShaderCompilers: Display: Shaders left to compile 254
[2018.10.17-22.46.31:111][ 92]LogShaderCompilers: Display: Shaders left to compile 244
[2018.10.17-22.46.31:446][132]LogShaderCompilers: Display: Shaders left to compile 234
[2018.10.17-22.46.31:568][146]LogShaderCompilers: Display: Shaders left to compile 224
[2018.10.17-22.46.31:903][187]LogShaderCompilers: Display: Shaders left to compile 214
[2018.10.17-22.46.32:828][298]LogShaderCompilers: Display: Shaders left to compile 204
[1397/1429] Link (ld) libUE4Editor-AndroidMediaFactory.so
[1398/1429] Link (ld) libUE4Editor-LocationServicesIOSEditor.so
[1399/1429] Link (ld) libUE4Editor-AvfMediaFactory.so
[1400/1429] Link (ld) libUE4Editor-WmfMediaFactory.so
[1401/1429] Link (ld) libUE4Editor-AndroidDeviceProfileSelector.so
[1402/1429] Link (ld) libUE4Editor-FileLogging.so
[1403/1429] Link (ld) libUE4Editor-ArchVisCharacter.so
[1404/1429] Link (ld) libUE4Editor-AnalyticsMulticast.so
[1405/1429] Link (ld) libUE4Editor-RuntimeAssetCache.so
[1406/1429] Link (ld) libUE4Editor-NullSourceCodeAccess.so
FROM ubuntu:16.04
ARG DEBIAN_FRONTEND=noninteractive
# Extracted from UE4/Engine/Build/BatchFiles/Linux
RUN apt-get update && apt-get install -y mesa-utils \
cmake \
git \
gdb \
dos2unix \
@harlowja
harlowja / get_cuda_sm.sh
Created October 9, 2018 01:34 — forked from eyalroz/get_cuda_sm.sh
Shell script for determining the SM value for your (single) GPU
#!/bin/bash
#
# Prints the compute capability of the first CUDA device installed
# on the system, or alternatively the device whose index is the
# first command-line argument
device_index=${1:-0}
timestamp=$(date +%s.%N)
gcc_binary=${CMAKE_CXX_COMPILER:-$(which c++)}
cuda_root=${CUDA_DIR:-/usr/local/cuda}
This file has been truncated, but you can view the full file.
Setup.sh: Retrieving libc++.
Setup.sh: Compiling libc++.
-- The C compiler identification is Clang 5.0.0
-- The CXX compiler identification is Clang 5.0.0
-- The ASM compiler identification is Clang
-- Found assembler: /usr/bin/clang-5.0
-- Check for working C compiler: /usr/bin/clang-5.0
-- Check for working C compiler: /usr/bin/clang-5.0 -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
# NOTE: this is a template, not the actual docker file...
#
# It will be turned into a dockerfile and processed by
# jenkins and the corresponding jenkinsfile contained in
# this working directory.
FROM centos:7
MAINTAINER ${maintainers}