Skip to content

Commit 1650596

Browse files
mspangpull[bot]
authored andcommitted
Update python constraints.txt (#25441)
Via pip-compile --rebuild --output-file=constraints.txt --strip-extras --resolver=backtracking requirements.txt
1 parent 61014ec commit 1650596

File tree

4 files changed

+194
-97
lines changed

4 files changed

+194
-97
lines changed

.github/workflows/examples-telink.yaml

+37-1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ jobs:
7979
out/telink-tlsr9518adk80d-all-clusters/zephyr/zephyr.elf \
8080
/tmp/bloat_reports/
8181
82+
- name: clean out build output
83+
run: rm -rf ./out
84+
8285
- name: Build example Telink All Clusters Minimal App
8386
run: |
8487
./scripts/run_in_build_env.sh \
@@ -88,6 +91,9 @@ jobs:
8891
out/telink-tlsr9518adk80d-all-clusters-minimal/zephyr/zephyr.elf \
8992
/tmp/bloat_reports/
9093
94+
- name: clean out build output
95+
run: rm -rf ./out
96+
9197
- name: Build example Telink Contact Sensor App
9298
run: |
9399
./scripts/run_in_build_env.sh \
@@ -97,6 +103,9 @@ jobs:
97103
out/telink-tlsr9518adk80d-contact-sensor/zephyr/zephyr.elf \
98104
/tmp/bloat_reports/
99105
106+
- name: clean out build output
107+
run: rm -rf ./out
108+
100109
- name: Build example Telink Lighting App
101110
run: |
102111
./scripts/run_in_build_env.sh \
@@ -106,15 +115,21 @@ jobs:
106115
out/telink-tlsr9518adk80d-light/zephyr/zephyr.elf \
107116
/tmp/bloat_reports/
108117
118+
- name: clean out build output
119+
run: rm -rf ./out
120+
109121
- name: Build example Telink Lighting App with RPC
110122
run: |
111123
./scripts/run_in_build_env.sh \
112124
"./scripts/build/build_examples.py --target 'telink-tlsr9518adk80d-light-rpc' build"
113125
.environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \
114126
telink tlsr9518adk80d lighting-app-rpc \
115-
out/telink-tlsr9518adk80d-light/zephyr/zephyr.elf \
127+
out/telink-tlsr9518adk80d-light-rpc/zephyr/zephyr.elf \
116128
/tmp/bloat_reports/
117129
130+
- name: clean out build output
131+
run: rm -rf ./out
132+
118133
- name: Build example Telink Light Switch App
119134
run: |
120135
./scripts/run_in_build_env.sh \
@@ -124,6 +139,9 @@ jobs:
124139
out/telink-tlsr9518adk80d-light-switch/zephyr/zephyr.elf \
125140
/tmp/bloat_reports/
126141
142+
- name: clean out build output
143+
run: rm -rf ./out
144+
127145
- name: Build example Telink Lock App
128146
run: |
129147
./scripts/run_in_build_env.sh \
@@ -133,6 +151,9 @@ jobs:
133151
out/telink-tlsr9518adk80d-lock/zephyr/zephyr.elf \
134152
/tmp/bloat_reports/
135153
154+
- name: clean out build output
155+
run: rm -rf ./out
156+
136157
- name: Build example Telink OTA Requestor App
137158
run: |
138159
./scripts/run_in_build_env.sh \
@@ -142,6 +163,9 @@ jobs:
142163
out/telink-tlsr9518adk80d-ota-requestor/zephyr/zephyr.elf \
143164
/tmp/bloat_reports/
144165
166+
- name: clean out build output
167+
run: rm -rf ./out
168+
145169
- name: Build example Telink Pump App
146170
run: |
147171
./scripts/run_in_build_env.sh \
@@ -151,6 +175,9 @@ jobs:
151175
out/telink-tlsr9518adk80d-pump/zephyr/zephyr.elf \
152176
/tmp/bloat_reports/
153177
178+
- name: clean out build output
179+
run: rm -rf ./out
180+
154181
- name: Build example Telink Pump Controller App
155182
run: |
156183
./scripts/run_in_build_env.sh \
@@ -160,6 +187,9 @@ jobs:
160187
out/telink-tlsr9518adk80d-pump-controller/zephyr/zephyr.elf \
161188
/tmp/bloat_reports/
162189
190+
- name: clean out build output
191+
run: rm -rf ./out
192+
163193
- name: Build example Telink Temperature Measurement App
164194
run: |
165195
./scripts/run_in_build_env.sh \
@@ -169,6 +199,9 @@ jobs:
169199
out/telink-tlsr9518adk80d-temperature-measurement/zephyr/zephyr.elf \
170200
/tmp/bloat_reports/
171201
202+
- name: clean out build output
203+
run: rm -rf ./out
204+
172205
- name: Build example Telink Thermostat App
173206
run: |
174207
./scripts/run_in_build_env.sh \
@@ -178,6 +211,9 @@ jobs:
178211
out/telink-tlsr9518adk80d-thermostat/zephyr/zephyr.elf \
179212
/tmp/bloat_reports/
180213
214+
- name: clean out build output
215+
run: rm -rf ./out
216+
181217
- name: Uploading Size Reports
182218
uses: actions/upload-artifact@v3
183219
if: ${{ !env.ACT }}

0 commit comments

Comments
 (0)