Skip to content

Commit

Permalink
Updating java timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
woody-apple authored and pull[bot] committed Mar 21, 2024
1 parent 131da2a commit 26b0651
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/java-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,19 +79,19 @@ jobs:
.environment/gn_out/.ninja_log
.environment/pigweed-venv/*.log
- name: Generate unit tests
timeout-minutes: 1
timeout-minutes: 2
run: |
scripts/run_in_build_env.sh \
'./scripts/build/build_examples.py \
--target linux-x64-tests \
gen \
'
- name: Build unit tests
timeout-minutes: 25
timeout-minutes: 30
run: scripts/run_in_build_env.sh 'ninja -C out/linux-x64-tests src:java_controller_tests'

- name: Run unit tests
timeout-minutes: 10
timeout-minutes: 15
# TODO: this direct path loading is not maintainable. Our build system should define and
# support test classes.
run: |
Expand All @@ -103,7 +103,7 @@ jobs:
chip.tlv.TlvReaderTest \
chip.jsontlv.JsonToTlvToJsonTest
- name: Build Java Matter Controller and all clusters app
timeout-minutes: 50
timeout-minutes: 60
run: |
scripts/run_in_build_env.sh './scripts/build_python.sh --install_wheel build-env'
./scripts/run_in_build_env.sh \
Expand All @@ -113,7 +113,7 @@ jobs:
build \
"
- name: Run Discover Commissionables Test
timeout-minutes: 10
timeout-minutes: 15
run: |
scripts/run_in_build_env.sh \
'./scripts/tests/run_java_test.py \
Expand All @@ -125,7 +125,7 @@ jobs:
--factoryreset \
'
- name: Run Pairing Onnetwork Test
timeout-minutes: 10
timeout-minutes: 15
run: |
scripts/run_in_build_env.sh \
'./scripts/tests/run_java_test.py \
Expand All @@ -137,7 +137,7 @@ jobs:
--factoryreset \
'
- name: Run IM Invoke Test
timeout-minutes: 10
timeout-minutes: 15
run: |
scripts/run_in_build_env.sh \
'./scripts/tests/run_java_test.py \
Expand All @@ -149,7 +149,7 @@ jobs:
--factoryreset \
'
- name: Run IM Read Test
timeout-minutes: 10
timeout-minutes: 15
run: |
scripts/run_in_build_env.sh \
'./scripts/tests/run_java_test.py \
Expand All @@ -161,7 +161,7 @@ jobs:
--factoryreset \
'
- name: Run IM Write Test
timeout-minutes: 10
timeout-minutes: 15
run: |
scripts/run_in_build_env.sh \
'./scripts/tests/run_java_test.py \
Expand All @@ -173,7 +173,7 @@ jobs:
--factoryreset \
'
- name: Run IM Subscribe Test
timeout-minutes: 10
timeout-minutes: 15
run: |
scripts/run_in_build_env.sh \
'./scripts/tests/run_java_test.py \
Expand All @@ -185,7 +185,7 @@ jobs:
--factoryreset \
'
- name: Run Pairing AlreadyDiscovered Test
timeout-minutes: 10
timeout-minutes: 15
run: |
scripts/run_in_build_env.sh \
'./scripts/tests/run_java_test.py \
Expand All @@ -197,7 +197,7 @@ jobs:
--factoryreset \
'
- name: Run Pairing Address-PaseOnly Test
timeout-minutes: 10
timeout-minutes: 15
run: |
scripts/run_in_build_env.sh \
'./scripts/tests/run_java_test.py \
Expand All @@ -209,7 +209,7 @@ jobs:
--factoryreset \
'
- name: Run Pairing SetupQRCode Test
timeout-minutes: 10
timeout-minutes: 15
run: |
scripts/run_in_build_env.sh \
'./scripts/tests/run_java_test.py \
Expand All @@ -221,7 +221,7 @@ jobs:
--factoryreset \
'
- name: Run Pairing ManualCode Test
timeout-minutes: 10
timeout-minutes: 15
run: |
scripts/run_in_build_env.sh \
'./scripts/tests/run_java_test.py \
Expand Down

0 comments on commit 26b0651

Please sign in to comment.