Skip to content

Commit 2aa2234

Browse files
committed
Merge pull request #101712 from Repiteo/ci/timeout
CI: Tighten timeout period for all jobs
2 parents 9630d4e + 3256301 commit 2aa2234

8 files changed

+8
-0
lines changed

.github/workflows/android_builds.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
build-android:
1313
runs-on: ubuntu-24.04
1414
name: ${{ matrix.name }}
15+
timeout-minutes: 60
1516
strategy:
1617
fail-fast: false
1718
matrix:

.github/workflows/godot_cpp_test.yml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
godot-cpp-tests:
1414
runs-on: ubuntu-24.04
1515
name: Build and test Godot CPP
16+
timeout-minutes: 30
1617
steps:
1718
- name: Checkout
1819
uses: actions/checkout@v4

.github/workflows/ios_builds.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
ios-template:
1313
runs-on: macos-latest
1414
name: Template (target=template_release)
15+
timeout-minutes: 60
1516

1617
steps:
1718
- name: Checkout

.github/workflows/linux_builds.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
# Stay one LTS before latest to increase portability of Linux artifacts.
1818
runs-on: ubuntu-22.04
1919
name: ${{ matrix.name }}
20+
timeout-minutes: 120
2021
strategy:
2122
fail-fast: false
2223
matrix:

.github/workflows/macos_builds.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
build-macos:
1313
runs-on: macos-latest
1414
name: ${{ matrix.name }}
15+
timeout-minutes: 120
1516
strategy:
1617
fail-fast: false
1718
matrix:

.github/workflows/static_checks.yml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ jobs:
66
static-checks:
77
name: Code style, file formatting, and docs
88
runs-on: ubuntu-24.04
9+
timeout-minutes: 30
910
steps:
1011
- name: Checkout
1112
uses: actions/checkout@v4

.github/workflows/web_builds.yml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
web-template:
1414
runs-on: ubuntu-24.04
1515
name: ${{ matrix.name }}
16+
timeout-minutes: 60
1617
strategy:
1718
fail-fast: false
1819
matrix:

.github/workflows/windows_builds.yml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
# Windows 10 with latest image
1616
runs-on: windows-latest
1717
name: ${{ matrix.name }}
18+
timeout-minutes: 120
1819
strategy:
1920
fail-fast: false
2021
matrix:

0 commit comments

Comments
 (0)