summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2022-01-25 12:50:24 +0100
committerStefan Behnel <stefan_ml@behnel.de>2022-01-25 12:50:24 +0100
commita460542f4ffeccd39b0a57b7444470452534354a (patch)
tree2dbe6e640ce79b445c6a3ec55fde99ad6219e08a /Tools
parent70c37a028a2aa0bcf4c3188ea486aa324c0cf054 (diff)
downloadcython-a460542f4ffeccd39b0a57b7444470452534354a.tar.gz
Disable parallel builds in the 0.29.x branch since they currently misbehave and fail in CI, trying to rebuild everything multiple times in parallel.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/ci-run.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/ci-run.sh b/Tools/ci-run.sh
index 6cfb2f283..c55f115d8 100644
--- a/Tools/ci-run.sh
+++ b/Tools/ci-run.sh
@@ -124,8 +124,8 @@ if [[ $NO_CYTHON_COMPILE != "1" && $PYTHON_VERSION != "pypy"* ]]; then
if [[ $CYTHON_COMPILE_ALL == "1" ]]; then
SETUP_ARGS="$SETUP_ARGS --cython-compile-all"
fi
- SETUP_ARGS="$SETUP_ARGS
- $(python -c 'import sys; print("-j5" if sys.version_info >= (3,5) else "")')"
+ #SETUP_ARGS="$SETUP_ARGS
+ # $(python -c 'import sys; print("-j5" if sys.version_info >= (3,5) else "")')"
CFLAGS=$BUILD_CFLAGS \
python setup.py build_ext -i $SETUP_ARGS || exit 1