This is an automated email from the ASF dual-hosted git repository.

vinodkone pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit 0a9e90af54edc4a1c48a406b54404246a86d1499
Author: Vinod Kone <vinodk...@gmail.com>
AuthorDate: Thu Sep 10 07:09:14 2020 -0500

    Reduced build parallelism to avoid aborted builds in CI.
    
    Review: https://reviews.apache.org/r/72858
---
 support/mesos-website/entrypoint.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/mesos-website/entrypoint.sh 
b/support/mesos-website/entrypoint.sh
index 6ecfbe0..2cc4ab2 100755
--- a/support/mesos-website/entrypoint.sh
+++ b/support/mesos-website/entrypoint.sh
@@ -44,7 +44,7 @@ fi
 mkdir -p build
 pushd build
 ../configure --disable-python
-make -j6
+make -j3 # Higher parallelism sometimes causes CI to get stuck.
 popd # build
 
 # Generate the endpoint docs from the latest mesos and agent binaries.

Reply via email to