Skip to content

Commit 2b6423d

Browse files
andy31415andreilitvinrestyled-commits
authored
Make main build python env not depend on all platform build requirements. (#27267)
* Attempt to separate out requirements, so that bootstrap/activate can selectively add more things * A few more requirements updates * Also update standalone build requirements * Add some intermediate requirements text files * Updated more references to requirements.txt * Preserve environment root * Fix memory txt, make platform bootstrap configurable * Make sure constraints are being used for pip install requirements for various platforms * Fix activate not installing additional stuff unless asked for * Restyled by gn * Restyled by prettier-json * Restyled by shellharden * Restyled by shfmt * Update comments * Preserve CIPD_CACHE_DIR ...we may want to cache this instead of the entire .environment at some point --------- Co-authored-by: Andrei Litvin <andreilitvin@google.com> Co-authored-by: Restyled.io <commits@restyled.io>
1 parent f99a71a commit 2b6423d

File tree

15 files changed

+87
-47
lines changed

15 files changed

+87
-47
lines changed

.gn

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ default_args = {
2727
pw_unit_test_AUTOMATIC_RUNNER = "$dir_pigweed/targets/host/run_test"
2828

2929
pw_build_PIP_CONSTRAINTS = [ "//scripts/setup/constraints.txt" ]
30-
pw_build_PIP_REQUIREMENTS = [ "//scripts/setup/requirements.txt" ]
30+
pw_build_PIP_REQUIREMENTS = [ "//scripts/setup/requirements.build.txt" ]
3131

3232
# GN target to use for the default Python build venv.
3333
pw_build_PYTHON_BUILD_VENV = "//:matter_build_venv"

config/esp32/.gn

+4-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ default_args = {
2626

2727
pw_build_PIP_CONSTRAINTS =
2828
[ "//third_party/connectedhomeip/scripts/setup/constraints.txt" ]
29-
pw_build_PIP_REQUIREMENTS =
30-
[ "//third_party/connectedhomeip/scripts/setup/requirements.txt" ]
29+
pw_build_PIP_REQUIREMENTS = [
30+
"//third_party/connectedhomeip/scripts/setup/requirements.build.txt",
31+
"//third_party/connectedhomeip/scripts/setup/requirements.esp32.txt",
32+
]
3133

3234
import("//args.gni")
3335
}

config/standalone/args.gni

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ import("//build_overrides/chip.gni")
1919
chip_build_tests = false
2020

2121
pw_build_PIP_CONSTRAINTS = [ "${chip_root}/scripts/setup/constraints.txt" ]
22-
pw_build_PIP_REQUIREMENTS = [ "${chip_root}/scripts/setup/requirements.txt" ]
22+
pw_build_PIP_REQUIREMENTS =
23+
[ "${chip_root}/scripts/setup/requirements.build.txt" ]

examples/common/pigweed/rpc_console/.gn

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ default_args = {
2323
pw_build_PIP_CONSTRAINTS =
2424
[ "//third_party/connectedhomeip/scripts/setup/constraints.txt" ]
2525
pw_build_PIP_REQUIREMENTS =
26-
[ "//third_party/connectedhomeip/scripts/setup/requirements.txt" ]
26+
[ "//third_party/connectedhomeip/scripts/setup/requirements.build.txt" ]
2727

2828
pw_build_USE_NEW_PYTHON_BUILD = true
2929
}

scripts/setup/bootstrap.sh

+55-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,38 @@
1414
# limitations under the License.
1515
#
1616

17+
_install_additional_pip_requirements() {
18+
_SETUP_PLATFORM=$1
19+
shift
20+
21+
# figure out additional pip install items
22+
while [[ $# -gt 0 ]]; do
23+
case $1 in
24+
-p | --platform)
25+
_SETUP_PLATFORM=$2
26+
shift # argument
27+
shift # value
28+
;;
29+
*)
30+
shift
31+
;;
32+
esac
33+
done
34+
35+
if ! [ -z "$_SETUP_PLATFORM" ]; then
36+
IFS="," read -r -a _PLATFORMS <<<"$_SETUP_PLATFORM"
37+
for platform in "${_PLATFORMS[@]}"; do
38+
# Allow none as an alias of nothing extra installed (like -p none)
39+
if [ "$platform" != "none" ]; then
40+
echo "Installing pip requirements for $platform..."
41+
pip install -q \
42+
-r "$_CHIP_ROOT/scripts/setup/requirements.$platform.txt" \
43+
-c "$_CHIP_ROOT/scripts/setup/constraints.txt"
44+
fi
45+
done
46+
fi
47+
}
48+
1749
_bootstrap_or_activate() {
1850
if [ -n "$BASH" ]; then
1951
local _BOOTSTRAP_PATH="${BASH_SOURCE[0]}"
@@ -24,7 +56,7 @@ _bootstrap_or_activate() {
2456
local _BOOTSTRAP_NAME="${_BOOTSTRAP_PATH##*/}"
2557
local _BOOTSTRAP_DIR="${_BOOTSTRAP_PATH%/*}"
2658
# Strip off the 'scripts[/setup]' directory, leaving the root of the repo.
27-
local _CHIP_ROOT="$(cd "${_BOOTSTRAP_DIR%/setup}/.." && pwd)"
59+
_CHIP_ROOT="$(cd "${_BOOTSTRAP_DIR%/setup}/.." && pwd)"
2860

2961
local _CONFIG_FILE="scripts/setup/environment.json"
3062

@@ -91,21 +123,42 @@ EOF
91123
--config-file "$_CHIP_ROOT/$_CONFIG_FILE" \
92124
--virtualenv-gn-out-dir "$_PW_ACTUAL_ENVIRONMENT_ROOT/gn_out"
93125
pw_finalize bootstrap "$_SETUP_SH"
126+
_ACTION_TAKEN="bootstrap"
94127
else
95128
pw_activate
96129
pw_finalize activate "$_SETUP_SH"
130+
_ACTION_TAKEN="activate"
97131
fi
98132
}
99133

134+
# remember PW_ENVIRONMENT_ROOT so that things like another
135+
# bootstrap or run_in_build_env.sh can be executed in a build env
136+
_ORIGINAL_PW_ENVIRONMENT_ROOT="$PW_ENVIRONMENT_ROOT"
137+
100138
_bootstrap_or_activate "$0"
139+
140+
if [ "$_ACTION_TAKEN" = "bootstrap" ]; then
141+
# By default, install all extra pip dependencies even if slow. -p/--platform
142+
# arguments may override this default.
143+
_install_additional_pip_requirements "all" "$@"
144+
else
145+
_install_additional_pip_requirements "none" "$@"
146+
fi
147+
101148
unset -f _bootstrap_or_activate
149+
unset -f _install_additional_pip_requirements
102150

103151
pw_cleanup
104152

153+
unset _ACTION_TAKEN
154+
unset _CHIP_ROOT
105155
unset PW_CIPD_INSTALL_DIR
106-
unset CIPD_CACHE_DIR
107156
unset _PW_BANNER_FUNC
108157
unset _PW_TEXT
109158
unset PW_DOCTOR_SKIP_CIPD_CHECKS
110159

111160
unset -f _chip_bootstrap_banner
161+
162+
if ! [ -z "$_ORIGINAL_PW_ENVIRONMENT_ROOT" ]; then
163+
export PW_ENVIRONMENT_ROOT="$_ORIGINAL_PW_ENVIRONMENT_ROOT"
164+
fi

scripts/setup/constraints.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is autogenerated by pip-compile with Python 3.10
33
# by the following command:
44
#
5-
# pip-compile --output-file=constraints.txt --resolver=backtracking --strip-extras requirements.txt
5+
# pip-compile --output-file=constraints.txt --resolver=backtracking --strip-extras requirements.all.txt
66
#
77
anytree==2.8.0
88
# via -r requirements.txt

scripts/setup/environment.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"virtualenv": {
99
"gn_root": ".",
1010
"gn_targets": [":python_packages.install"],
11-
"requirements": ["scripts/setup/requirements.txt"],
11+
"requirements": ["scripts/setup/requirements.build.txt"],
1212
"constraints": ["scripts/setup/constraints.txt"],
1313
"gn_args": ["chip_crypto=\"boringssl\""]
1414
},

scripts/setup/environment_no_cipd.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"virtualenv": {
33
"gn_root": ".",
44
"gn_targets": [":python_packages.install"],
5-
"requirements": ["scripts/setup/requirements.txt"],
5+
"requirements": ["scripts/setup/requirements.build.txt"],
66
"constraints": ["scripts/setup/constraints.txt"],
77
"gn_args": ["chip_crypto=\"boringssl\""]
88
},

scripts/setup/requirements.txt scripts/setup/requirements.all.txt

+4-35
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,16 @@ virtualenv
88
-c constraints.esp32.txt
99
-r requirements.esp32.txt
1010

11-
# mbed-os
1211
-r requirements.mbed.txt
13-
14-
# bouffalolab
1512
-r requirements.bouffalolab.txt
16-
17-
# openiotsdk
1813
-r requirements.openiotsdk.txt
19-
20-
# Infineon
2114
-r requirements.infineon.txt
22-
23-
# TI
2415
-r requirements.ti.txt
25-
26-
# Telink
2716
-r requirements.telink.txt
28-
29-
# cirque tests
30-
requests>=2.24.0
17+
-r requirements.zephyr.txt
18+
-r requirements.cirque.txt
19+
-r requirements.memory.txt
20+
-r requirements.yaml_tests.txt
3121

3222
# device controller wheel package
3323
wheel; sys_platform == 'linux'
@@ -40,17 +30,6 @@ pyobjc-framework-corebluetooth; sys_platform == 'darwin'
4030
portpicker
4131
mobly
4232

43-
# zephyr
44-
west>=0.12.0
45-
intelhex
46-
cbor
47-
cbor2
48-
jsonschema
49-
50-
# happy tests
51-
lockfile
52-
psutil >= 5.7.3
53-
5433
# pigweed
5534
ipython
5635
appnope
@@ -63,13 +42,6 @@ mypy-protobuf==3.2.0
6342
protobuf==3.20.1
6443
types-protobuf==3.19.22
6544

66-
# scripts/tools/memory
67-
anytree
68-
cxxfilt
69-
ghapi
70-
pandas ; platform_machine != 'aarch64' and platform_machine != 'arm64'
71-
tabulate
72-
7345
cryptography
7446

7547
# python unit tests
@@ -78,6 +50,3 @@ colorama
7850
# update tornado for pw_watch
7951
tornado
8052

81-
# YAML test harness
82-
diskcache
83-
websockets

scripts/setup/requirements.cirque.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
requests>=2.24.0

scripts/setup/requirements.memory.txt

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# scripts/tools/memory
2+
anytree
3+
cxxfilt
4+
ghapi
5+
pandas ; platform_machine != 'aarch64' and platform_machine != 'arm64'
6+
tabulate
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
diskcache
2+
websockets

scripts/setup/requirements.zephyr.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
west>=0.12.0
2+
intelhex
3+
cbor
4+
cbor2
5+
jsonschema

scripts/tools/telink/readme.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ tool.
3535

3636
```shell
3737
cd path/to/connectedhomeip/scripts/tools/telink/
38-
python3 -m pip install -r requirements.txt
38+
python3 -m pip install -r requirements.build.txt
39+
python3 -m pip install -r requirements.telink.txt
3940
```
4041

4142
## Usage

src/test_driver/efr32/.gn

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ default_args = {
2727
pw_build_PIP_CONSTRAINTS =
2828
[ "//third_party/connectedhomeip/scripts/setup/constraints.txt" ]
2929
pw_build_PIP_REQUIREMENTS =
30-
[ "//third_party/connectedhomeip/scripts/setup/requirements.txt" ]
30+
[ "//third_party/connectedhomeip/scripts/setup/requirements.build.txt" ]
3131

3232
import("//args.gni")
3333
}

0 commit comments

Comments
 (0)