feat: Add comprehensive Linux build support#3673
Merged
DOsinga merged 3 commits intoblock:mainfrom Aug 2, 2025
Merged
Conversation
- Configure Electron Forge for Linux builds (remove RPM, add ZIP) - Update ui/desktop/README.md with Linux build instructions - Add BUILDING_LINUX.md with detailed Linux build guide - Add goose-gui.sh launcher script to suppress GLib warnings - Support for Debian/Ubuntu, Arch/Manjaro, Fedora, and openSUSE This enables building Goose Desktop on various Linux distributions by providing proper system dependencies documentation and removing incompatible RPM maker for Arch-based systems.
DOsinga
reviewed
Jul 28, 2025
- Add Linux support while maintaining macOS and Windows compatibility - Use platform-specific icon configuration - Restore arch configuration for proper builds
Resolve conflicts in forge.config.ts: - Add Linux support to ZIP maker while maintaining macOS and Windows compatibility - Keep RPM maker from upstream for comprehensive Linux package support - Use platform-specific icon configuration (PNG for Linux, ICO for others) - Preserve arch configuration for proper builds This ensures comprehensive Linux build support while maintaining compatibility with existing macOS and Windows build processes.
DOsinga
approved these changes
Aug 2, 2025
| # Suppresses common GLib warnings that don't affect functionality | ||
|
|
||
| cd /home/alfonsodg/Devel-Local/oss/goose/ui/desktop/out/Goose-linux-x64 | ||
| ./Goose 2>&1 | grep -v "GLib-GObject" | grep -v "browser_main_loop" |
Collaborator
There was a problem hiding this comment.
can we move this to the Just file?
| arch: process.env.ELECTRON_ARCH === 'x64' ? ['x64'] : ['arm64'], | ||
| options: { | ||
| icon: 'src/images/icon.ico', | ||
| icon: process.platform === 'linux' ? 'src/images/icon.png' : 'src/images/icon.ico', |
Collaborator
There was a problem hiding this comment.
how broken was this before?
katzdave
added a commit
that referenced
this pull request
Aug 4, 2025
…ng-quickfix * 'main' of github.com:block/goose: (26 commits) docs: Add YouTube link to Git MCP Tutorial (#3831) feat: more robust client initialization for the app (#3830) Build app bundles on release branches always (#3789) fix param order of debug_conversation_fixer (#3796) Fix directory switcher not working in active chat sessions and file browser not defaulting to current session directory path (#3791) File completion in CLI (#3822) docs: Dynamic linux install buttons (#3810) tests: Add missing `#[serial]` to two tests (#3816) Chore: apply more clippy rules to prevent from code complexity (#3813) chore(mcp): Add helpers to parse parameters (#2821) feat: enable docusaurus respectPrefersColorScheme (#3746) fix session resume in new window (#3800) Add settings field documentation to recipe guides (#3809) chore(deps): bump on-headers and compression in /documentation (#3532) fix(ui): refresh provider related issues (#3385) feat: Add comprehensive Linux build support (#3673) developer: Optimize text_editor_view a bit (#3781) Override session name generator for ollama provider (#3710) docs: fix markdown for cognee tutorial (#3801) chore: Upgrade node (#3756) ...
michaelneale
added a commit
that referenced
this pull request
Aug 4, 2025
* main: (34 commits) Token counting in Auto-compact uses provider metadata (#3788) docs: Add YouTube link to Git MCP Tutorial (#3831) feat: more robust client initialization for the app (#3830) Build app bundles on release branches always (#3789) fix param order of debug_conversation_fixer (#3796) Fix directory switcher not working in active chat sessions and file browser not defaulting to current session directory path (#3791) File completion in CLI (#3822) docs: Dynamic linux install buttons (#3810) tests: Add missing `#[serial]` to two tests (#3816) Chore: apply more clippy rules to prevent from code complexity (#3813) chore(mcp): Add helpers to parse parameters (#2821) feat: enable docusaurus respectPrefersColorScheme (#3746) fix session resume in new window (#3800) Add settings field documentation to recipe guides (#3809) chore(deps): bump on-headers and compression in /documentation (#3532) fix(ui): refresh provider related issues (#3385) feat: Add comprehensive Linux build support (#3673) developer: Optimize text_editor_view a bit (#3781) Override session name generator for ollama provider (#3710) docs: fix markdown for cognee tutorial (#3801) ...
michaelneale
added a commit
that referenced
this pull request
Aug 5, 2025
* main: (56 commits) Token counting in Auto-compact uses provider metadata (#3788) docs: Add YouTube link to Git MCP Tutorial (#3831) feat: more robust client initialization for the app (#3830) Build app bundles on release branches always (#3789) fix param order of debug_conversation_fixer (#3796) Fix directory switcher not working in active chat sessions and file browser not defaulting to current session directory path (#3791) File completion in CLI (#3822) docs: Dynamic linux install buttons (#3810) tests: Add missing `#[serial]` to two tests (#3816) Chore: apply more clippy rules to prevent from code complexity (#3813) chore(mcp): Add helpers to parse parameters (#2821) feat: enable docusaurus respectPrefersColorScheme (#3746) fix session resume in new window (#3800) Add settings field documentation to recipe guides (#3809) chore(deps): bump on-headers and compression in /documentation (#3532) fix(ui): refresh provider related issues (#3385) feat: Add comprehensive Linux build support (#3673) developer: Optimize text_editor_view a bit (#3781) Override session name generator for ollama provider (#3710) docs: fix markdown for cognee tutorial (#3801) ...
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
This PR adds comprehensive Linux build support for Goose Desktop, enabling builds on various Linux distributions including Arch/Manjaro, Debian/Ubuntu, Fedora, and openSUSE.
Changes
Testing
Distribution Support
Files Changed
This enables the Goose community to build and distribute the desktop application on Linux systems, expanding platform support beyond macOS and Windows.