forked from IRATI/stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (36 loc) · 1007 Bytes
/
.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
sudo: enabled
dist: trusty
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
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)
script:
- "[ ${KERNEL_VERSION} != local ] || ./ci/build-all"
- "[ ${KERNEL_VERSION} == local ] || ./ci/build-kernel"