-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.travis.yml
More file actions
50 lines (46 loc) · 1.33 KB
/
Copy path.travis.yml
File metadata and controls
50 lines (46 loc) · 1.33 KB
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
46
47
48
49
50
language: generic
before_install:
- sudo apt-get install -y lib32z1-dev build-essential automake libtool gcc-multilib g++-multilib
- wget http://launchpadlibrarian.net/121445924/libc6_2.16-0ubuntu3_amd64.deb
- sudo dpkg -i libc6_2.16-0ubuntu3_amd64.deb
before_script:
- chmod +x ./utils/premake5
- ./utils/premake5 gmake
- cd build
matrix:
include:
- env: CXX=g++-5 CC=gcc-5 config=release_x32
addons:
apt:
packages:
- g++-5
- g++-5-multilib
- gcc-5-multilib
sources: &sources
- ubuntu-toolchain-r-test
- env: CXX=g++-5 CC=gcc-5 config=release_x64
addons:
apt:
packages:
- g++-5
- g++-5-multilib
- gcc-5-multilib
sources: &sources
- ubuntu-toolchain-r-test
- env: CXX=clang++-3.8 CC=clang-3.8 config=release_x32
addons:
apt:
packages:
- clang-3.8
sources: &sources
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
- env: CXX=clang++-3.8 CC=clang-3.8 config=release_x64
addons:
apt:
packages:
- clang-3.8
sources: &sources
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
script: make all -j 4 --environment-overrides