-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.travis.yml
More file actions
32 lines (32 loc) · 896 Bytes
/
.travis.yml
File metadata and controls
32 lines (32 loc) · 896 Bytes
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
language: cpp
sudo: false
matrix:
include:
- os: linux
compiler: gcc-4.8.1
script:
- git clone https://github.com/libigl/libigl.git ../libigl
- cd ../libigl && git submodule update --recursive --init && cd $TRAVIS_BUILD_DIR
- mkdir build
- cd build
- cmake -DCMAKE_CXX_COMPILER=g++-4.8 -DCMAKE_C_COMPILER=gcc-4.8 -DTRAVISCI_BUILD=ON ../
- make -j2
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- xorg-dev
- libglu1-mesa-dev
- g++-4.8
- cmake
- cmake-data
# - os: osx
# compiler: clang
# script:
# - git clone --recursive https://github.com/libigl/libigl.git ../libigl
# - mkdir build
# - cd build
# - cmake ../
# - make -j2