forked from ngtkt0909/linux-kernel-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
22 lines (22 loc) · 853 Bytes
/
.travis.yml
File metadata and controls
22 lines (22 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: c
sudo: required
addons:
apt:
packages:
- build-essential
- doxygen
- graphviz
before_install:
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ trusty-updates main universe"
- sudo apt-get update -qq
- sudo apt-get install -y linux-headers-`uname -r`
script:
- make -C 00.hello && make -C 00.hello doc && make -C 00.hello clean
- make -C 01.ktimer && make -C 01.ktimer doc && make -C 01.ktimer clean
- make -C 02.hrtimer && make -C 02.hrtimer doc && make -C 02.hrtimer clean
- make -C 03.i2c && make -C 03.i2c doc && make -C 03.i2c clean
- make -C 04.spi && make -C 04.spi doc && make -C 04.spi clean
- make -C 05.iomemmap && make -C 05.iomemmap doc && make -C 05.iomemmap clean
notifications:
on_success: never
on_failure: never