From 993d4b28af8567ea308da4fee68b35fc07532e34 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checkstyle.yaml b/.github/workflows/checkstyle.yaml index 33276d2690..69c8d1aeaa 100644 --- a/.github/workflows/checkstyle.yaml +++ b/.github/workflows/checkstyle.yaml @@ -34,11 +34,11 @@ jobs: - name: CheckABI id: CheckABI run: | - 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: |