From 8a227c5c5e2ec2e1940e2aa561df4ea99d5b08f9 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Tue, 24 Dec 2019 14:47:20 -0500 Subject: [PATCH 1/4] parallel build for CI --- ci/setup_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/setup_env.sh b/ci/setup_env.sh index 08ba83ae94451..2b488295b5cc2 100755 --- a/ci/setup_env.sh +++ b/ci/setup_env.sh @@ -121,7 +121,7 @@ conda list pandas # Make sure any error below is reported as such echo "[Build extensions]" -python setup.py build_ext -q -i +python setup.py build_ext -q -i -j2 # XXX: Some of our environments end up with old versions of pip (10.x) # Adding a new enough version of pip to the requirements explodes the From 9b012d138eaf42163b4b22c3ad763c96d5eb8b15 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Thu, 26 Dec 2019 11:10:55 -0500 Subject: [PATCH 2/4] nproc --- ci/setup_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/setup_env.sh b/ci/setup_env.sh index 2b488295b5cc2..dee07234064be 100755 --- a/ci/setup_env.sh +++ b/ci/setup_env.sh @@ -121,7 +121,7 @@ conda list pandas # Make sure any error below is reported as such echo "[Build extensions]" -python setup.py build_ext -q -i -j2 +python setup.py build_ext -q -i -j `nproc` # XXX: Some of our environments end up with old versions of pip (10.x) # Adding a new enough version of pip to the requirements explodes the From 86344a57acdd4c4cc74ce1705f73a0ba39960534 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Thu, 26 Dec 2019 11:25:20 -0500 Subject: [PATCH 3/4] alternate syntax --- ci/setup_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/setup_env.sh b/ci/setup_env.sh index dee07234064be..46f60a26a818f 100755 --- a/ci/setup_env.sh +++ b/ci/setup_env.sh @@ -121,7 +121,7 @@ conda list pandas # Make sure any error below is reported as such echo "[Build extensions]" -python setup.py build_ext -q -i -j `nproc` +python setup.py build_ext -q -i -j $(nproc) # XXX: Some of our environments end up with old versions of pip (10.x) # Adding a new enough version of pip to the requirements explodes the From 47a8bc2d2ebc1c6ae41f825f9d27c9860fb3a311 Mon Sep 17 00:00:00 2001 From: Will Ayd Date: Thu, 26 Dec 2019 12:55:22 -0500 Subject: [PATCH 4/4] back to 2 --- ci/setup_env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/setup_env.sh b/ci/setup_env.sh index 46f60a26a818f..2b488295b5cc2 100755 --- a/ci/setup_env.sh +++ b/ci/setup_env.sh @@ -121,7 +121,7 @@ conda list pandas # Make sure any error below is reported as such echo "[Build extensions]" -python setup.py build_ext -q -i -j $(nproc) +python setup.py build_ext -q -i -j2 # XXX: Some of our environments end up with old versions of pip (10.x) # Adding a new enough version of pip to the requirements explodes the