diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2022-01-09 10:28:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-09 10:28:34 (GMT) |
commit | 0ea2ef5fa81c72126e038c1a853e46c19bd4767e (patch) | |
tree | 9d6d417484c6a84c2f6270f2353efef79972196a /.github/workflows/build.yml | |
parent | 3d11c1b8b49800c5c4c295953cc3abf577f6065a (diff) | |
download | cpython-0ea2ef5fa81c72126e038c1a853e46c19bd4767e.zip cpython-0ea2ef5fa81c72126e038c1a853e46c19bd4767e.tar.gz cpython-0ea2ef5fa81c72126e038c1a853e46c19bd4767e.tar.bz2 |
Add a (conservative) timeout for Windows builds on GitHub Actions (GH-30301)
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
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 |