From ad231cdf4a021ee6e37e1a5d8c0ac137dd9fe246 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 10 Mar 2026 12:28:17 +0900 Subject: Windows: Explicitly specify the use of `coreutils` commands It appears that shims for individual commands are no longer being created. --- .github/workflows/windows.yml | 6 +++--- 1 file 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 -- cgit v1.2.3