mirror of
https://github.com/godotengine/godot.git
synced 2025-01-22 10:32:54 -05:00
CI: Tighten timeout period for all jobs
This commit is contained in:
parent
9630d4e2fc
commit
32563011e1
8 changed files with 8 additions and 0 deletions
1
.github/workflows/android_builds.yml
vendored
1
.github/workflows/android_builds.yml
vendored
|
@ -12,6 +12,7 @@ jobs:
|
||||||
build-android:
|
build-android:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
name: ${{ matrix.name }}
|
name: ${{ matrix.name }}
|
||||||
|
timeout-minutes: 60
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
|
1
.github/workflows/godot_cpp_test.yml
vendored
1
.github/workflows/godot_cpp_test.yml
vendored
|
@ -13,6 +13,7 @@ jobs:
|
||||||
godot-cpp-tests:
|
godot-cpp-tests:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
name: Build and test Godot CPP
|
name: Build and test Godot CPP
|
||||||
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
1
.github/workflows/ios_builds.yml
vendored
1
.github/workflows/ios_builds.yml
vendored
|
@ -12,6 +12,7 @@ jobs:
|
||||||
ios-template:
|
ios-template:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
name: Template (target=template_release)
|
name: Template (target=template_release)
|
||||||
|
timeout-minutes: 60
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
1
.github/workflows/linux_builds.yml
vendored
1
.github/workflows/linux_builds.yml
vendored
|
@ -17,6 +17,7 @@ jobs:
|
||||||
# Stay one LTS before latest to increase portability of Linux artifacts.
|
# Stay one LTS before latest to increase portability of Linux artifacts.
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
name: ${{ matrix.name }}
|
name: ${{ matrix.name }}
|
||||||
|
timeout-minutes: 120
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
|
1
.github/workflows/macos_builds.yml
vendored
1
.github/workflows/macos_builds.yml
vendored
|
@ -12,6 +12,7 @@ jobs:
|
||||||
build-macos:
|
build-macos:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
name: ${{ matrix.name }}
|
name: ${{ matrix.name }}
|
||||||
|
timeout-minutes: 120
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
|
1
.github/workflows/static_checks.yml
vendored
1
.github/workflows/static_checks.yml
vendored
|
@ -6,6 +6,7 @@ jobs:
|
||||||
static-checks:
|
static-checks:
|
||||||
name: Code style, file formatting, and docs
|
name: Code style, file formatting, and docs
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
1
.github/workflows/web_builds.yml
vendored
1
.github/workflows/web_builds.yml
vendored
|
@ -13,6 +13,7 @@ jobs:
|
||||||
web-template:
|
web-template:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
name: ${{ matrix.name }}
|
name: ${{ matrix.name }}
|
||||||
|
timeout-minutes: 60
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
|
1
.github/workflows/windows_builds.yml
vendored
1
.github/workflows/windows_builds.yml
vendored
|
@ -15,6 +15,7 @@ jobs:
|
||||||
# Windows 10 with latest image
|
# Windows 10 with latest image
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
name: ${{ matrix.name }}
|
name: ${{ matrix.name }}
|
||||||
|
timeout-minutes: 120
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
|
|
Loading…
Reference in a new issue