X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=ci%2Factions-build.sh;h=2b3de8e3daa272cff5638d745b322ae65da45d28;hb=HEAD;hp=351b8d18aad07e13cbc53d0cc82937855598922a;hpb=9b3cc2ddc20d84089c65a397e3aedd952270dc2b;p=fio.git diff --git a/ci/actions-build.sh b/ci/actions-build.sh index 351b8d18..47d4f044 100755 --- a/ci/actions-build.sh +++ b/ci/actions-build.sh @@ -53,12 +53,17 @@ main() { "x86_64") ;; esac + if [ "${CI_TARGET_BUILD}" = "windows-msys2-64" ]; then + configure_flags+=("--disable-tls") + fi ;; esac configure_flags+=(--extra-cflags="${extra_cflags}") ./configure "${configure_flags[@]}" - make -j 2 + make -j "$(nproc 2>/dev/null || sysctl -n hw.logicalcpu)" +# macOS does not have nproc, so we have to use sysctl to obtain the number of +# logical CPUs. } main