-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
36 lines (36 loc) · 979 Bytes
/
.travis.yml
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
git:
submodules: false
sudo: required
dist: trusty
language: cpp
script:
- mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release && make && cd ..
- make DESTDIR=$(pwd)/test test
python:
- "3.6"
before_script:
- sudo add-apt-repository ppa:mc3man/trusty-media -y
- sudo apt-get update
- sudo apt-get -y -q install ffmpeg
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git clone https://github.com/pscholl/grt grt_master
- cd grt_master/build
- cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr . && sudo make install && cd ../../
- git submodule update --init --remote dlib
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-6" CC="gcc-6"; fi
- pyenv shell 3.6
- pip3 install numpy scipy scikit-learn tabulate matplotlib
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- deadsnakes
- pythonxy-devel
packages:
- gcc-6
- g++-6
- clang
- python3.5
- libopenblas-dev
- liblapack-dev