forked from RIOT-OS/Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (32 loc) · 831 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: required
language: minimal
services:
- docker
before_install:
- docker pull riot/riotbuild
env:
global:
- BUILD_IN_DOCKER=1
- WERROR=0
matrix:
include:
- name: "Build tutorials for native"
env: BOARD=native
- name: "Build tutorials for samr21-xpro"
env: BOARD=samr21-xpro
- name: "Build tutorials for phyWAVE-KW22"
env: BOARD=pba-d-01-kw2x
before_script:
- export J="$(( $(grep -c ^processor /proc/cpuinfo) * 2 ))"
script:
- make -C task-01 -j${J} all
- make -C task-02 -j${J} all
- make -C task-03 -j${J} all
- make -C task-04 -j${J} all
- make -C task-05 -j${J} all
# task-07
- make -C RIOT/examples/gnrc_minimal -j${J} all
- make -C RIOT/examples/gnrc_networking -j${J} all
- make -C task-06 -j${J} all
- make -C task-08 -j${J} all
- make -C task-09 -j${J} all