From 064c445f9910a7dabbc262fa1a0de8543409ca6c Mon Sep 17 00:00:00 2001 From: Martin Klozik Date: Thu, 24 Nov 2016 09:08:37 +0000 Subject: [PATCH] vswitchperf: Utilize more CPU cores during build Multiple CPU cores will be utilized during build of DPDK, OVS and QEMU. It will speed up build significantly. In case of VERIFY and MERGE jobs it can spare about 1/4 of time required for job execution. Initial setup will use up to 10 cores for daily job, which is executed on POD dedicated to vsperf project. In case of VERIFY and MERGE jobs was number of cores limited to 5 to evaluate impact on other jobs run in parallel. Change-Id: Ia0dc8f3d551c84ef2859f233c8442792e0b25c35 Signed-off-by: Martin Klozik Reviewed-by: Fatih Degirmenci --- jjb/vswitchperf/vswitchperf.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jjb/vswitchperf/vswitchperf.yml b/jjb/vswitchperf/vswitchperf.yml index 0d2c67b3f..fe8ea5381 100644 --- a/jjb/vswitchperf/vswitchperf.yml +++ b/jjb/vswitchperf/vswitchperf.yml @@ -46,7 +46,7 @@ pwd cd src make clobber - make + make MORE_MAKE_FLAGS="-j 10" # run basic sanity test make sanity cd ../ci @@ -107,7 +107,7 @@ pwd cd src make clobber - make + make MORE_MAKE_FLAGS="-j 5" # run basic sanity test make sanity cd ../ci @@ -162,6 +162,6 @@ pwd cd src make clobber - make + make MORE_MAKE_FLAGS="-j 5" cd ../ci ./build-vsperf.sh merge -- 2.16.6