File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 8686
8787 # 32-bit tests on Windows only
8888 - ${{ if eq(parameters.os, 'Windows') }} :
89- - powershell : ./make.ps1 -platform x86 test-all
89+ - powershell : ./make.ps1 -frameworks net45 - platform x86 test-all
9090 displayName : Test 32-bit
9191
9292 - task : PublishTestResults@2
Original file line number Diff line number Diff line change @@ -39,11 +39,14 @@ private static string Executable {
3939 if ( File . Exists ( runner ) ) return runner ;
4040 }
4141#else
42+ if ( Environment . Is64BitOperatingSystem && IntPtr . Size == 4 ) {
43+ runner = Path . Combine ( folder , "ipy32.exe" ) ;
44+ if ( File . Exists ( runner ) ) return runner ;
45+ }
4246 runner = Path . Combine ( folder , "ipy.exe" ) ;
4347 if ( File . Exists ( runner ) ) return runner ;
4448#endif
4549 throw new FileNotFoundException ( ) ;
46-
4750 }
4851 }
4952
You can’t perform that action at this time.
0 commit comments