Skip to content

Commit

Permalink
venv: Add support for virtual environment specs
Browse files Browse the repository at this point in the history
Adds handling for a venv key in the manifest. This key will then be
used to provide virtual environment metadata to a west bootstrap command.
The metadata includes:
- A virtual environment name
- A list of python requirement files, individual packages, constraints,
  and local directories.
- A mapping of binary requirements and which URLs can be used to find
  them. These include architecture and OS specific mappings.

Signed-off-by: Yuval Peress <peress@google.com>
  • Loading branch information
yperess committed Sep 18, 2024
1 parent c399c01 commit 91d41dd
Show file tree
Hide file tree
Showing 3 changed files with 480 additions and 1 deletion.
72 changes: 72 additions & 0 deletions src/west/manifest-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,78 @@ mapping:
required: true
type: str

# The venv key specifies requirements for the build environment for Zephyr
# West will handle merging any definitions into your binary dependency
# strings where allowed.
# Example:
#
# urls:
# "windows-*":
# url: "https://my.download.server/win/${arch}.zip"
#
# The above will match any architecture for the windows OS and generate a url
# replacing ${arch} with the current machine's underlying architecture. West
# will automatically provide a few definitions:
# - os: The current OS (one of 'windows', 'linux', or 'mac')
# - arch: The current architecture. This value is standardized such that
# x86_64 is represented as amd64 and aarch64 as arm64. All others match
# Python's `platform.machine()`
# - platform: A concatenation of ${os}-${arch}
venv:
required: false
type: map
mapping:
definitions:
required: false
type: map
mapping:
regex;(.*):
type: str
name:
required: false
type: str
bin-requirements:
required: false
type: map
mapping:
regex;(.*):
type: map
mapping:
definitions:
required: false
type: map
mapping:
regex;(.*):
type: str
urls:
required: true
type: map
mapping:
regex;(.*):
type: map
mapping:
url:
required: true
type: str
paths:
required: false
type: seq
sequence:
- type: str
py-requirements:
required: false
type: seq
sequence:
- type: map
mapping:
pattern:
required: true
type: str
type:
required: true
type: str
enum: ['directory', 'constraints', 'package', 'requirements']

# The "projects" key specifies a sequence of "projects", each of which has a
# remote, and may specify additional configuration.
#
Expand Down
Loading

0 comments on commit 91d41dd

Please sign in to comment.