fix(common): re-quarantine shell tool scenarios that fail in CI#209
Open
castrojo wants to merge 1 commit into
Open
fix(common): re-quarantine shell tool scenarios that fail in CI#209castrojo wants to merge 1 commit into
castrojo wants to merge 1 commit into
Conversation
zsh and fish fail with 'command not found' under the bash -lc CI environment used by the bluefin-test user — root cause is under investigation (likely PATH not including /usr/bin when brew shellenv partially initialises). fzf, bat, eza, fd, ripgrep, and starship are installed by brew-setup.service (cli.Brewfile) which is masked in CI. The ublue-os/brew image only ships the Homebrew tarball — packages are not pre-installed in the OCI image. These scenarios cannot pass until either brew-setup.service is unmasked in CI or the tools are baked directly into the image. Quarantine count: 20 → 28. Tracking issue: #209. Assisted-by: Claude Sonnet 4.6 via GitHub Copilot CLI Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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.
Problem
The nightly CI (run 26798673069) failed on its debut because 8 scenarios in
common_shell.featurewere prematurely de-quarantined in #198.zsh / fish — fail with
bash: line 1: zsh: command not foundunder thebluefin-testCI user'sbash -lcenvironment. zsh and fish are RPMs in the bluefin image, but PATH is not correctly resolved in this CI context. Root cause under investigation in #210.fzf, bat, eza, fd, ripgrep, starship — installed by
brew-setup.service(cli.Brewfile), which is masked in CI via kernel args. Theublue-os/brewOCI image only ships a bare Homebrew tarball — packages are not pre-baked into the image. These tools cannot pass until either:brew-setup.serviceis unmasked in CI (slow, ~60s extra), orFix
Re-apply
@quarantineto all 8 failing scenarios with inline comments explaining the block reason. Quarantine count: 20 → 28.Tracking issue: #210