Skip to content

Commit c44b65f

Browse files
authored
build: fix windows presubmit (#237)
* build: fix windows presubmit * Apply fix from #214
1 parent e88ad89 commit c44b65f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Diff for: scripts/windows/build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ FOR %%P IN (3.9, 3.10, 3.11, 3.12) DO (
7474
py -%%P-64 -m pip wheel . --wheel-dir wheels/
7575

7676
echo "Built wheel, now running tests."
77-
call %~dp0/test.bat %%P
77+
call %~dp0/test.bat %%P || goto :error
7878

7979
echo "Finished with Python version %%P, now uninstalling"
8080
choco uninstall python -y

Diff for: setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929

3030

3131
def copy_dll(build_lib):
32-
return # trying static build of C library.
3332
install_prefix = os.environ.get("CRC32C_INSTALL_PREFIX")
3433

3534
if os.name == "nt" and install_prefix is not None:

0 commit comments

Comments
 (0)