-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (35 loc) · 960 Bytes
/
node_fw.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
---
name: build `node_fw`
# yamllint disable-line rule:truthy
on:
- pull_request
- push
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Checkout `selfdrive`
uses: ./.github/actions/checkout
- name: Build DBC
run: scons dbc
- name: Build firmware
run: fwpio run
- name: Upload CAN network
uses: actions/upload-artifact@v3.1.3
with:
name: can-dbc
path: build/can/igvc_can.dbc
- name: Upload OpenCAN Codegen Artifacts
uses: actions/upload-artifact@v3.1.3
with:
name: opencan-codegen-files
path: build/dbw/node_fw/opencan_generated/*
- name: Upload firmware binaries
uses: actions/upload-artifact@v3.1.3
with:
name: node_fw-bin
path: build/dbw/node_fw/*/firmware.bin