We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 653aecb commit a99d8f1Copy full SHA for a99d8f1
2 files changed
Build/steps.yml
@@ -86,7 +86,7 @@ steps:
86
87
# 32-bit tests on Windows only
88
- ${{ if eq(parameters.os, 'Windows') }}:
89
- - powershell: ./make.ps1 -platform x86 test-all
+ - powershell: ./make.ps1 -frameworks net45 -platform x86 test-all
90
displayName: Test 32-bit
91
92
- task: PublishTestResults@2
Src/IronPythonTest/Cases/CaseExecuter.cs
@@ -39,11 +39,14 @@ private static string Executable {
39
if (File.Exists(runner)) return runner;
40
}
41
#else
42
+ if (Environment.Is64BitOperatingSystem && IntPtr.Size == 4) {
43
+ runner = Path.Combine(folder, "ipy32.exe");
44
+ if (File.Exists(runner)) return runner;
45
+ }
46
runner = Path.Combine(folder, "ipy.exe");
47
48
#endif
49
throw new FileNotFoundException();
-
50
51
52
0 commit comments