-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy path.travis.yml
More file actions
30 lines (27 loc) · 720 Bytes
/
Copy path.travis.yml
File metadata and controls
30 lines (27 loc) · 720 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
language: cpp
compiler: clang
os:
- linux
- osx
# Linux dependencies
addons:
apt:
packages:
- libboost-python-dev
- libfreetype6-dev
- libx11-dev
- libxinerama-dev
- libxrandr-dev
- libxcursor-dev
- mesa-common-dev
- libasound2-dev
- freeglut3-dev
- libxcomposite-dev
- libcurl4-gnutls-dev
# OSX dependencies
install:
- if [ $TRAVIS_OS_NAME = osx ]; then HOMEBREW_NO_AUTO_UPDATE=1 brew install boost-python; fi
# build
script:
- if [ $TRAVIS_OS_NAME = linux ]; then make --directory=Builds/LinuxMakefile/; fi
- if [ $TRAVIS_OS_NAME = osx ]; then xcodebuild -project Builds/MacOSX/RenderMan.xcodeproj/; fi