@@ -26,20 +26,20 @@ jobs:
26
26
matrix :
27
27
include :
28
28
- vc : 2019
29
- vs : 2022
29
+ os : 2022
30
30
vcvars : ' 10.0.22621.0 -vcvars_ver=14.2' # The default version of MSVC in VS 2022 is broken.
31
31
test_task : check
32
32
- vc : 2019
33
- vs : 2025
33
+ os : 2025
34
34
vcvars : ' 10.0.22621.0 -vcvars_ver=14.2' # The default version of MSVC in VS 2022 is broken.
35
35
test_task : check
36
36
- vc : 2019
37
- vs : 2025
37
+ os : 2025
38
38
vcvars : ' 10.0.22621.0 -vcvars_ver=14.2' # The default version of MSVC in VS 2022 is broken.
39
39
test_task : test-bundled-gems
40
40
fail-fast : false
41
41
42
- runs-on : windows-${{ matrix.vs }}
42
+ runs-on : windows-${{ matrix.os }}
43
43
44
44
if : >-
45
45
${{!(false
@@ -51,11 +51,11 @@ jobs:
51
51
|| (github.event_name == 'push' && github.event.pull_request.user.login == 'dependabot[bot]')
52
52
)}}
53
53
54
- name : VisualStudio ${{ matrix.vc || matrix.vs }} (${{ matrix.test_task }})
54
+ name : Win ${{ matrix.os }} VS ${{ matrix.vc }} (${{ matrix.test_task }})
55
55
56
56
env :
57
57
GITPULLOPTIONS : --no-tags origin ${{ github.ref }}
58
- OS_VER : windows-${{ matrix.vs }}
58
+ OS_VER : windows-${{ matrix.os }}
59
59
VCPKG_DEFAULT_TRIPLET : ${{ matrix.target || 'x64' }}-windows
60
60
61
61
steps :
@@ -125,7 +125,7 @@ jobs:
125
125
# %TEMP% is inconsistent with %TMP% and test-all expects they are consistent.
126
126
# https://github.com/actions/virtual-environments/issues/712#issuecomment-613004302
127
127
run : |
128
- ::- Set up VC ${{ matrix.vc || matrix.vs }}
128
+ ::- Set up VC ${{ matrix.vc }}
129
129
set vswhere="%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe"
130
130
for /f "delims=;" %%I in ('%vswhere% -latest -property installationPath') do (
131
131
set VCVARS="%%I\VC\Auxiliary\Build\vcvars64.bat"
@@ -180,7 +180,7 @@ jobs:
180
180
- name : Set up Launchable
181
181
uses : ./.github/actions/launchable/setup
182
182
with :
183
- os : windows-${{ matrix.vs }}
183
+ os : windows-${{ matrix.os }}
184
184
launchable-token : ${{ secrets.LAUNCHABLE_TOKEN }}
185
185
builddir : build
186
186
srcdir : src
@@ -195,7 +195,7 @@ jobs:
195
195
196
196
- uses : ./.github/actions/slack
197
197
with :
198
- label : VS ${{ matrix.vc || matrix.vs }} / ${{ matrix.test_task || 'check' }}
198
+ label : Win ${{ matrix.os }} VS ${{ matrix.vc }} / ${{ matrix.test_task || 'check' }}
199
199
SLACK_WEBHOOK_URL : ${{ secrets.SIMPLER_ALERTS_URL }} # ruby-lang slack: ruby/simpler-alerts-bot
<
4151
tr class="diff-line-row">200
200
if : ${{ failure() }}
201
201
0 commit comments