Skip to content

Commit 8a85575

Browse files
authored
Merge pull request #57 from miri64/travis/new/initial
travis: initial import of simple build job
2 parents aa4564e + 2b1a39f commit 8a85575

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

.travis.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
sudo: required
2+
3+
language: minimal
4+
5+
services:
6+
- docker
7+
8+
before_install:
9+
- docker pull riot/riotbuild
10+
11+
env:
12+
global:
13+
- BUILD_IN_DOCKER=1
14+
- WERROR=0
15+
16+
matrix:
17+
include:
18+
- name: "Build tutorials for native"
19+
env: BOARD=native
20+
- name: "Build tutorials for samr21-xpro"
21+
env: BOARD=samr21-xpro
22+
- name: "Build tutorials for phyWAVE-KW22"
23+
env: BOARD=pba-d-01-kw2x
24+
25+
before_script:
26+
- export J="$(( $(grep -c ^processor /proc/cpuinfo) * 2 ))"
27+
28+
script:
29+
- make -C task-01 -j${J} all
30+
- make -C task-02 -j${J} all
31+
- make -C task-03 -j${J} all
32+
- make -C task-04 -j${J} all
33+
- make -C task-05 -j${J} all
34+
# task-07
35+
- make -C RIOT/examples/gnrc_minimal -j${J} all
36+
- make -C RIOT/examples/gnrc_networking -j${J} all
37+
- make -C task-06 -j${J} all
38+
- make -C task-08 -j${J} all
39+
- make -C task-09 -j${J} all

0 commit comments

Comments
 (0)