From 348fa19cdb0ff2bb864e662b3890046cc5278dca Mon Sep 17 00:00:00 2001 From: Maxime Desroches Date: Mon, 25 Aug 2025 20:18:29 -0700 Subject: [PATCH] start --- Jenkinsfile | 7 +++++++ selfdrive/test/test_onroad.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0905abd6da..31095a619e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -208,6 +208,13 @@ node { step("onroad tests", "pytest selfdrive/test/test_onroad.py -s", [timeout: 60]), ]) }, + 'onroad tests': { + deviceStage("onroad", "tizi-needs-can", ["UNSAFE=1"], [ + step("build openpilot", "cd system/manager && ./build.py"), + step("check dirty", "release/check-dirty.sh"), + step("onroad tests", "pytest selfdrive/test/test_onroad.py -s", [timeout: 60]), + ]) + }, 'HW + Unit Tests': { deviceStage("tici-hardware", "tici-common", ["UNSAFE=1"], [ step("build", "cd system/manager && ./build.py"), diff --git a/selfdrive/test/test_onroad.py b/selfdrive/test/test_onroad.py index 0149653c84..3ec7b38e83 100644 --- a/selfdrive/test/test_onroad.py +++ b/selfdrive/test/test_onroad.py @@ -33,7 +33,7 @@ CPU usage budget TEST_DURATION = 25 LOG_OFFSET = 8 -MAX_TOTAL_CPU = 280. # total for all 8 cores +MAX_TOTAL_CPU = 287. # total for all 8 cores PROCS = { # Baseline CPU usage by process "selfdrive.controls.controlsd": 16.0,