From 90115e0b470570698b2ec5b9d5b594857e1e89a9 Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Tue, 21 Nov 2023 00:43:41 +0200 Subject: [PATCH] Trying to apply optimisations from #30 --- .buildbot/openwrt/build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.buildbot/openwrt/build.sh b/.buildbot/openwrt/build.sh index 1a32dbe..60c1996 100755 --- a/.buildbot/openwrt/build.sh +++ b/.buildbot/openwrt/build.sh @@ -11,6 +11,9 @@ set -x +renice -n 19 $$ +export MAKEOPTS="-j $(nproc)" # FIXME: not sure why export + tar -xJf /Downloads/openwrt-sdk-${OPENWRT_VERSION}-*.tar.xz cp -r feed openwrt-sdk-*/ @@ -41,7 +44,7 @@ make defconfig echo "CONFIG_PACKAGE_COLLECTD_ENCRYPTED_NETWORK=y" >> .config make package/i2c-tools/compile -make package/kernel-custom/compile +make $MAKEOPTS package/kernel-custom/compile make package/kmod-i2c-mux-pinctrl/compile make package/kmod-rtc-pcf85063/compile make package/nvme-cli/compile