From e50adef0fad90a1a42f27aaa949fe5aae8ce2cd6 Mon Sep 17 00:00:00 2001 From: Evan Zelkowitz Date: Thu, 19 Dec 2019 08:40:09 -0700 Subject: [PATCH] Remove -j from lgtm build The lgtm build seems to be hanging some times for an hour or two, which can then lead to the build timing out when it keeps going. Removing the -j option thinking this might be causing resource contention with the builds. Have done a successful test build using this config --- .lgtm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.lgtm.yml b/.lgtm.yml index a72b8bff5d6..44bef7f5f1a 100644 --- a/.lgtm.yml +++ b/.lgtm.yml @@ -29,4 +29,4 @@ extraction: configure: command: "./configure --enable-experimental-plugins" index: - build_command: "make -j" + build_command: "make"