Skip to content

Commit

Permalink
Update python constraints.txt (#25441)
Browse files Browse the repository at this point in the history
Via

  pip-compile --rebuild --output-file=constraints.txt --strip-extras --resolver=backtracking requirements.txt
  • Loading branch information
mspang authored and pull[bot] committed Jun 24, 2023
1 parent bc4cfd7 commit 5f9dfdb
Show file tree
Hide file tree
Showing 4 changed files with 194 additions and 97 deletions.
38 changes: 37 additions & 1 deletion .github/workflows/examples-telink.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ jobs:
out/telink-tlsr9518adk80d-all-clusters/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Build example Telink All Clusters Minimal App
run: |
./scripts/run_in_build_env.sh \
Expand All @@ -88,6 +91,9 @@ jobs:
out/telink-tlsr9518adk80d-all-clusters-minimal/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Build example Telink Contact Sensor App
run: |
./scripts/run_in_build_env.sh \
Expand All @@ -97,6 +103,9 @@ jobs:
out/telink-tlsr9518adk80d-contact-sensor/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Build example Telink Lighting App
run: |
./scripts/run_in_build_env.sh \
Expand All @@ -106,15 +115,21 @@ jobs:
out/telink-tlsr9518adk80d-light/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Build example Telink Lighting App with RPC
run: |
./scripts/run_in_build_env.sh \
"./scripts/build/build_examples.py --target 'telink-tlsr9518adk80d-light-rpc' build"
.environment/pigweed-venv/bin/python3 scripts/tools/memory/gh_sizes.py \
telink tlsr9518adk80d lighting-app-rpc \
out/telink-tlsr9518adk80d-light/zephyr/zephyr.elf \
out/telink-tlsr9518adk80d-light-rpc/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Build example Telink Light Switch App
run: |
./scripts/run_in_build_env.sh \
Expand All @@ -124,6 +139,9 @@ jobs:
out/telink-tlsr9518adk80d-light-switch/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Build example Telink Lock App
run: |
./scripts/run_in_build_env.sh \
Expand All @@ -133,6 +151,9 @@ jobs:
out/telink-tlsr9518adk80d-lock/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Build example Telink OTA Requestor App
run: |
./scripts/run_in_build_env.sh \
Expand All @@ -142,6 +163,9 @@ jobs:
out/telink-tlsr9518adk80d-ota-requestor/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Build example Telink Pump App
run: |
./scripts/run_in_build_env.sh \
Expand All @@ -151,6 +175,9 @@ jobs:
out/telink-tlsr9518adk80d-pump/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Build example Telink Pump Controller App
run: |
./scripts/run_in_build_env.sh \
Expand All @@ -160,6 +187,9 @@ jobs:
out/telink-tlsr9518adk80d-pump-controller/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Build example Telink Temperature Measurement App
run: |
./scripts/run_in_build_env.sh \
Expand All @@ -169,6 +199,9 @@ jobs:
out/telink-tlsr9518adk80d-temperature-measurement/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Build example Telink Thermostat App
run: |
./scripts/run_in_build_env.sh \
Expand All @@ -178,6 +211,9 @@ jobs:
out/telink-tlsr9518adk80d-thermostat/zephyr/zephyr.elf \
/tmp/bloat_reports/
- name: clean out build output
run: rm -rf ./out

- name: Uploading Size Reports
uses: actions/upload-artifact@v3
if: ${{ !env.ACT }}
Expand Down
Loading

0 comments on commit 5f9dfdb

Please sign in to comment.