From fef8dd5072123fc0912c57804930f77af92bfdc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Walstr=C3=B6m?= Date: Wed, 24 Apr 2024 19:26:42 +0200 Subject: [PATCH] Enable parallell build of packages Build all packages in parallell to cut building time. --- .github/workflows/regression.yml | 2 +- configs/aarch64_defconfig | 1 + configs/x86_64_defconfig | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index 91e56b65..c2a9e486 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -56,7 +56,7 @@ jobs: - name: Build run: | - make + make -j - name: Prepare Artifact run: | cd output diff --git a/configs/aarch64_defconfig b/configs/aarch64_defconfig index 11543b60..ced47577 100644 --- a/configs/aarch64_defconfig +++ b/configs/aarch64_defconfig @@ -155,3 +155,4 @@ BR2_PACKAGE_LIBINPUT=y DISK_IMAGE_BOOT_BIN=y GNS3_APPLIANCE_RAM=512 GNS3_APPLIANCE_IFNUM=10 +BR2_PER_PACKAGE_DIRECTORIES=y diff --git a/configs/x86_64_defconfig b/configs/x86_64_defconfig index 593878fa..25fc96ea 100644 --- a/configs/x86_64_defconfig +++ b/configs/x86_64_defconfig @@ -156,3 +156,4 @@ BR2_PACKAGE_PODMAN_DRIVER_VFS=y BR2_PACKAGE_TETRIS=y GNS3_APPLIANCE_RAM=512 GNS3_APPLIANCE_IFNUM=10 +BR2_PER_PACKAGE_DIRECTORIES=y