From 8bc63c3029e2982182b73944c0a182741adbf4b9 Mon Sep 17 00:00:00 2001 From: luo rixin Date: Wed, 7 Feb 2024 17:29:23 +0800 Subject: [PATCH] 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 --- ceph-pull-requests-arm64/build/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3