Skip to content

Commit

Permalink
Integrate report into app engine
Browse files Browse the repository at this point in the history
  • Loading branch information
soares-sergio committed Dec 19, 2024
1 parent e631b95 commit 266d017
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions integrations/appengine/webapp_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ handlers:
- url: /
static_files: html/index.html
upload: html/index.html
- url: /conformance/
static_files: html/conformance_report.html
upload: html/conformance_report.html
- url: /(.*)
static_files: html/\1
upload: html/(.*)
9 changes: 9 additions & 0 deletions integrations/compute_engine/startup-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,17 @@ cd /tmp
rm -rf connectedhomeip
git clone --recurse-submodules https://github.com/project-chip/connectedhomeip.git
cd connectedhomeip
# Generate coverage report
./scripts/build_coverage.sh 2>&1 | tee /tmp/matter_build.log

# Generate Example Conformance Report
python3 scripts/examples/conformance_report.py

cd out/coverage/coverage

# Copy conformance report
cp /tmp/comformance_report/conformance_report.html html

gcloud app deploy webapp_config.yaml 2>&1 | tee /tmp/matter_publish.log
versions=$(gcloud app versions list \
--service default \
Expand Down

0 comments on commit 266d017

Please sign in to comment.