openpilot v0.9.7 release

date: 2024-06-11T01:36:39
master commit: f8cb04e4a8b032b72a909f68b808a50936184bee
This commit is contained in:
FrogAi
2025-04-26 19:00:00 +00:00
committed by FrogAi
commit 28c034d367
3096 changed files with 804662 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
name: drivers
on: [push, pull_request]
jobs:
build_socketcan:
name: socketcan build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt-get install -y dkms gcc linux-headers-$(uname -r) make
- name: Build socketcan driver
run: |
cd drivers/linux
make link
make build
make install
- name: Print make log
if: always()
continue-on-error: true
run: cat /var/lib/dkms/panda/*/build/make.log