diff options
author | Brian Behlendorf <[email protected]> | 2020-11-18 09:32:49 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-18 09:32:49 -0800 |
commit | 813185d141ea5a4d46badb111d79a539a054e0a6 (patch) | |
tree | 39892edd719ad6f7ac656b93a8e49efaac4f0589 /.github | |
parent | be120877832e93e0ef3ad4a0245eec65523f05ac (diff) |
Enable ABI checks for the checkstyle workflow
For the OpenZFS 2.0 release branch extend the CI checkstyle
workflow to perform the library ABI checks.
Reviewed-by: George Melikov <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #11215
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/checkstyle.yaml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/checkstyle.yaml b/.github/workflows/checkstyle.yaml index ded75d593..4d2bb90d5 100644 --- a/.github/workflows/checkstyle.yaml +++ b/.github/workflows/checkstyle.yaml @@ -18,7 +18,7 @@ jobs: sudo apt-get install --yes -qq zlib1g-dev uuid-dev libattr1-dev libblkid-dev libselinux-dev libudev-dev libssl-dev python-dev python-setuptools python-cffi python3 python3-dev python3-setuptools python3-cffi # packages for tests sudo apt-get install --yes -qq parted lsscsi ksh attr acl nfs-kernel-server fio - sudo apt-get install --yes -qq mandoc cppcheck pax-utils # devscripts - enable then bashisms fixed + sudo apt-get install --yes -qq mandoc cppcheck pax-utils abigail-tools # devscripts - enable then bashisms fixed sudo -E pip --quiet install flake8 - name: Prepare run: | @@ -30,3 +30,7 @@ jobs: - name: Lint run: | make lint + - name: CheckABI + run: | + make -j$(nproc) + make checkabi |