]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
ceph-pull-requests-arm64: set test jobs number equal to build jobs number 2190/head
authorluo rixin <luorixin@huawei.com>
Wed, 7 Feb 2024 09:29:23 +0000 (17:29 +0800)
committerluo rixin <luorixin@huawei.com>
Wed, 7 Feb 2024 09:37:46 +0000 (17:37 +0800)
On arm nodes confusa*, there are enough memory to run `nproc` build jobs,
but the test jobs number `$(nproc) / 4` are too small, and make check test run pretty
slow.

Signed-off-by: luo rixin <luorixin@huawei.com>
ceph-pull-requests-arm64/build/build

index dcb606afbf2e98b0c2b59a4b9c1b0401358c66eb..f60c2e5f3f9d48b64422adbaf971fe7fe1449478 100644 (file)
@@ -7,7 +7,7 @@ if [ "$DOCS_ONLY" = true ]; then
 fi
 
 n_build_jobs=$(get_nr_build_jobs)
-n_test_jobs=$(($(nproc) / 4))
+n_test_jobs=${n_build_jobs}
 export CHECK_MAKEOPTS="-j${n_test_jobs}"
 export BUILD_MAKEOPTS="-j${n_build_jobs}"
 export WITH_SEASTAR=true