Files
sunnypilot/release/README.md

36 lines
1.4 KiB
Markdown
Raw Normal View History

# openpilot releases
2025-06-18 15:50:31 -07:00
```
## release checklist
2025-08-20 15:44:13 -07:00
### Go to staging
2025-12-18 22:52:14 -08:00
- [ ] make a GitHub issue to track release with this checklist
- [ ] create release master branch
2025-12-18 22:52:14 -08:00
- [ ] create a branch from upstream master named `zerotentwo` for release `v0.10.2`
- [ ] revert risky commits (double check with autonomy team)
- [ ] push the new branch
- [ ] push to staging:
- [ ] make sure you are on the newly created release master branch (`zerotentwo`)
- [ ] run `BRANCH=devel-staging release/build_stripped.sh`. Jenkins will then automatically build staging on device, run `test_onroad` and update the staging branch
- [ ] bump version on master: `common/version.h` and `RELEASES.md`
2025-08-05 16:07:29 -07:00
- [ ] post on Discord, tag `@release crew`
2025-08-20 15:44:13 -07:00
### Go to release
- [ ] before going to release, test the following:
2025-06-18 15:48:10 -07:00
- [ ] update from previous release -> new release
- [ ] update from new release -> previous release
- [ ] fresh install with `openpilot-test.comma.ai`
- [ ] drive on fresh install
- [ ] no submodules or LFS
- [ ] check sentry, MTBF, etc.
- [ ] stress test passes in production
- [ ] publish the blog post
2025-12-18 22:52:14 -08:00
- [ ] `git reset --hard origin/release-mici-staging`
2025-06-18 15:50:31 -07:00
- [ ] tag the release: `git tag v0.X.X <commit-hash> && git push origin v0.X.X`
- [ ] create GitHub release
- [ ] final test install on `openpilot.comma.ai`
2025-06-18 15:48:10 -07:00
- [ ] update factory provisioning
- [ ] close out milestone and issue
2025-06-18 15:48:10 -07:00
- [ ] post on Discord, X, etc.
2025-06-18 15:50:31 -07:00
```