Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: run abicheck #190

Merged
merged 2 commits into from
Dec 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"steps": [
{ "uses": "actions/checkout@v2" },
{ "run": "make all test" },
{ "run": "make abicheck" },
],
},
},
Expand Down
12 changes: 12 additions & 0 deletions src/abignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@
has_data_member_inserted_at = end
soname_regexp = libefi(var|boot)\\.so\\..*

# https://bugzilla.redhat.com/show_bug.cgi?id=2030482 (el9 only)
# 1 function with some indirect sub-type change:
# [C] 'function int _efi_set_variable(efi_guid_t, const char*, uint8_t*, size_t, uint32_t)' at lib.c:33:1 has some indirect sub-type changes:
# parameter 1 of type 'typedef efi_guid_t' changed:
# underlying type 'struct efi_guid_t' at efivar-types.h:13:1 changed:
# type name changed from 'efi_guid_t' to '__anonymous_struct__6'
# type size hasn't changed
# no data member changes (5 filtered);
[suppress_type]
name = efi_guid_t
type_kind = struct

# 1 Added variable:
#
# 'const __anonymous_struct__ efi_guid_ux_capsule' {efi_guid_ux_capsule@@LIBEFIVAR_1.33}
Expand Down