forked from IRATI/stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
58 lines (55 loc) · 1.43 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
sudo: enabled
dist: xenial
language: cpp
env:
- KERNEL_VERSION=local
- KERNEL_VERSION=4.1
- KERNEL_VERSION=4.2
- KERNEL_VERSION=4.3
- KERNEL_VERSION=4.4
- KERNEL_VERSION=4.5
- KERNEL_VERSION=4.6
- KERNEL_VERSION=4.7
- KERNEL_VERSION=4.8
- KERNEL_VERSION=4.9
- KERNEL_VERSION=4.10
- KERNEL_VERSION=4.11
- KERNEL_VERSION=4.12
- KERNEL_VERSION=4.13
- KERNEL_VERSION=4.14
- KERNEL_VERSION=4.15
- KERNEL_VERSION=4.16
- KERNEL_VERSION=4.17
- KERNEL_VERSION=4.18
- KERNEL_VERSION=4.19
- KERNEL_VERSION=4.20
- KERNEL_VERSION=5.0
- KERNEL_VERSION=5.1
- KERNEL_VERSION=5.2
- KERNEL_VERSION=5.3
- KERNEL_VERSION=5.4
- KERNEL_VERSION=5.5
- KERNEL_VERSION=5.6
- KERNEL_VERSION=5.7
- KERNEL_VERSION=5.8
- KERNEL_VERSION=5.9
- KERNEL_VERSION=5.10
before_install:
# Install Dependencies
- sudo apt-get update -qq
- sudo apt-get install autoconf
- sudo apt-get install automake
- sudo apt-get install libtool
- sudo apt-get install pkg-config
- sudo apt-get install git
- sudo apt-get install g++
- sudo apt-get install libssl-dev
#- sudo apt-get install protobuf-compiler
#- sudo apt-get install libprotobuf-dev
- sudo apt-get install hostapd
- sudo apt-get install wpasupplicant
- sudo apt-get install linux-headers-$(uname -r)
- sudo apt-get install libelf-dev
script:
- "[ ${KERNEL_VERSION} != local ] || ./ci/build-all"
- "[ ${KERNEL_VERSION} == local ] || ./ci/build-kernel"