-
-
Notifications
You must be signed in to change notification settings - Fork 150
146 lines (134 loc) · 3.92 KB
/
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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
name: Build
on: [push, pull_request]
jobs:
build_esp_pio:
strategy:
fail-fast: false
matrix:
example:
- "examples/NimBLE_Client"
- "examples/NimBLE_Server"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install platformio
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Build esp PIO
run: |
mkdir -p example/lib
rsync -Rr . example/lib/
mkdir example/src
cat > example/platformio.ini << EOF
[env]
platform = espressif32
framework = arduino
[env:esp32dev]
board = esp32dev
[env:esp32c3]
board = esp32-c3-devkitm-1
[env:esp32s3]
board = esp32-s3-devkitc-1
EOF
cp ${{ matrix.example }}/* example/src/
platformio run -d example
build_arduino-esp32:
strategy:
fail-fast: false
matrix:
example:
- "examples/NimBLE_Client"
- "examples/NimBLE_Server"
variant:
- esp32
- esp32c3
- esp32s3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build arduino-esp32
uses: arduino/compile-sketches@v1.1.0
with:
cli-version: latest
platforms: |
- name: "esp32:esp32"
source-url: "https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json"
version: latest
fqbn: "esp32:esp32:${{ matrix.variant }}"
sketch-paths: ${{ matrix.example }}
build_n-able-Arduino:
strategy:
fail-fast: false
matrix:
example:
- "examples/NimBLE_Client"
- "examples/NimBLE_Server"
variant:
- Generic_nRF51822:chip=xxaa
- Generic_nRF52832
- Generic_nRF52833
- Generic_nRF52840
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build n-able Arduino
uses: arduino/compile-sketches@v1.1.0
with:
cli-version: latest
platforms: |
- name: "h2zero:arm-ble"
source-url: "https://h2zero.github.io/n-able-Arduino/package_n-able_boards_index.json"
version: latest
fqbn: "h2zero:arm-ble:${{ matrix.variant }}"
sketch-paths: ${{ matrix.example }}
build_n-able-pio:
strategy:
fail-fast: false
matrix:
example:
- "examples/NimBLE_Client"
- "examples/NimBLE_Server"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install platformio
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Build esp PIO
run: |
mkdir -p example/lib
rsync -Rr . example/lib/
mkdir example/src
cat > example/platformio.ini << EOF
[env]
platform = https://github.com/h2zero/platform-n-able.git#1.0.0
framework = arduino
[env:generic_nrf51822_xxaa
board = generic_nrf51822_xxaa
[env:generic_nrf52832]
board = generic_nrf52832
[env:generic_nrf52833]
board = generic_nrf52833
[env:generic_nrf52840]
board = generic_nrf52840
EOF
cp ${{ matrix.example }}/* example/src/
platformio run -d example
build_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Doxygen Action
uses: mattnotmitt/doxygen-action@v1.9.5
with:
working-directory: 'docs/'