Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the path of chip-all-clusters-app into scripts/tests/test_suit… #7638

Merged
merged 1 commit into from
Jun 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Build all clusters app
timeout-minutes: 5
run: |
scripts/examples/gn_build_example.sh examples/all-clusters-app/linux out/debug chip_config_network_layer_ble=false
scripts/examples/gn_build_example.sh examples/all-clusters-app/linux out/debug/standalone/ chip_config_network_layer_ble=false
- name: Build chip-tool
timeout-minutes: 5
run: |
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
- name: Run Build Test Server
timeout-minutes: 5
run: |
scripts/examples/gn_build_example.sh examples/all-clusters-app/linux out/debug chip_config_network_layer_ble=false
scripts/examples/gn_build_example.sh examples/all-clusters-app/linux out/debug/standalone/ chip_config_network_layer_ble=false
- name: Build chip-tool
timeout-minutes: 5
run: |
Expand Down
2 changes: 1 addition & 1 deletion scripts/tests/test_suites.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ for j in "${iter_array[@]}"; do
rm -rf /tmp/all-clusters-log
rm -rf /tmp/pid
(
stdbuf -o0 out/debug/chip-all-clusters-app &
stdbuf -o0 out/debug/standalone/chip-all-clusters-app &
echo $! >&3
) 3>/tmp/pid | tee /tmp/all-clusters-log &
while ! grep -q "Server Listening" /tmp/all-clusters-log; do
Expand Down