diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2026-03-10 12:28:17 +0900 |
|---|---|---|
| committer | Takashi Kokubun <takashikkbn@gmail.com> | 2026-03-11 17:42:58 -0700 |
| commit | ad231cdf4a021ee6e37e1a5d8c0ac137dd9fe246 (patch) | |
| tree | c82ec8d0e924831a8cffdd2a7150145536df09ba | |
| parent | efca0f45203d5908b3ec155b40e59baa8504f0ae (diff) | |
Windows: Explicitly specify the use of `coreutils` commands
It appears that shims for individual commands are no longer being
created.
| -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 |
