ruby-changes:64010
From: MSP-Greg <ko1@a...>
Date: Tue, 8 Dec 2020 07:47:58 +0900 (JST)
Subject: [ruby-changes:64010] 41fafd9dd2 (master): Remove BUNLDER_VERSION in Windows (#3859)
https://git.ruby-lang.org/ruby.git/commit/?id=41fafd9dd2 From 41fafd9dd29717cfa9fcf6331d9da88f49da4916 Mon Sep 17 00:00:00 2001 From: MSP-Greg <MSP-Greg@u...> Date: Mon, 7 Dec 2020 16:47:42 -0600 Subject: Remove BUNLDER_VERSION in Windows (#3859) [Bug #17372] diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml index 5b1e51f..2d4cc7d 100644 --- a/.github/workflows/mingw.yml +++ b/.github/workflows/mingw.yml @@ -107,7 +107,8 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mingw.yml#L107 [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 -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/