Skip to content

Commit bee13fd

Browse files
committed
use tinyconfig with only the bits we need for building
1 parent 473a6ca commit bee13fd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ jobs:
3939
- uses: hendrikmuhs/[email protected]
4040
with:
4141
key: ${{ matrix.linux }}
42-
- run: make -C linux defconfig
42+
- name: Configure kernel
43+
run: |
44+
make -C linux tinyconfig
45+
echo -e "CONFIG_64BIT=y\nCONFIG_X86_64=y\nCONFIG_MODULES=y\nCONFIG_INPUT=y" > linux/kernel/configs/ci.config
46+
make -C linux ci.config
4347
- name: Run make -C linux
4448
run: |
4549
export PATH="/usr/lib/ccache:$PATH"

0 commit comments

Comments
 (0)