Skip to content

Commit 916ae44

Browse files
committed
github actions: Add kabi checks
LE-3797 After the build check, perform a kabi check
1 parent 7203de1 commit 916ae44

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/build-check_aarch64.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,8 @@ jobs:
3232
cp configs/kernel-aarch64.config .config
3333
make olddefconfig
3434
make -j8
35+
- name: Check kabi
36+
run: |
37+
git clone --branch r8 --single-branch https://git.rockylinux.org/staging/rpms/kernel.git kernel-dist-git
38+
git -C kernel-dist-git reset --hard imports/r8/kernel-4.18.0-372.32.1.el8_6
39+
./kernel-dist-git/SOURCES/check-kabi -k ./kernel-dist-git/SOURCES/Module.kabi_aarch64 -s Module.symvers

.github/workflows/build-check_x86_64.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,8 @@ jobs:
3232
cp configs/kernel-x86_64.config .config
3333
make olddefconfig
3434
make -j8
35+
- name: Check kabi
36+
run: |
37+
git clone --branch r8 --single-branch https://git.rockylinux.org/staging/rpms/kernel.git kernel-dist-git
38+
git -C kernel-dist-git reset --hard imports/r8/kernel-4.18.0-372.32.1.el8_6
39+
./kernel-dist-git/SOURCES/check-kabi -k ./kernel-dist-git/SOURCES/Module.kabi_x86_64 -s Module.symvers

0 commit comments

Comments
 (0)