summaryrefslogtreecommitdiff
path: root/.github/workflows/mingw.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-04 11:58:32 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-04 12:16:31 +0900
commite25ad5475c235b51395fe14edf212c85fe3e17fe (patch)
treebdcfe4495c341335433e172ae041a27cfdcc9b10 /.github/workflows/mingw.yml
parent31332cf469b4e63b7469971e2ae546e59621bc37 (diff)
Shorten timeouts on macOS and MinGW
From recent results, `check` and `test-all` will finish within 10 minutes on macOS or 30 minutes on MinGW, otherwise time out.
Diffstat (limited to '.github/workflows/mingw.yml')
-rw-r--r--.github/workflows/mingw.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index d98f532cd7..7ccf5f0b61 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -87,7 +87,7 @@ jobs:
make -j $jobs update-gems
- name: make all
- timeout-minutes: 40
+ timeout-minutes: 20
run: |
$jobs = [int](2 * $env:NUMBER_OF_PROCESSORS)
make -j $jobs
@@ -108,7 +108,7 @@ jobs:
make test
- name: test-all
- timeout-minutes: 60
+ timeout-minutes: 30
run: |
# Actions uses UTF8, causes test failures, similar to normal OS setup
$PSDefaultParameterValues['*:Encoding'] = 'utf8'