There's no point to pass the $JOBS (-jX) variable to make when running system tests. They cannot be run in parallel.
Signed-off-by: Dumitru Ceara <[email protected]> --- .ci/linux-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh index b51f43cff5..905c1e793a 100755 --- a/.ci/linux-build.sh +++ b/.ci/linux-build.sh @@ -184,7 +184,7 @@ function run_system_tests() local type=$1 local log_file=$2 - if ! sudo timeout -k 5m -v $TIMEOUT make $JOBS $type \ + if ! sudo timeout -k 5m -v $TIMEOUT make $type \ TESTSUITEFLAGS="$TEST_RANGE" RECHECK=$RECHECK \ SKIP_UNSTABLE=$SKIP_UNSTABLE UPGRADE_TEST=$UPGRADE_TEST \ BASE_VERSION=$BASE_VERSION; then -- 2.55.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
