-
Notifications
You must be signed in to change notification settings - Fork 86
43 lines (40 loc) · 955 Bytes
/
build.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
name: build-test
on:
push:
branches:
- master
pull_request:
branches:
- '*'
schedule:
- cron: '0 3 * * 5'
jobs:
build-test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
board:
- native
- samr21-xpro
- pba-d-01-kw2x
env:
BUILD_IN_DOCKER: 1
WERROR: 0 # some variables are not used intentionally
BOARD: ${{ matrix.board }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- run: make -C task-01 -j all
- run: make -C task-02 -j all
- run: make -C task-03 -j all
- run: make -C task-04 -j all
- run: make -C task-05 -j all
- run: make -C task-06 -j all
- name: Run make -C task-07 -j all
run: |
make -C RIOT/examples/gnrc_minimal -j all
make -C RIOT/examples/gnrc_networking -j all
- run: make -C task-08 -j all
- run: make -C task-09 -j all