-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshippable.yml
More file actions
56 lines (52 loc) · 2.3 KB
/
shippable.yml
File metadata and controls
56 lines (52 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
language: c
env:
global:
- secure: cp5oUQ80fWqlbWrnjp+Mblp9wyn2SXZu2Wx7FKLHaG9txTcVj86wSqMF3+qnyDN/vgd0u3C0GA1dND7xBIJRnkhWCwNyglXAr7L6UCRK4IRi3lGC/ZxFthcJHljFFkh+8ss/+v7E7eu9fDC2ph5a7baDookIs5c9jaFJcYEkkEakaSjtbLk7QqxrizsMrRa2pOMOq7bq7lE47VaE0BO7fZYk+CAN0Byjh5OnDUK1tznHnryjiCCxa5WIcNw/LkMU8x4lb5xxSy7+mZdlNzWRKdtsf5W4wdAk+JOrZrFFuiK4J3cxsHwYel4Yxcswgr8GnJxGo5whC/2/f+SoXMREdQ==
matrix:
include:
- compiler: gcc
env: TASK="prefetch"
- compiler: gcc
env: TASK="build" CCACHE_SLOPPINESS="pch_defines,time_macros"
- compiler: clang
env: TASK="build" CCACHE_SLOPPINESS="pch_defines,time_macros"
- compiler: gcc
env: TASK="test" BUILD_TYPE=Coverage CCACHE_SLOPPINESS=pch_defines,time_macros
build:
cache: true
pre_ci_boot:
image_name: drydock/u16cppall
ci:
- sudo add-apt-repository -y ppa:jolting/backport
- sudo apt-get update
- sudo apt-get install -y build-essential
- sudo apt-get install -y pkg-config
- sudo apt-get install -y cmake
- sudo apt-get install -y libwxgtk3.0-dev
- sudo apt-get install -y libftdi-dev
- sudo apt-get install -y freeglut3-dev
- sudo apt-get install -y zlib1g-dev
- sudo apt-get install -y libusb-1.0-0-dev
- sudo apt-get install -y libdc1394-22-dev
- sudo apt-get install -y libavformat-dev
- sudo apt-get install -y libswscale-dev
- sudo apt-get install -y libassimp-dev
- sudo apt-get install -y libjpeg-dev
- sudo apt-get install -y libopencv-dev
- sudo apt-get install -y libgtest-dev
- sudo apt-get install -y libeigen3-dev
- sudo apt-get install -y libsuitesparse-dev
- sudo apt-get install -y libpcl-dev
- sudo apt-get install -y libopenni2-dev
- sudo apt-get install -y libudev-dev
- sudo apt-get install -y libproj-dev
- sudo apt-get install -y libboost-python-dev
- sudo apt-get install -y libpython-dev python-numpy
- sudo apt-get install -y lcov
- sudo apt-get install -y ruby rubygems-integration
- sudo gem install coveralls-lcov
# this one is missing in the docker image? TODO: Pull-request to https://github.com/dry-dock/u16cppall/blob/master/install.sh
- sudo update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-6 90
- bash .travis.sh
after_success:
- if [ "$BUILD_TYPE" == "Coverage" ]; then bash scripts/coveralls_submit.sh ; fi