forked from SaschaWillems/Vulkan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
37 lines (37 loc) · 759 Bytes
/
Copy path.travis.yml
File metadata and controls
37 lines (37 loc) · 759 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
33
34
35
36
37
language: gneric
sudo: required
os: linux
dist: trusty
matrix:
include:
- os: linux
env: COMPILER_NAME=gcc CXX=g++-7 CC=gcc-7
addons:
apt:
packages:
- g++-7
sources:
- ubuntu-toolchain-r-test
- os: linux
env: COMPILER_NAME=clang CXX=clang++-5.0 CC=clang-5.0
addons:
apt:
packages:
- clang-5.0
sources:
- llvm-toolchain-trusty-5.0
compiler:
- clang
- gcc
before_script:
- sudo apt-get -qq update
- sudo apt-get install -y libassimp-dev libx11-xcb-dev libxrandr-dev
script:
- cmake .
- make
notifications:
email:
recipients:
- webmaster@saschawillems.de
on_success: change
on_failure: always