diff options
| -rw-r--r-- | .github/workflows/windows.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9f5d7c3cd4..dfac9c059f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -113,7 +113,7 @@ jobs: # https://github.com/actions/virtual-environments/issues/712#issuecomment-613004302 run: | ::- Set up VC ${{ matrix.vc }} - set | sort > old.env + set | coreutils sort > old.env call ..\src\win32\vssetup.cmd ^ -arch=${{ matrix.target || 'amd64' }} ^ ${{ matrix.vcvars && '-vcvars_ver=' || '' }}${{ matrix.vcvars }} @@ -123,8 +123,8 @@ jobs: set MAKEFLAGS=l set /a TEST_JOBS=(15 * %NUMBER_OF_PROCESSORS% / 10) > nul set RUBY_OPT_DIR=%GITHUB_WORKSPACE:\=/%/src/vcpkg_installed/%VCPKG_DEFAULT_TRIPLET% - set | sort > new.env - comm -13 old.env new.env >> %GITHUB_ENV% + set | coreutils sort > new.env + coreutils comm -13 old.env new.env >> %GITHUB_ENV% del *.env - name: baseruby version |
