Add Linux build script and docs for OpenCoworker#326
Open
HassanRasoo98 wants to merge 1 commit into
Open
Conversation
- platform/packaging/build_linux.sh: Linux counterpart to build_dmg.sh and build_windows.ps1. Runs PyInstaller, stages the coworker-server sidecar binary into Tauri's externalBin slot, then runs tauri build to produce a .deb and .AppImage. - docs/opencoworker-quickstart.md: add Linux row to the install table and a step-by-step "build from source" section covering system deps, Rust, the Python venv, and running the script. - README.md: add Linux entry alongside the macOS/Windows download links. Co-Authored-By: Hassan Rasool <hassanrasool1057@gmail.com>
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
OpenCoworker ships pre-built binaries for macOS and Windows, but Linux users had no supported path to build or install the app. This PR closes that gap.
platform/packaging/build_linux.sh— Linux counterpart tobuild_dmg.shandbuild_windows.ps1. Bundles the Python backend into a standalone binary via PyInstaller, stages it into Tauri'sexternalBinslot, and runstauri buildto produce a.deband.AppImage.docs/opencoworker-quickstart.md— adds a Linux row to the install table and a step-by-step "build from source" section covering system dependencies, Rust, the Python venv setup, and running the script.README.md— adds a Linux entry alongside the macOS and Windows download links.Test plan
./platform/packaging/build_linux.shon Ubuntu (x64) — confirms.deband.AppImageare produced undersrc-tauri/target/release/bundle/.debviasudo dpkg -iand launch OpenCoworkerdocs/opencoworker-quickstart.mdmatch the actual build steps end-to-end