Skip to content

Commit 0ce4c32

Browse files
committed
Extend test timeouts
- .github/workflows/compile.yml: Extend test job's timeout from 3m to 5m - Makefile: Extend test target's timeout from 2m to 4m Signed-off-by: Norio Nomura <norio.nomura@gmail.com>
1 parent d501ba9 commit 0ce4c32

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
test:
5555
needs: formatting-check
5656
runs-on: ${{ matrix.os }}
57-
timeout-minutes: 3
57+
timeout-minutes: 5
5858
strategy:
5959
fail-fast: false
6060
# Can't expand the matrix due to the flakiness of the CI infra

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fmt:
1010

1111
.PHONY: test
1212
test:
13-
go test -p 1 -exec "go run $(PWD)/cmd/codesign" ./... -timeout 2m -v
13+
go test -p 1 -exec "go run $(PWD)/cmd/codesign" ./... -timeout 4m -v
1414

1515
.PHONY: test/run
1616
test/run:

0 commit comments

Comments
 (0)