fix(gh-workflow): Use install-dev-wolf.sh for the lint-python for libmariadb-dev installation. - #386
Merged
LinZhihao-723 merged 1 commit intoJul 10, 2026
Conversation
Contributor
|
Caution Review failedAn error occurred during the review process. Please try again later. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
20001020ycx
marked this pull request as ready for review
July 10, 2026 16:39
sitaowang1998
approved these changes
Jul 10, 2026
lint-python for libmariadb-dev installation.
LinZhihao-723
approved these changes
Jul 10, 2026
LinZhihao-723
left a comment
Member
There was a problem hiding this comment.
Directly modified the PR title.
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.
Description
When running
task lint:py-check, CI job fails withOSError: mariadb_config not found.if built without any cache. This is becauseinstall-dev-common.shdoes not includelibmariadb-dev.Why it passed before but breaks now: This is a long-standing latent gap, not a recent upstream/runner change. We never hit it because the
setup-uvcache served a pre-builtmariadbwheel — until caught bt #383 which editedrequirements-dev.txt, invalidating the cache and forcinguvto rebuildmariadbfrom source (which needs the missingmariadb_config).This change points
lint-pythonatinstall-dev-wolf.sh, which installslibmariadb-dev.Checklist
breaking change.
Validation performed
Reproduced on a branch whose
requirements-dev.txtedit forced the cold-cache path, toggling only the installer script:lint-pythonusinginstall-dev-common.sh: fails atBuilding mariadb==1.1.14withmariadb_config: not found.https://github.com/y-scope/spider/actions/runs/29102792655/job/86396000160
lint-pythonusinginstall-dev-wolf.sh:Built mariadb==1.1.14,task lint:py-checkpasses.https://github.com/y-scope/spider/actions/runs/29105396825/job/86404556321
All jobs on the "after" run completed successfully (15/15 checks green:
lint-python,lint-cpp,lint-rust,lint-common,huntsman-tests,wolf-tests,build-and-push, and the code-generation checks).