Skip to content
Snippets Groups Projects
Commit b27ce4e8 authored by Emanuele Aina's avatar Emanuele Aina
Browse files

Disable the module ABI check


Commit 8e1482b4 tried to bump the abiname to avoid incurring in
failures due to the module ABI in Apertis not matching the one in
Debian, but it had to be reverted as it introduced too much delta.

To address the ABI mismatch, simply disable the ABI checker, since
Apertis is not committing to a stable module ABI at the moment.

Signed-off-by: Emanuele Aina's avatarEmanuele Aina <emanuele.aina@collabora.com>
parent 6b910657
No related branches found
No related tags found
1 merge request!8Revert abiname and drop the abi check instead
......@@ -275,7 +275,7 @@ class Main(object):
def __call__(self):
fail = 0
for c in CheckAbi, CheckImage:
for c in CheckImage, : #CheckAbi, CheckImage:
fail |= c(self.config, *self.args)(sys.stdout)
return fail
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment