forked from wjakob/instant-meshes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
45 lines (45 loc) · 1.14 KB
/
.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
37
38
39
40
41
42
43
44
45
language: cpp
dist: trusty
sudo: false
deploy:
provider: s3
bucket: instant-meshes
region: eu-central-1
skip_cleanup: true
access_key_id: $AWS_ACCESS_KEY_ID
secret_access_key: $AWS_SECRET_ACCESS_KEY
acl: public_read
local_dir: build
matrix:
include:
- os: linux
compiler: gcc-4.8.1
script:
- git submodule update --init --recursive
- CXXFLAGS="-mno-rtm" cmake -DNANOGUI_USE_GLAD=ON -DCMAKE_CXX_COMPILER=g++-4.8
- make -j 2
- mkdir build
- zip -r build/instant-meshes-linux.zip "Instant Meshes"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- kubuntu-backports
packages:
- g++-4.8
- libglu1-mesa-dev
- libxxf86vm-dev
- libxrandr-dev
- libxinerama-dev
- libxcursor-dev
- libxi-dev
- cmake
- binutils
- os: osx
compiler: clang
script:
- git submodule update --init --recursive
- cmake .
- make -j 2
- mkdir build
- zip -r build/instant-meshes-macos.zip "Instant Meshes.app"