Skip to content

Commit

Permalink
[CI] Set build timeout to 60 minutes for normal tests and 3 hours for…
Browse files Browse the repository at this point in the history
… slow tests.
  • Loading branch information
vyazelenko committed Feb 5, 2025
1 parent 127cda9 commit a4e4997
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
java-build:
name: Java ${{ matrix.java }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -90,6 +91,7 @@ jobs:
csharp-build:
name: C# ${{ matrix.dotnet }}
runs-on: ubuntu-24.04
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -140,6 +142,7 @@ jobs:
cpp-gcc-2004-build:
name: C++ GCC ${{ matrix.version }} (Ubuntu 20.04)
runs-on: ubuntu-20.04
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -179,6 +182,7 @@ jobs:
cpp-gcc-2404-build:
name: C++ GCC ${{ matrix.version }} (Ubuntu 24.04)
runs-on: ubuntu-24.04
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -219,6 +223,7 @@ jobs:
cpp-clang-2004-build:
name: C++ Clang ${{ matrix.version }} (Ubuntu 20.04)
runs-on: ubuntu-20.04
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -261,6 +266,7 @@ jobs:
cpp-clang-2404-build:
name: C++ Clang ${{ matrix.version }} (Ubuntu 24.04)
runs-on: ubuntu-24.04
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -303,6 +309,7 @@ jobs:
cpp-clang-macos-build:
name: C++ Xcode ${{ matrix.version }} (macOS)
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -338,6 +345,7 @@ jobs:
cpp-msvc-build:
name: C++ MSVC (Windows)
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -373,6 +381,7 @@ jobs:
rust-build:
name: Rust ${{ matrix.rust }}
runs-on: ubuntu-24.04
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -408,6 +417,7 @@ jobs:
golang-build:
name: Golang ${{ matrix.version }}
runs-on: ubuntu-24.04
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/slow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
property-tests:
name: Property tests
runs-on: ubuntu-24.04
timeout-minutes: 180
strategy:
matrix:
java: [ '21' ]
Expand Down

0 comments on commit a4e4997

Please sign in to comment.