Skip to content

Commit 3b84adf

Browse files
authored
Update c-cpp.yml
1 parent 0a62ede commit 3b84adf

File tree

1 file changed

+61
-2
lines changed

1 file changed

+61
-2
lines changed

.github/workflows/c-cpp.yml

Lines changed: 61 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,67 @@ jobs:
1919
sudo apt install -y bison flex libelf-dev
2020
- name: configure
2121
run: |
22-
#curl -o .config https://raw.githubusercontent.com/elrepo/kernel/refs/heads/main/kernel-ml/el10/config-6.16.8-x86_64
23-
make defconfig
22+
curl -o .config https://raw.githubusercontent.com/elrepo/kernel/refs/heads/main/kernel-ml/el10/config-6.16.8-x86_64
23+
make olddefconfig
24+
cat >./lsmod<<EOL
25+
amd_atl 57344 1
26+
amd64_edac 57344 0
27+
authenc 12288 1 intel_qat
28+
ccp 376832 2 kvm_amd,tpm_hygon
29+
crc32c_intel 16384 3
30+
crc8 12288 1 intel_qat
31+
dh_generic 16384 1 intel_qat
32+
edac_mce_amd 45056 1 amd64_edac
33+
ext4 1179648 1
34+
ghash_clmulni_intel 16384 0
35+
ib_core 552960 2 ib_uverbs,mlx5_ib
36+
ib_core 581632 16 rdma_cm,ib_ipoib,iw_cm,ib_umad,rdma_ucm,ib_uverbs,mlx5_ib,ib_cm
37+
ib_uverbs 208896 1 mlx5_ib
38+
ib_uverbs 217088 29 rdma_ucm,mlx5_ib
39+
intel_cstate 28672 0
40+
intel_ifs 40960 0
41+
intel_qat 442368 1 qat_4xxx
42+
intel_rapl_common 49152 1 intel_rapl_msr
43+
intel_rapl_common 49152 1 intel_rapl_tpmi
44+
intel_rapl_msr 20480 0
45+
intel_rapl_tpmi 12288 0
46+
intel_sdsi 16384 0
47+
intel_uncore 270336 0
48+
intel_uncore_frequency_common 16384 1 intel_uncore_frequency_tpmi
49+
intel_uncore_frequency_tpmi 12288 0
50+
intel_vsec 20480 1 intel_vsec_tpmi
51+
intel_vsec_tpmi 16384 3 intel_rapl_tpmi,isst_tpmi_core,intel_uncore_frequency_tpmi
52+
iommufd 122880 1 vfio
53+
irqbypass 12288 1 kvm
54+
irqbypass 12288 2 vfio_pci_core,kvm
55+
jbd2 204800 1 ext4
56+
kvm 1392640 1 kvm_amd
57+
kvm 1392640 1 kvm_intel
58+
kvm_amd 237568 0
59+
kvm_intel 425984 0
60+
libcrc32c 12288 1 xfs
61+
libcrc32c 12288 5 nf_conntrack,nf_nat,openvswitch,nf_tables,xfs
62+
macsec 65536 1 mlx5_ib
63+
mbcache 16384 1 ext4
64+
mlx_compat 20480 12 rdma_cm,ib_ipoib,mlxdevm,mlxfw,iw_cm,ib_umad,ib_core,rdma_ucm,ib_uverbs,mlx5_ib,ib_cm,mlx5_core
65+
mlx5_core 2412544 1 mlx5_ib
66+
mlx5_core 2895872 1 mlx5_ib
67+
mlx5_ib 495616 0
68+
mlx5_ib 577536 8
69+
mlxdevm 389120 1 mlx5_core
70+
mlxfw 36864 1 mlx5_core
71+
pci_hyperv_intf 12288 1 mlx5_core
72+
psample 20480 1 mlx5_core
73+
tls 155648 2 bonding,mlx5_core
74+
vfio 73728 5 vfio_pci_core,vfio_iommu_type1,vfio_pci
75+
vfio_iommu_type1 57344 0
76+
vfio_pci 16384 0
77+
vfio_pci_core 90112 1 vfio_pci
78+
xfs 2371584 2
79+
EOL
80+
81+
make LSMOD=./lsmod localmodconfig
82+
2483
- name: make
2584
run: |
2685
make -j $(nproc) compile_commands.json

0 commit comments

Comments
 (0)