openpilot is an open source driver assistance system. openpilot performs the functions of Automated Lane Centering and Adaptive Cruise Control for over 200 supported car makes and models.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.8 KiB

# openpilot releases
## terms
- `channel` - a named version of openpilot (git branch, casync caidx) which receives updates
- `prebuilt` - a release which is already built for the comma 3/3x and contains only required files for running openpilot and identifying the release
- `release` - a `prebuilt` release with `ALLOW_DEBUG=false` (`RELEASE=1` when building panda, ex: `nightly`, `release3`)
2 years ago
## openpilot channels
| channel | type | description |
| ----------- | ----------- | ---------- |
2 years ago
| release | `release` | stable release of openpilot |
2 years ago
| staging | `release` | release candidate of openpilot for final verification |
2 years ago
| nightly | `release` | generated nightly from last commit passing CI tests |
| master | `prebuilt` | current master commit with experimental features enabled |
2 years ago
| git branches | `git` | installed manually, experimental features enabled, build required |
2 years ago
## creating casync build
`create_casync_prebuilt.sh` - creates a `prebuilt` casync openpilot build, ready to upload to `openpilot-releases`
```bash
# run on a tici, within the directory you want to create the build from.
# creates a prebuilt version of openpilot into BUILD_DIR and outputs the caidx
# and other casync files into CASYNC_DIR for uploading to openpilot-releases.
BUILD_DIR=/data/openpilot_build \
CASYNC_DIR=/data/casync \
2 years ago
OPENPILOT_CHANNEL=nightly \
2 years ago
release/create_casync_prebuilt.sh
```
2 years ago
`upload_casync_release.sh` - helper for uploading a casync build to `openpilot-releases`
2 years ago
## release builds
2 years ago
to create a release build, set `RELEASE=1` environment variable when running the build script