From ba8761110fd422e54b2886f467f968bca17bc6d1 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Mon, 10 Jan 2022 00:16:58 +0100 Subject: [PATCH] ci: Always use twice the "ideal" amount of threads --- scripts/99-ffmpeg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/99-ffmpeg.sh b/scripts/99-ffmpeg.sh index e9a56f86c5..ee45b43004 100644 --- a/scripts/99-ffmpeg.sh +++ b/scripts/99-ffmpeg.sh @@ -16,7 +16,7 @@ export PKG_CONFIG_PATH=/usr/${BUILD_PREFIX}/lib/pkgconfig:${PKG_CONFIG_PATH} ${BUILD_FLAGS} # Compile FFmpeg -make -j`nproc` +make -j$((`nproc` * 2)) # Install FFmpeg sudo make install