We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e6951 commit 24baf67Copy full SHA for 24baf67
.github/workflows/build-check_x86_64.yml
@@ -32,3 +32,13 @@ jobs:
32
cp configs/kernel-x86_64-rhel.config .config
33
make ARCH=x86_64 CROSS_COMPILE=./scripts/dummy-tools/ olddefconfig
34
make -j8
35
+ - name: Check kabi
36
+ run: |
37
+ git clone --branch r9 --single-branch https://git.rockylinux.org/staging/rpms/kernel.git kernel-dist-git
38
+ git -C kernel-dist-git reset --hard imports/r9/kernel-5.14.0-284.30.1.el9_2
39
+ KABI_CHECK=$(./kernel-dist-git/SOURCES/check-kabi -k ./kernel-dist-git/SOURCES/Module.kabi_x86_64 -s Module.symvers)
40
+ if [ $? -ne 0 ]; then
41
+ echo "Error: kABI check failed"
42
+ exit 1
43
+ fi
44
+ echo "kABI check passed"
0 commit comments