Skip to content

Commit 0de7904

Browse files
committed
ci: raise test timeout
1 parent d9618f0 commit 0de7904

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/linux-git-devel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ jobs:
6161
path: git-branchless
6262

6363
- name: Run Rust tests on Git `master`
64-
timeout-minutes: 10
64+
timeout-minutes: 15
6565
run: |
6666
export TEST_GIT="$PWD"/git-master/git
6767
export TEST_GIT_EXEC_PATH=$(dirname "$TEST_GIT")
6868
(cd git-branchless && cargo test --all-features --examples --tests --workspace)
6969
7070
- name: Run Rust tests on Git `next`
71-
timeout-minutes: 10
71+
timeout-minutes: 15
7272
run: |
7373
export TEST_GIT="$PWD"/git-next/git
7474
export TEST_GIT_EXEC_PATH=$(dirname "$TEST_GIT")

.github/workflows/linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,15 @@ jobs:
8585

8686
# Don't test benches.
8787
- name: Run Rust tests (all features)
88-
timeout-minutes: 10
88+
timeout-minutes: 15
8989
run: |
9090
export TEST_GIT="$PWD"/git
9191
export TEST_GIT_EXEC_PATH=$(dirname "$TEST_GIT")
9292
cargo test --all-features --examples --tests --workspace
9393
9494
# Note that `--doc` can't be combined with other tests.
9595
- name: Run Rust doc-tests (all features)
96-
timeout-minutes: 10
96+
timeout-minutes: 15
9797
run: |
9898
export TEST_GIT="$PWD"/git
9999
export TEST_GIT_EXEC_PATH=$(dirname "$TEST_GIT")
@@ -103,7 +103,7 @@ jobs:
103103
run: cargo build --no-default-features --all-targets --workspace
104104

105105
- name: Run Rust tests (no default features)
106-
timeout-minutes: 10
106+
timeout-minutes: 15
107107
run: |
108108
export TEST_GIT="$PWD"/git
109109
export TEST_GIT_EXEC_PATH=$(dirname "$TEST_GIT")

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: cargo build --benches --tests
3838

3939
- name: Run tests
40-
timeout-minutes: 10
40+
timeout-minutes: 15
4141
run: |
4242
export RUST_BACKTRACE=1
4343
export TEST_GIT=$(which git)

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: cargo build --all-targets --workspace
3131

3232
- name: Run tests
33-
timeout-minutes: 10
33+
timeout-minutes: 15
3434
run: |
3535
$env:TEST_GIT='C:\Program Files\Git\cmd\git.exe'
3636
$env:TEST_GIT_EXEC_PATH='C:\Program Files\Git\cmd'

0 commit comments

Comments
 (0)