Skip to content
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

README: document {alpine,msys,python}_packages #1890

Merged
merged 2 commits into from
Jan 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,12 @@ name and the value is a dictionary containing with the following keys:
| Option | Description |
|-------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `build_options` | (Optional) List of `<your subproject>:option=value` strings that will be used to build the project on the CI. |
| `debian_packages` | (Optional) List of extra packages that will be installed on debian-like CI runners. Dependencies that can be provided by other wraps should not be added here because it's better to test that fallbacks work. When running `tools/sanity_checks.py` locally, this list will be printed but not installed. |
| `alpine_packages` | (Optional) List of extra packages that will be installed on Alpine Linux CI runners. |
| `brew_packages` | (Optional) List of extra packages that will be installed on MacOS CI runners. |
| `choco_packages` | (Optional) List of extra packages that will be installed on Windows CI runners. |
| `debian_packages` | (Optional) List of extra packages that will be installed on Debian-like CI runners. Dependencies that can be provided by other wraps should not be added here because it's better to test that fallbacks work. When running `tools/sanity_checks.py` locally, this list will be printed but not installed. |
| `msys_packages` | (Optional) List of extra packages that will be installed on MSYS CI runners. |
| `python_packages` | (Optional) List of extra Python packages that will be installed on all CI runners. |
| `linux_only` | (Optional) If set to `true`, indicates the wrap should be tested only on Linux CI. |
| `fatal_warnings` | (Optional) If set to `false` removes --fatal-meson-warning. Use this only when there is no other way to fix the warning. |
| `skip_dependency_check` | (Optional) List of platform-specific dependency names that are not always provided by the project. |
Expand Down
Loading