-
Notifications
You must be signed in to change notification settings - Fork 15
235 lines (192 loc) · 7.16 KB
/
platformio-ci.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
name: PlatformIO CI
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
paxo_v5_build_test_upload:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
.pio/build_cache
.pio/libdeps
key: ${{ runner.os }}-platformio-ci-paxo-v5
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
# We are unable to run tests on ESP32
- name: Build PlatformIO Project for Paxo ESP32
run: pio run -e paxo-v5
- name: Move files into artifact directory
shell: bash
run: |
mkdir build
cp -r .pio/build/paxo-v5/firmware.bin build
cp -r .pio/build/paxo-v5/firmware.elf build
[[ -e .pio/build/paxo-v5/firmware.map ]] && cp -r .pio/build/paxo-v5/firmware.map build
cp -r .pio/build/paxo-v5/bootloader.bin build
cp -r .pio/build/paxo-v5/partitions.bin build
cp -r storage build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: paxo-v5-build
include-hidden-files: true
path: |
build/
linux_build_test_upload:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
.pio/build_cache
.pio/libdeps
key: ${{ runner.os }}-platformio-ci-linux
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Install SDL2
run: sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu `lsb_release -sc` main universe restricted multiverse" && sudo apt-get update -y -qq && sudo apt-get install libsdl2-dev
- name: Run tests for Linux
run: pio test -e linux --json-output-path linux-test-report.json --junit-output-path linux-test-report.xml
- name: Upload test reports
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: linux-test-reports
path: |
linux-test-report.json
linux-test-report.xml
- name: Build PlatformIO Project for Linux
run: pio run -e linux
- name: Move files into artifact directory
shell: bash
run: |
mkdir build
cp -r .pio/build/linux/program build
cp -r storage build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: linux-build
include-hidden-files: true
path: |
build/
macos_build_test_upload:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
.pio/build_cache
.pio/libdeps
key: ${{ runner.os }}-platformio-ci-macos
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Install SDL2
run: brew install SDL2
- name: Run tests for macOS
run: DYLD_LIBRARY_PATH="`brew --prefix sdl2`/lib" pio test -e macos --json-output-path macos-test-report.json --junit-output-path macos-test-report.xml
- name: Upload test reports
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: macos-test-reports
path: |
macos-test-report.json
macos-test-report.xml
- name: Build PlatformIO Project for macOS
run: DYLD_LIBRARY_PATH="`brew --prefix sdl2`/lib" pio run -e macos
- name: Move files into artifact directory
shell: bash
run: |
mkdir build
cp -r .pio/build/macos/program build
cp -r storage build
chmod +x build/program
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: macos-build
include-hidden-files: true
path: |
build/
windows_build_test_upload:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
.pio/build_cache
.pio/libdeps
key: ${{ runner.os }}-platformio-ci-windows
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Run tests for Windows
run: pio test -e windows --json-output-path windows-test-report.json --junit-output-path windows-test-report.xml
- name: Upload test reports
if: success() || failure()
uses: actions/upload-artifact@v4
with:
name: windows-test-reports
path: |
windows-test-report.json
windows-test-report.xml
- name: Build PlatformIO Project for Windows
run: pio run -e windows
- name: Move files into artifact directory
shell: bash
run: |
mkdir build
cp -r .pio/build/windows/program.exe build
cp -r .pio/build/windows/*.dll build
cp -r storage build
- name: Copy required DLLs into artifact directory
run: python scripts/github_actions/windows/get_dll.py build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: windows-build
include-hidden-files: true
path: |
build/