-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat(bench): miscellaneous improvements for pkg-config #1622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
80615ec
to
a77c126
Compare
e16d34e
to
fad6abf
Compare
pkg-config
before trying to setup bench…p bench Signed-off-by: Akhil Narang <me@akhilnarang.dev>
Signed-off-by: Akhil Narang <me@akhilnarang.dev>
Signed-off-by: Akhil Narang <me@akhilnarang.dev>
Signed-off-by: Akhil Narang <me@akhilnarang.dev>
Signed-off-by: Akhil Narang <me@akhilnarang.dev>
4df98ac
to
898ec00
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces miscellaneous improvements for the bench tool including dependency checks for pkg-config on macOS and updates pip install commands. Key changes include:
- Adding helper functions (get_mariadb_pkgconfig_path and check_pkg_config) to manage pkg-config configuration.
- Modifying Base.run to accept an env parameter and updating pip install command invocations in multiple modules.
- Updating CI workflow to ensure pkg-config is installed.
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
File | Description |
---|---|
bench/utils/system.py | Introduces helper functions for pkg-config checking and configuration. |
bench/bench.py | Updates the run method signature to include env; adds environment handling for pip install commands. |
bench/app.py | Adjusts pip install commands to pass the environment configuration for macOS. |
.github/workflows/ci.yml | Updates CI configuration to install pkg-config along with redis-server. |
Comments suppressed due to low confidence (1)
bench/bench.py:382
- The PR description mentions passing '--use-pep517' to pip install, but this flag is not present in the pip install commands. Please update these commands to include '--use-pep517' if intended.
self.run(f"{self.bench.python} -m pip install {quiet_flag} --upgrade -e {frappe}", cwd=self.bench.name, env=env)
898ec00
to
8848c42
Compare
8848c42
to
cda543b
Compare
Everything should be fine, it is when I ssh in and manually run the commands, just pip install within the test suite can't find pkg-config somehow, which shouldn't be related to this PR. Edit: |
cda543b
to
191e0bc
Compare
Signed-off-by: Akhil Narang <me@akhilnarang.dev>
Signed-off-by: Akhil Narang <me@akhilnarang.dev>
|
* upstream/develop: ci: drop support for python 3.9 chore: pin Click version fix: use check_nested_command feat(bench): miscellaneous improvements for pkg-config (#1622) Signed-off-by: Akhil Narang <me@akhilnarang.dev>
* upstream/staging: ci: drop support for python 3.9 chore: pin Click version fix: use check_nested_command feat(bench): miscellaneous improvements for pkg-config (#1622) Signed-off-by: Akhil Narang <me@akhilnarang.dev>
🎉 This PR is included in version 5.25.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
pkg-config
is installedPKG_CONFIG_PATH
for macOS