-
Notifications
You must be signed in to change notification settings - Fork 56
89 lines (75 loc) · 2.12 KB
/
test.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
on:
push:
branches:
- master
pull_request:
branches:
- master
- version_5_rc0
name: run tests
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: install python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: linter
run: |
pip install cpplint==2.0.0
make lint
test:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: install python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: install tools
run: |
pip install platformio==6.1.10
sudo apt-get update && sudo apt-get install -y lcov
- name: run tests
run: |
cd test
make clean test OPT=-O2
make clean coverage OPT=-O0
- name: Upload coverage to coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
file: test/coverage.lcov
examples:
runs-on: ubuntu-latest
strategy:
matrix:
board: ["uno", "esp01", "nano33ble", "esp32dev", "nucleo_f401re"]
example: ["multiled_mbed", "custom_hal", "morse", "candle", "multiled",
"user_func", "hello", "breathe", "simple_on", "fade_on", "sequence"]
include:
- board: esp32dev
extra_flags: --project-option="build_flags = -DLED_BUILTIN=1"
- board: "nucleo_f401re"
example: "multiled_mbed"
extra_flags: --project-option="framework=mbed"
exclude:
- board: "nucleo_f401re"
steps:
- name: checkout code
uses: actions/checkout@v4
- name: install python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: install tools
run: |
pip install platformio==6.1.10
- name: build examples
run: |-
pio ci --board=${{matrix.board}} --lib="src" --lib="examples/${{matrix.example}}"\
examples/${{matrix.example}}/${{matrix.example}}.ino ${{matrix.extra_flags}}