summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMSP-Greg <MSP-Greg@users.noreply.github.com>2019-12-31 11:35:43 -0600
committerTakashi Kokubun <takashikkbn@gmail.com>2019-12-31 09:35:43 -0800
commit860753eabbf364a32f5f95af0809b4682b9f9fb2 (patch)
tree2635a69a817ae4986b38b315515664492bd7d8a8 /.github/workflows
parent139f0d90d98441ac54c6385acaf6d39eb61de63e (diff)
Actions MinGW - fix test-all (#2803)
Diffstat (limited to '.github/workflows')
-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 f36af4bb29..63b38b5b7d 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -36,7 +36,7 @@ jobs:
run: |
git config --system core.autocrlf false
git config --system core.eol lf
- # Not using official actions/checkout because it's unstable and sometimes doesn't work for a fork.
+ # Not using official actions/checkout@v2 because it's unstable and sometimes doesn't work for a fork.
- name: Checkout ruby/ruby
run: |
git clone --single-branch --shallow-since=yesterday https://github.com/ruby/ruby src
@@ -140,7 +140,7 @@ jobs:
[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
$jobs = [int]$env:NUMBER_OF_PROCESSORS
- make -C build test-all TESTOPTS="--retry --job-status=normal --show-skip --timeout-scale=1.5 --excludes=../src/test/excludes -n !/memory_leak/ -j $jobs"
+ make -C build test-all TESTOPTS="-j $jobs --retry --job-status=normal --show-skip --timeout-scale=1.5"
- uses: k0kubun/action-slack@v2.0.0
with: