-
-
Notifications
You must be signed in to change notification settings - Fork 29
387 lines (310 loc) · 12.6 KB
/
build-firmware.yaml
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
name: Firmware at GHA
on:
push:
pull_request:
workflow_dispatch:
inputs:
do_upload:
description: 'Upload Build Outputs'
required: false
type: boolean
build_name:
description: 'Release Build Name'
required: false
type: string
jobs:
build-libopenblt-linux:
runs-on: ubuntu-latest-selfhost
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: cmake configure libopenblt
working-directory: ./firmware/ext/openblt/Host/Source/LibOpenBLT/build
run: cmake -DCMAKE_BUILD_TYPE=Release ..
- name: make libopenblt
working-directory: ./firmware/ext/openblt/Host/Source/LibOpenBLT/build
run: make -j8
- name: cmake configure libopenblt_jni
working-directory: ./misc/libopenblt_jni/build
run: cmake -DCMAKE_BUILD_TYPE=Release ..
- name: make libopenblt_jni
working-directory: ./misc/libopenblt_jni/build
run: make -j8
- name: coalesce
run: |
mkdir deliver
cp ./firmware/ext/openblt/Host/libopenblt.so deliver/
cp ./misc/libopenblt_jni/build/libopenblt_jni.so deliver/
- uses: actions/upload-artifact@v4
with:
name: libopenblt-linux
path: |
./deliver/libopenblt.so
./deliver/libopenblt_jni.so
build-libopenblt-macos:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: cmake configure libopenblt
working-directory: ./firmware/ext/openblt/Host/Source/LibOpenBLT/build
run: cmake -DCMAKE_BUILD_TYPE=Release ..
- name: make libopenblt
working-directory: ./firmware/ext/openblt/Host/Source/LibOpenBLT/build
run: make -j8
- name: cmake configure libopenblt_jni
working-directory: ./misc/libopenblt_jni/build
run: cmake -DCMAKE_BUILD_TYPE=Release ..
- name: make libopenblt_jni
working-directory: ./misc/libopenblt_jni/build
run: make -j8
- name: coalesce
run: |
mkdir deliver
cp ./firmware/ext/openblt/Host/libopenblt.dylib deliver/
cp ./misc/libopenblt_jni/build/libopenblt_jni.dylib deliver/
- uses: actions/upload-artifact@v4
with:
name: libopenblt-macos
path: |
./deliver/libopenblt.dylib
./deliver/libopenblt_jni.dylib
build-firmware:
needs: [build-libopenblt-linux, build-libopenblt-macos]
runs-on: ubuntu-latest-selfhost
strategy:
# Let all builds finish even if one fails early
fail-fast: false
matrix:
include:
# Board configurations
- build-target: hellen72
folder: config/boards/hellen/hellen72
ini-file: fome_hellen72.ini
# - build-target: hellen81
# folder: config/boards/hellen/hellen81
# ini-file: fome_hellen81.ini
# - build-target: alphax-2chan
# folder: config/boards/hellen/alphax-2chan
# ini-file: fome_alphax-2chan.ini
# - build-target: alphax-4chan
# folder: config/boards/hellen/alphax-4chan
# ini-file: fome_alphax-4chan.ini
# - build-target: alphax-8chan
# folder: config/boards/hellen/alphax-8chan
# ini-file: fome_alphax-8chan.ini
# - build-target: harley81
# folder: config/boards/hellen/harley81
# ini-file: fome_harley81.ini
- build-target: small-can-board
folder: config/boards/hellen/small-can-board
ini-file: fome_small-can-board.ini
# - build-target: hellen88bmw
# folder: config/boards/hellen/hellen88bmw
# ini-file: fome_hellen88bmw.ini
- build-target: hellen-nb1
folder: config/boards/hellen/hellen-nb1
ini-file: fome_hellen-nb1.ini
# - build-target: hellen-gm-e67
# folder: config/boards/hellen/hellen-gm-e67
# ini-file: fome_hellen-gm-e67.ini
- build-target: hellenNA8_96
folder: config/boards/hellen/hellenNA8_96
ini-file: fome_hellenNA8_96.ini
- build-target: hellenNA6
folder: config/boards/hellen/hellen64_miataNA6_94
ini-file: fome_hellenNA6.ini
- build-target: hellen128
folder: config/boards/hellen/hellen128
ini-file: fome_hellen128.ini
# - build-target: hellen121vag
# folder: config/boards/hellen/hellen121vag
# ini-file: fome_hellen121vag.ini
# - build-target: hellen121nissan
# folder: config/boards/hellen/hellen121nissan
# ini-file: fome_hellen121nissan.ini
# - build-target: hellen-honda-k
# folder: config/boards/hellen/hellen-honda-k
# ini-file: fome_hellen-honda-k.ini
# - build-target: hellen154hyundai
# folder: config/boards/hellen/hellen154hyundai
# ini-file: fome_hellen154hyundai.ini
# - build-target: frankenso_na6
# folder: config/boards/frankenso
# ini-file: fome_frankenso_na6.ini
- build-target: mre_f4
folder: config/boards/microrusefi
ini-file: fome_mre_f4.ini
# - build-target: mre_f4_no_openblt
# folder: config/boards/microrusefi
# ini-file: fome_mre_f4.ini
# - build-target: mre_f4_debug
# folder: config/boards/microrusefi
# ini-file: fome_mre_f4.ini
# - build-target: mre_f4_recovery
# folder: config/boards/microrusefi
# ini-file: fome_mre_f4.ini
- build-target: mre_f7
folder: config/boards/microrusefi
ini-file: fome_mre_f7.ini
# - build-target: prometheus_405
# folder: config/boards/prometheus
# ini-file: fome_prometheus_405.ini
# - build-target: prometheus_469
# folder: config/boards/prometheus
# ini-file: fome_prometheus_469.ini
- build-target: proteus_f4
folder: config/boards/proteus
ini-file: fome_proteus_f4.ini
- build-target: proteus_f7
folder: config/boards/proteus
ini-file: fome_proteus_f7.ini
- build-target: proteus_h7
folder: config/boards/proteus
ini-file: fome_proteus_h7.ini
- build-target: stm32f429_nucleo
folder: config/boards/nucleo_f429
ini-file: fome_stm32f429_nucleo.ini
# - build-target: stm32f767_nucleo
# folder: config/boards/nucleo_f767
# ini-file: fome_stm32f767_nucleo.ini
# - build-target: stm32h743_nucleo
# folder: config/boards/nucleo_h743
# ini-file: fome_stm32h743_nucleo.ini
# - build-target: subaru_eg33_f7
# folder: config/boards/subaru_eg33
# ini-file: fome_subaru_eg33_f7.ini
- build-target: f407-discovery
folder: config/boards/f407-discovery
ini-file: fome_f407-discovery.ini
# - build-target: f429-discovery
# folder: config/boards/f429-discovery
# ini-file: fome_f429-discovery.ini
- build-target: core8
folder: config/boards/core8
ini-file: fome_core8.ini
- build-target: core48
folder: config/boards/core48
ini-file: fome_core48.ini
- build-target: atlas
folder: config/boards/atlas
ini-file: fome_atlas.ini
# - build-target: tdg-pdm8
# folder: config/boards/tdg-pdm8
# ini-file: fome_tdg-pdm8.ini
steps:
- name: Check branch name
if: ${{ contains(github.ref_name, '.') }}
run: echo '::error::Branch names must not contain ".", this breaks firmware autoupdates.' && exit 1
- name: Set run condition variables
run: |
if [ "${{github.repository}}" = "FOME-Tech/fome-fw" ]\
&& [ "${{github.event_name}}" = "push" ]\
&& [ "${{github.ref}}" = "refs/heads/master" ]\
|| [ "${{toJSON(inputs.do_upload)}}" = "true" ]; then
echo "full=true" >> $GITHUB_ENV
echo "upload=true" >> $GITHUB_ENV
elif [ "${{github.event_name}}" = "push" ]\
&& [ "${{github.ref}}" = "refs/heads/master" ]; then
echo "full=true" >> $GITHUB_ENV
fi
- uses: actions/checkout@v4
with:
submodules: true
# - uses: actions/setup-java@v3
# with:
# distribution: 'zulu'
# java-version: '8'
# - name: Install multilib, mingw, sshpass and mtools
# working-directory: ./.github/workflows/
# run: |
# sudo ./add-ubuntu-latest-apt-mirrors.sh
# sudo apt-get install gcc-multilib g++-multilib g++-mingw-w64 gcc-mingw-w64 sshpass mtools
# sudo apt-get install zip
# sudo apt-get install dosfstools
- name: Generate Live Documentation
working-directory: ./firmware/
run: ./gen_live_documentation.sh
# - name: Configs Set SSH variables
# if: ${{ env.full == 'true' && env.upload == 'true' }}
# env:
# ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
# run: |
# echo "::set-env name=RUSEFI_SSH_SERVER::${{secrets.RUSEFI_SSH_SERVER}}";
# echo "::set-env name=RUSEFI_SSH_USER::${{secrets.RUSEFI_SSH_USER}}";
# echo "::set-env name=RUSEFI_SSH_PASS::${{secrets.RUSEFI_SSH_PASS}}";
# Build the firmware!
- name: Build Firmware
run: bash misc/jenkins/compile_other_versions/compile.sh ${{matrix.folder}} ${{matrix.build-target}}
- name: Check for illegal time conversions
working-directory: ./firmware/
run: bash check_illegal_conversion.sh
# Build rusEFI console
- name: Build console
if: ${{ env.full == 'true' }}
run: bash misc/jenkins/build_java_console.sh
# Build the simulator
- name: Build simulator
if: ${{ env.full == 'true' }}
working-directory: ./simulator/
# 'OS="Windows_NT"' allows us to build Windows executable on unix
run: OS="Windows_NT" SHORT_BOARD_NAME=${{matrix.build-target}} ./compile.sh
- name: Download LibOpenBLT Tool (Linux)
uses: actions/download-artifact@v4
with:
name: libopenblt-linux
path: ./firmware/ext/openblt/Host/
- name: Download LibOpenBLT Tool (MacOS)
uses: actions/download-artifact@v4
with:
name: libopenblt-macos
path: ./firmware/ext/openblt/Host/
- name: Package Bundle
if: ${{ env.full == 'true' }}
run: bash misc/jenkins/compile_other_versions/prepare_bundle.sh ${{matrix.build-target}} "${{matrix.ini-file}}" ${{ toJSON(inputs.build_name) }}
- name: Upload INI to tunes.fome.tech
if: ${{ env.full == 'true' && env.upload == 'true' }}
uses: hyper-tuner/ini-upload-action@v1
continue-on-error: true
with:
api-url: "${{ secrets.HYPER_TUNER_INI_UPLOAD_URL }}"
username: "${{ secrets.HYPER_TUNER_INI_UPLOAD_USERNAME }}"
password: "${{ secrets.HYPER_TUNER_INI_UPLOAD_PASSWORD }}"
path: ./firmware/tunerstudio/generated/${{matrix.ini-file}}
ecosystem: fome
# - name: Upload .ini files
# if: ${{ env.full == 'true' && env.upload == 'true' }}
# working-directory: ./firmware/tunerstudio/generated
# run: ../upload_ini.sh ${{matrix.ini-file}} ${{ secrets.RUSEFI_ONLINE_FTP_USER }} ${{ secrets.RUSEFI_ONLINE_FTP_PASS }} ${{ secrets.RUSEFI_FTP_SERVER }}
# - name: Upload build elf
# if: ${{ env.full == 'true' && env.upload == 'true' }}
# uses: actions/upload-artifact@v3
# with:
# name: fome_${{matrix.build-target}}.elf
# path: ./firmware/build/rusefi.elf
# - name: Upload build bin
# if: ${{ env.full == 'true' && env.upload == 'true' }}
# uses: actions/upload-artifact@v3
# with:
# name: fome_${{matrix.build-target}}.bin
# path: ./firmware/deliver/rusefi*.bin
# - name: Upload build hex
# if: ${{ env.full == 'true' && env.upload == 'true' }}
# uses: actions/upload-artifact@v3
# with:
# name: fome_${{matrix.build-target}}.hex
# path: ./firmware/deliver/rusefi*.hex
# - name: Upload build dfu
# if: ${{ env.full == 'true' && env.upload == 'true' }}
# uses: actions/upload-artifact@v3
# with:
# name: fome_${{matrix.build-target}}.dfu
# path: ./firmware/deliver/rusefi*.dfu
- name: Upload bundle
if: ${{ env.full == 'true' && env.upload == 'true' }}
uses: actions/upload-artifact@v4
with:
name: fome_bundle_${{matrix.build-target}}.zip
path: ./artifacts/fome_bundle_${{matrix.build-target}}.zip