Added some simple object detection code, amongst other things. #1557
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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/[email protected] | |
with: | |
name: can-dbc | |
path: build/can/igvc_can.dbc | |
- name: Upload OpenCAN Codegen Artifacts | |
uses: actions/[email protected] | |
with: | |
name: opencan-codegen-files | |
path: build/dbw/node_fw/opencan_generated/* | |
- name: Upload firmware binaries | |
uses: actions/[email protected] | |
with: | |
name: node_fw-bin | |
path: build/dbw/node_fw/*/firmware.bin |