From 43dc635b4f46cdebced3702b6c5a4f935e8c3643 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 1 May 2020 12:44:15 +0200 Subject: Makefile: reduce presubmit size Run fewer builds in presubmit. Also run them sequentially instead of parallel. The current presubmit OOMs on CI every other time, this is not useful. Update #1699 --- Makefile | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c450c567c..164a32642 100644 --- a/Makefile +++ b/Makefile @@ -315,7 +315,20 @@ presubmit: descriptions $(MAKE) check_copyright $(MAKE) check_links $(MAKE) lint - $(MAKE) presubmit_parallel + # We used to run presubmit_parallel instead of the following, + # but currently it OOMs on CI (see #1699). + # $(MAKE) presubmit_parallel + $(MAKE) test + $(MAKE) arch_linux_amd64_host + $(MAKE) arch_freebsd_amd64_host + $(MAKE) arch_netbsd_amd64_host + $(MAKE) arch_openbsd_amd64_host + $(MAKE) arch_linux_amd64_target + $(MAKE) arch_linux_arm64_target + $(MAKE) arch_freebsd_amd64_target + $(MAKE) arch_netbsd_amd64_target + $(MAKE) arch_openbsd_amd64_target + $(MAKE) arch_test echo LGTM presubmit_parallel: test test_race arch -- cgit mrf-deployment