From 35f11d00201ae0c79968514f5ff137d6c3b2b946 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Wed, 4 Aug 2021 17:00:02 -0400 Subject: [PATCH] Increase timeout to 20 minutes for regular builds (#8799) --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 030a07ca3c4daf..8da8b3dbef5230 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -87,7 +87,7 @@ jobs: scripts/build/gn_gen.sh --args="$GN_ARGS" - name: Run Build - timeout-minutes: 10 + timeout-minutes: 20 run: scripts/build/gn_build.sh - name: Run Tests timeout-minutes: 2 @@ -114,14 +114,14 @@ jobs: run: scripts/build/gn_gen.sh --args="chip_detail_logging=false" - name: Run Build Without Detail Logging if: ${{ matrix.type == 'gcc_debug' }} - timeout-minutes: 10 + timeout-minutes: 20 run: scripts/build/gn_build.sh - name: Setup Build Without Progress Logging if: ${{ matrix.type == 'gcc_debug' }} run: scripts/build/gn_gen.sh --args="chip_detail_logging=false chip_progress_logging=false" - name: Run Build Without Progress Logging if: ${{ matrix.type == 'gcc_debug' }} - timeout-minutes: 10 + timeout-minutes: 20 run: scripts/build/gn_build.sh build_darwin: name: Build on Darwin