From: luo rixin Date: Wed, 7 Feb 2024 09:29:23 +0000 (+0800) Subject: ceph-pull-requests-arm64: set test jobs number equal to build jobs number X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2190%2Fhead;p=ceph-build.git ceph-pull-requests-arm64: set test jobs number equal to build jobs number 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 --- diff --git a/ceph-pull-requests-arm64/build/build b/ceph-pull-requests-arm64/build/build index dcb606af..f60c2e5f 100644 --- a/ceph-pull-requests-arm64/build/build +++ b/ceph-pull-requests-arm64/build/build @@ -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