From 866ac70904737dd67f262a16a585d17b1e497fd0 Mon Sep 17 00:00:00 2001 From: George Melikov Date: Tue, 31 Aug 2021 20:53:12 +0300 Subject: [PATCH] CI: use fresh libabigail via docker image Reviewed-by: John Kennedy Reviewed-by: Brian Behlendorf Signed-off-by: George Melikov Closes #12529 --- .github/workflows/checkstyle.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checkstyle.yaml b/.github/workflows/checkstyle.yaml index 2e79f9569..05881f185 100644 --- a/.github/workflows/checkstyle.yaml +++ b/.github/workflows/checkstyle.yaml @@ -24,6 +24,7 @@ jobs: run: | sh ./autogen.sh ./configure + make -j$(nproc) - name: Checkstyle run: | make checkstyle @@ -33,12 +34,11 @@ jobs: - name: CheckABI id: CheckABI run: | - make -j$(nproc) - make checkabi + sudo docker run -v $(pwd):/source ghcr.io/openzfs/libabigail make checkabi - name: StoreABI if: failure() && steps.CheckABI.outcome == 'failure' run: | - make storeabi + sudo docker run -v $(pwd):/source ghcr.io/openzfs/libabigail make storeabi - name: Prepare artifacts if: failure() && steps.CheckABI.outcome == 'failure' run: |