This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# The most common configuration options are documented and commented below. | |
# For a complete reference, please see the online documentation at |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# variables | |
PROJECT_BUILD_DIR=/vagrant/project/cmake-debug-build | |
DEVTOOLSET_DIR=/opt/rh/devtoolset-3 | |
OUTPUT_DIR=/$HOME/html-out | |
TARGET=$1 | |
TRACEFILE=$TARGET.info.cleaned | |
echo -e "Creating coverage for target \e[1m\"$1\"\e[0m..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:16.04 | |
MAINTAINER Brandon Soto <[email protected]> | |
ADD https://github.com/opencv/opencv_contrib/archive/3.2.0.tar.gz /tmp/opencv_contib-3.2.0.tar.gz | |
ADD https://github.com/opencv/opencv/archive/3.2.0.tar.gz /tmp/opencv-3.2.0.tar.gz | |
RUN apt-get update \ | |
&& apt-get upgrade -y \ | |
&& apt-get install -y tar build-essential \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM brandonsoto/cppapp:latest | |
MAINTAINER Brandon Soto ([email protected]) | |
ADD https://github.com/zeromq/libzmq/releases/download/v4.2.2/zeromq-4.2.2.tar.gz /tmp | |
ADD https://raw.githubusercontent.com/zeromq/cppzmq/master/zmq.hpp /usr/include | |
ADD https://raw.githubusercontent.com/zeromq/cppzmq/master/zmq_addon.hpp /usr/include | |
RUN \ | |
apt-get update && apt-get install -y gdb valgrind && \ | |
cd /tmp && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:16.04 | |
MAINTAINER Brandon Soto ([email protected]) | |
RUN apt-get update \ | |
&& apt-get install -y software-properties-common \ | |
&& apt-add-repository -y ppa:ansible/ansible \ | |
&& apt-get update \ | |
&& apt-get install -y ansible \ | |
&& rm -rvf /var/lib/apt/lists/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo: required | |
services: | |
- docker | |
language: bash | |
script: | |
- docker build -f Dockerfile-server -t brandonsoto/vsserver:latest . | |
# prepare qemu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM brandonsoto/cppapp:rpi | |
MAINTAINER Brandon Soto ([email protected]) | |
ADD https://github.com/zeromq/libzmq/releases/download/v4.2.2/zeromq-4.2.2.tar.gz /tmp | |
ADD https://raw.githubusercontent.com/zeromq/cppzmq/master/zmq.hpp /usr/include | |
ADD https://raw.githubusercontent.com/zeromq/cppzmq/master/zmq_addon.hpp /usr/include | |
RUN \ | |
cd /tmp && \ | |
tar xvf zeromq-4.2.2.tar.gz && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM brandonsoto/cppapp | |
MAINTAINER Brandon Soto ([email protected]) | |
ADD https://github.com/zeromq/libzmq/releases/download/v4.2.2/zeromq-4.2.2.tar.gz /tmp | |
ADD https://raw.githubusercontent.com/zeromq/cppzmq/master/zmq.hpp /usr/include | |
ADD https://raw.githubusercontent.com/zeromq/cppzmq/master/zmq_addon.hpp /usr/include | |
RUN \ | |
cd /tmp && \ | |
tar xvf zeromq-4.2.2.tar.gz && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:16.04 | |
MAINTAINER Brandon Soto ([email protected]) | |
RUN \ | |
apt-get -y -qq update && \ | |
apt-get -y -qq install cmake build-essential git && \ | |
rm -rf /var/lib/apt/lists/* |
NewerOlder