From a76fddceb1e10156fabae905c722ebd16751a0db Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Fri, 18 Nov 2022 15:27:49 -0500 Subject: [PATCH] Increase timeouts on builds for some example apps. (#23686) OTA Requestor in particular is hitting the 5 minute timeout quite a bit. --- .github/workflows/darwin.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/darwin.yaml b/.github/workflows/darwin.yaml index 8c3b2231bcf17c..a3eda2ef715b0b 100644 --- a/.github/workflows/darwin.yaml +++ b/.github/workflows/darwin.yaml @@ -107,11 +107,11 @@ jobs: run: | scripts/examples/gn_build_example.sh examples/all-clusters-app/linux out/debug chip_config_network_layer_ble=false - name: Build example OTA Provider - timeout-minutes: 5 + timeout-minutes: 10 run: | scripts/examples/gn_build_example.sh examples/ota-provider-app/linux out/debug chip_config_network_layer_ble=false - name: Build example OTA Requestor - timeout-minutes: 5 + timeout-minutes: 10 run: | scripts/examples/gn_build_example.sh examples/ota-requestor-app/linux out/debug chip_config_network_layer_ble=false - name: Delete Defaults