summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2022-01-06 20:43:25 +0100
committerStefan Behnel <stefan_ml@behnel.de>2022-01-06 20:43:25 +0100
commitddaaa7b8bfe9885b7bed432cd0a5ab8191d112cd (patch)
tree184f35352c655ffa1bae71fd54ad4aa6035511e1
parent642654c971c72f598c29838ea5b5cde243b8cf5c (diff)
downloadcython-3.0.0a10.tar.gz
appveyor: Prevent the compiled Cython modules from being picked up during the build already by first compiling them completely before putting them into the source tree. On fork()-less Windows, late starting build processes could otherwise end up with partially compiled source trees.3.0.0a10
-rw-r--r--appveyor.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 8148e517c..6787b98cc 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -117,7 +117,8 @@ install:
build: off
build_script:
- - "%WITH_ENV% %PYTHON%\\python.exe setup.py build_ext --inplace %PARALLEL%"
+ - "%WITH_ENV% %PYTHON%\\python.exe setup.py build_ext %PARALLEL%"
+ - "%WITH_ENV% %PYTHON%\\python.exe setup.py build_ext --inplace"
- "%WITH_ENV% %PYTHON%\\python.exe setup.py bdist_wheel"
test: off