forked from acooks/jittertrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
76 lines (70 loc) · 2.19 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
language: c
matrix:
include:
- os: linux
dist: trusty
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-add-repository -y ppa:acooks/libwebsockets6
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-5
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 20
- gcc --version;
- sudo apt-get install -qq libnl-3-dev
- sudo apt-get install -qq libnl-route-3-dev
- sudo apt-get install -qq libnl-genl-3-dev
- sudo apt-get install -qq libjansson-dev
- sudo apt-get install -qq libwebsockets-dev
- sudo apt-get install -qq libpcap-dev
script: make test
- os: linux
dist: xenial
compiler: gcc
addons:
apt:
update: true
packages:
- gcc
- clang
- make
- pkgconf
- libnl-3-dev
- libnl-route-3-dev
- libnl-genl-3-dev
- libjansson-dev
- libwebsockets-dev
- libpcap-dev
- os: linux
dist: xenial
compiler: clang
addons:
apt:
update: true
packages:
- gcc
- clang
- make
- pkgconf
- libnl-3-dev
- libnl-route-3-dev
- libnl-genl-3-dev
- libjansson-dev
- libwebsockets-dev
- libpcap-dev
sudo: required
script: make --trace test
install: true
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# # via the "travis encrypt" command using the project repo's public key
- secure: "UZ124N+xNO6Wccrg03c7/9o+GH0dVp7a1aWaGieaR0Jy3bZzC3BvtkXhABS6uvGQLEvaUHzBGlkGK5d5cK6+kZNlJj7c1FTd7pn+0OaSQbhZsTuYswZ9i//7+nLmo3wjDstRQAkFhRdJiNAvc1gnFVw56U2tTAr6CQxr5ujndPA="
addons:
coverity_scan:
project:
name: "acooks/jittertrap"
description: "JitterTrap is a measurement and impairment tool for developers of latency-sensitive applications and devices."
notification_email: [email protected]
build_command_prepend: "make clean"
build_command: "make"
branch_pattern: master