From: Yann Collet Date: Wed, 8 Sep 2021 22:12:28 +0000 (-0700) Subject: make automated-benchmarking faster X-Git-Tag: v1.5.1~1^2~112^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5449ede2e6e4f15d10b30f0908c8bd7b4182ced6;p=thirdparty%2Fzstd.git make automated-benchmarking faster by employing parallel compilation of object files. --- diff --git a/tests/automated_benchmarking.py b/tests/automated_benchmarking.py index 458bda451..bd995b198 100644 --- a/tests/automated_benchmarking.py +++ b/tests/automated_benchmarking.py @@ -87,7 +87,7 @@ def clone_and_build(build): git clone {github_url} zstd-{user}-{sha} && cd zstd-{user}-{sha} && {checkout_command} - make && + make -j && cd ../ """.format( user=build["user"], @@ -100,7 +100,7 @@ def clone_and_build(build): ) return "zstd-{user}-{sha}/zstd".format(user=build["user"], sha=build["hash"]) else: - os.system("cd ../ && make && cd tests") + os.system("cd ../ && make -j && cd tests") return "../zstd"