We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 473a6ca commit bee13fdCopy full SHA for bee13fd
.github/workflows/main.yml
@@ -39,7 +39,11 @@ jobs:
39
- uses: hendrikmuhs/[email protected]
40
with:
41
key: ${{ matrix.linux }}
42
- - run: make -C linux defconfig
+ - 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
47
- name: Run make -C linux
48
run: |
49
export PATH="/usr/lib/ccache:$PATH"
0 commit comments