From 79a65250723eb5e62cbc622e012b9ba07a096279 Mon Sep 17 00:00:00 2001 From: Christian Hopps Date: Sat, 11 May 2024 11:15:47 -0400 Subject: [PATCH] build: use correct config file for kernel build type --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d841223..fa7f29f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: fi cd output-linux ccache -z - KBUILD_BUILD_TIMESTAMP='' make CC="ccache gcc" -j2 O=$PWD -C ../linux + KBUILD_BUILD_TIMESTAMP='' make CC="ccache gcc" LINUXCONFIG=linux-fast.config O=$PWD -j2 -C ../linux ccache -sz [ -e arch/x86/boot/bzImage ] && cp arch/x86/boot/bzImage .. # Ccache keeps it's own objects @@ -116,7 +116,7 @@ jobs: fi cd output-linux ccache -z - KBUILD_BUILD_TIMESTAMP='' make CC="ccache gcc" -j2 O=$PWD -C ../linux + KBUILD_BUILD_TIMESTAMP='' make CC="ccache gcc" LINUXCONFIG=linux-cov.config O=$PWD -j2 -C ../linux ccache -sz [ -e arch/x86/boot/bzImage ] && cp arch/x86/boot/bzImage .. # Ccache keeps it's own objects