File tree 3 files changed +6
-9
lines changed
3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -132,13 +132,13 @@ jobs:
132
132
- name : Run Python Tests
133
133
run : python -m pytest
134
134
- name : Run Tests (macOS or Linux)
135
- if : " !startsWith(matrix .os, 'windows') "
135
+ if : runner .os != 'Windows'
136
136
shell : bash
137
137
run : npm test --python="${pythonLocation}/python"
138
138
env :
139
139
FULL_TEST : ${{ (matrix.node == '22.x' && matrix.python == '3.13') && '1' || '0' }}
140
140
- name : Run Tests (Windows)
141
- if : startsWith(matrix .os, 'windows')
141
+ if : runner .os == 'Windows'
142
142
shell : bash # Building wasm on Windows requires using make generator, it only works in bash
143
143
run : npm run test --python="${pythonLocation}\\python.exe"
144
144
env :
Original file line number Diff line number Diff line change 22
22
- os : windows-2022
23
23
msvs-version : 2022
24
24
- os : windows-2025
25
- msvs-version : 2025
25
+ msvs-version : 2022 # Fix this when Visual Studio 2025 is released
26
26
runs-on : ${{ matrix.os }}
27
27
steps :
28
28
- name : Checkout Repository
Original file line number Diff line number Diff line change @@ -385,14 +385,11 @@ class VisualStudioFinder {
385
385
ret . versionYear = 2019
386
386
return ret
387
387
}
388
- if ( ret . versionMajor === 17 ) {
388
+ // Fix this when Visual Studio 2025 ships
389
+ if ( [ 17 , 18 ] . includes ( ret . versionMajor ) ) {
389
390
ret . versionYear = 2022
390
391
return ret
391
392
}
392
- if ( ret . versionMajor === 18 ) {
393
- ret . versionYear = 2025
394
- return ret
395
- }
396
393
this . log . silly ( '- unsupported version:' , ret . versionMajor )
397
394
return { }
398
395
}
@@ -461,7 +458,7 @@ class VisualStudioFinder {
461
458
} else if ( versionYear === 2022 ) {
462
459
return 'v143'
463
460
} else if ( versionYear === 2025 ) {
464
- return 'v144'
461
+ return 'v143' // Fix this when Visual Studio 2025 ships
465
462
}
466
463
this . log . silly ( '- invalid versionYear:' , versionYear )
467
464
return null
You can’t perform that action at this time.
0 commit comments