We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 376711e commit 2993ea0Copy full SHA for 2993ea0
.github/workflows/kernel-build.yml
@@ -43,6 +43,19 @@ jobs:
43
VNG_PACKAGE=1 BUILD_VIRTME_NG_INIT=1 pip install --break-system-packages .
44
cd -
45
46
+ - name: Configure Kernel
47
+ run: |
48
+ if [ "${{ matrix.config }}" = "defconfig" ]; then
49
+ vng -vb --kconfig
50
+ else
51
+ vng -vb --kconfig --config .github/workflows/${{ matrix.config }} --arch arm64 CROSS_COMPILE=aarch64-linux-gnu- ARCH=arm64
52
+ fi
53
+ # Ensure WERROR is disabled
54
+ ./scripts/config --disable CONFIG_WERROR
55
+ # Disable certificate verification
56
+ ./scripts/config --disable SYSTEM_TRUSTED_KEYS
57
+ ./scripts/config --disable SYSTEM_REVOCATION_KEYS ""
58
+
59
- name: Build Kernel
60
run: |
61
if [ "${{ matrix.config }}" = "defconfig" ]; then
0 commit comments