From 0ea2ef5fa81c72126e038c1a853e46c19bd4767e Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Sun, 9 Jan 2022 10:28:34 +0000 Subject: Add a (conservative) timeout for Windows builds on GitHub Actions (GH-30301) --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f220aaa..f11d51b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -112,6 +112,7 @@ jobs: - uses: actions/checkout@v2 - name: Build CPython run: .\PCbuild\build.bat -e -p Win32 + timeout-minutes: 30 - name: Display build info run: .\python.bat -m test.pythoninfo - name: Tests @@ -130,6 +131,7 @@ jobs: run: echo "::add-matcher::.github/problem-matchers/msvc.json" - name: Build CPython run: .\PCbuild\build.bat -e -p x64 + timeout-minutes: 30 - name: Display build info run: .\python.bat -m test.pythoninfo - name: Tests -- cgit v0.12