Draft
Conversation
- Move Linux-only packages into OS==Linux conditional block so macOS doesn't try to brew install them - Handle pynvim via pip3 on macOS instead of brew - Separate third-party packages (brave-browser, google-chrome-stable, insync) into optional list that doesn't cause CI failure when their external repos are unavailable Closes #1
Copilot
AI
changed the title
[WIP] Fix CI failing on Fedora and macOS
Fix CI failures on Fedora and macOS platforms
Jul 14, 2026
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.
CI fails on macOS because Linux-only packages are in a global list that the macOS brew loop iterates over, and on Fedora because third-party apps requiring external repos (pinned to old Fedora versions) block the build.
Changes
xclip,pip,bugwarrior,cronie,gnome-tweaks, dev libraries, etc.) into an[[ ${OS} == "Linux" ]]conditional block, matching the existing pattern used forcoreutilson Darwinpip3 installpath forpynvimin the Darwin section instead of attemptingbrew installbrave-browser,google-chrome-stable, andinsyncinto anoptionalPackageslist with its own install loop—failures are reported as warnings but don't exit non-zeroAlso removed a duplicate
xclipentry and fixed a typo in a comment.