forked from mtcp-stack/mtcp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
48 lines (42 loc) · 1.08 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
46
47
48
sudo: required
dist: trusty
language: c
notifications:
email:
on_success: change
on_failure: change
matrix:
include:
- env: COMPILER=gcc VERSION=6
- env: COMPILER=gcc VERSION=5
- env: COMPILER=gcc VERSION=4.8
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- |
if [ "$VERSION" = "6" ]; then
sudo apt-get install -qq -y gcc-6
elif [ "$VERSION" = "5" ]; then
sudo apt-get install -qq -y gcc-5
elif [ "$VERSION" = "4.8" ]; then
sudo apt-get install -qq -y gcc-4.8
fi
before_script:
- |
if [ "$VERSION" = "6" ]; then
export CC=gcc-6
elif [ "$VERSION" = "5" ]; then
export CC=gcc-5
elif [ "$VERSION" = "4.8" ]; then
export CC=gcc-4.8
fi
install:
- sudo apt-get -qq update
- sudo apt-get install -y linux-headers-$(uname -r)
- sudo apt-get install libnuma-dev
- sudo apt-get install bash
- sudo apt-get install libgmp3-dev
script:
- bash .buildtest_dpdk.sh
- bash .buildtest_psio.sh
- bash .buildtest_netmap.sh