feat: dev cli in go#367
Closed
Nikhil (shadowfax92) wants to merge 1325 commits intomainfrom
Closed
Conversation
* feat: new extension installer + bundle support * feat: support bundle extension download in cli * chore: update release yaml to include new bundle_extensions module
* feat: ota release * chore: clean-up old binaries * fix: ota cli sub-commands, path fixes * chore: browseros server binary update * fix: add sparkle sign_update path as ENV * fix: CLOUDFLARE_API_TOKEN to env * fix: use same upload r2 module * feat: upload appcast is separate * feat: write sparkle sign in python * fix: handle appcast update * fix: add missing sparkle.py file * fix: remove redudant cli options in ota * chore: 0.0.37 macos signed release * chore: linux browseros server ota * fix: copy binaries to temp file and then sign
* feat: new apply --force * chore: update chromium version * feat: chromium 145 updated patches * fix: disable series patches for nwo * chore: bump offset + version --------- Co-authored-by: Nikhil <shadowfax@mac.local.meter>
* feat: bros dev cli for better management * fix: minor * fix: review fixes
* feat: cookie import fix * chore: bump offset + version * feat: fixes to keychain macos signing
Contributor
Author
|
Greptile (@greptileai) review pls |
Contributor
Greptile SummaryThis PR implements a comprehensive Go-based CLI tool ( Major Components:
Code Quality:
Key Features:
Confidence Score: 4/5
Important Files Changed
Flowchartflowchart TD
Start([bros CLI]) --> Root{Command}
Root -->|build| Build[Build Command]
Root -->|dev| Dev[Dev Command]
Root -->|release| Release[Release Command]
Root -->|ota| OTA[OTA Command]
Build --> BuildMode{Mode}
BuildMode -->|--config| ConfigMode[YAML Config]
BuildMode -->|--modules| ModulesMode[Module List]
BuildMode -->|phase flags| PhaseMode[Phase Flags]
ConfigMode --> BuildCtx[Build Context]
ModulesMode --> BuildCtx
PhaseMode --> BuildCtx
BuildCtx --> Pipeline[Module Pipeline]
Pipeline --> Setup[Setup Phase]
Pipeline --> Prep[Prep Phase]
Pipeline --> BuildPhase[Build Phase]
Pipeline --> Sign[Sign Phase]
Pipeline --> Package[Package Phase]
Pipeline --> Upload[Upload Phase]
Setup --> GitSetup[Git Setup]
Setup --> SparkleSetup[Sparkle Setup]
Prep --> Patches[Apply Patches]
Prep --> Resources[Copy Resources]
Prep --> Configure[GN Configure]
BuildPhase --> Compile[Autoninja Compile]
Sign --> SignOS{OS}
SignOS -->|macOS| SignMac[Code Sign + Notarize]
SignOS -->|Windows| SignWin[eSigner + TOTP]
SignOS -->|Linux| SignLinux[No-op]
Package --> PackageOS{OS}
PackageOS -->|macOS| DMG[Create DMG]
PackageOS -->|Windows| Installer[Mini Installer]
PackageOS -->|Linux| AppImage[AppImage + deb]
Upload --> R2Upload[Upload to R2]
Dev --> DevCmd{Subcommand}
DevCmd -->|status| DevStatus[Show Status]
DevCmd -->|annotate| DevAnnotate[Create Commits]
DevCmd -->|feature| DevFeature[Feature Mgmt]
DevFeature --> FeatureList[List Features]
DevFeature --> FeatureShow[Show Feature]
DevFeature --> FeatureAdd[Add/Update]
DevFeature --> FeatureClassify[Classify Patches]
Release --> ReleaseCmd{Subcommand}
ReleaseCmd -->|list| ReleaseList[List Versions]
ReleaseCmd -->|appcast| Appcast[Generate XML]
ReleaseCmd -->|publish| Publish[Publish to CDN]
ReleaseCmd -->|download| Download[Download Artifacts]
ReleaseCmd -->|github| GitHub[GitHub Release]
GitHub --> GHCreate[Create Release]
GHCreate --> GHUpload[Upload Assets]
OTA --> OTACmd{Subcommand}
OTACmd -->|server release| ServerRelease[Server OTA]
OTACmd -->|publish-appcast| PublishAppcast[Publish Appcast]
OTACmd -->|test-signing| TestSign[Test Signing]
ServerRelease --> SignBinary[Sign Binary]
ServerRelease --> CreateZip[Create Zip]
ServerRelease --> SparkleSign[Sparkle Sign]
ServerRelease --> UploadOTA[Upload to R2]
R2Upload --> R2[Cloudflare R2]
UploadOTA --> R2
Publish --> R2
Download --> R2
Last reviewed commit: d215ff5 |
d215ff5 to
b070aeb
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.