From 4eb64561f2833eb54a8ae24d458f820b7f935b15 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Fri, 13 Jun 2025 16:46:46 -0700 Subject: [PATCH] remove old workflow doc --- README.md | 1 - docs/CONTRIBUTING.md | 1 - docs/WORKFLOW.md | 33 --------------------------------- 3 files changed, 35 deletions(-) delete mode 100644 docs/WORKFLOW.md diff --git a/README.md b/README.md index 86cccafad9..250f9d36d5 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,6 @@ openpilot is developed by [comma](https://comma.ai/) and by users like you. We w * Join the [community Discord](https://discord.comma.ai) * Check out [the contributing docs](docs/CONTRIBUTING.md) * Check out the [openpilot tools](tools/) -* Read about the [development workflow](docs/WORKFLOW.md) * Code documentation lives at https://docs.comma.ai * Information about running openpilot lives on the [community wiki](https://github.com/commaai/openpilot/wiki) diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index d4a9561f2c..1950db8a05 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -7,7 +7,6 @@ Development is coordinated through [Discord](https://discord.comma.ai) and GitHu ### Getting Started * Setup your [development environment](../tools/) -* Read about the [development workflow](WORKFLOW.md) * Join our [Discord](https://discord.comma.ai) * Docs are at https://docs.comma.ai and https://blog.comma.ai diff --git a/docs/WORKFLOW.md b/docs/WORKFLOW.md deleted file mode 100644 index 1c5bbe9a63..0000000000 --- a/docs/WORKFLOW.md +++ /dev/null @@ -1,33 +0,0 @@ -# openpilot development workflow - -Aside from the ML models, most tools used for openpilot development are in this repo. - -Most development happens on normal Ubuntu workstations, and not in cars or directly on comma devices. See the [setup guide](../tools) for getting your PC setup for openpilot development. - -## Quick start - -```bash -# get the latest stuff -git pull -git lfs pull -git submodule update --init --recursive - -# update dependencies -tools/ubuntu_setup.sh - -# build everything -scons -j$(nproc) - -# build just the ui with either of these -scons -j8 selfdrive/ui/ -cd selfdrive/ui/ && scons -u -j8 - -# test everything -pytest - -# test just logging services -cd system/loggerd && pytest . - -# run the linter -op lint -```