summaryrefslogtreecommitdiff
path: root/.github/workflows/mingw.yml
diff options
context:
space:
mode:
authorMSP-Greg <MSP-Greg@users.noreply.github.com>2020-12-07 16:47:42 -0600
committerGitHub <noreply@github.com>2020-12-07 14:47:42 -0800
commit41fafd9dd29717cfa9fcf6331d9da88f49da4916 (patch)
treeaeffdd5c5067a55f8cc29d94f63909af39a84546 /.github/workflows/mingw.yml
parent2580093d5deb9940700aa5faa5bed3af405d989f (diff)
Remove BUNLDER_VERSION in Windows (#3859)
[Bug #17372]
Notes
Notes: Merged-By: k0kubun <takashikkbn@gmail.com>
Diffstat (limited to '.github/workflows/mingw.yml')
-rw-r--r--.github/workflows/mingw.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index 5b1e51fcef..2d4cc7d05e 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -107,7 +107,8 @@ jobs:
[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
$jobs = [int](1.5 * $env:NUMBER_OF_PROCESSORS)
- make test-all TESTOPTS="-j $jobs --retry --job-status=normal --show-skip --timeout-scale=1.5 --regexp=\"!/^(test_to_specs_respects_bundler_version|test_gem_bundler|test_activate_bin_path_gives_proper_error_for_bundler)$/\""
+ if ($env:BUNDLER_VERSION) { Remove-Item env:\BUNDLER_VERSION }
+ make test-all TESTOPTS="-j $jobs --retry --job-status=normal --show-skip --timeout-scale=1.5"
- name: test-spec
timeout-minutes: 10