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
committerNARUSE, Yui <naruse@airemix.jp>2020-01-30 13:34:25 +0900
commite3dfd9f2b5729d4d8ac4541110af409ee218aadd (patch)
treec438cc4d43c8d7ebe61bc4e30d4955abae9f743e /.github/workflows
parenta24d2f3b8cf98d067f6648a0609b6251d3e0a464 (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: